diff --git a/.gitattributes b/.gitattributes index f865be5..81514fe 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,6 @@ calcit.cirru -diff linguist-generated yarn.lock -diff linguist-generated + +Agents.md -diff linguist-generated +llms/*.md -diff linguist-generated diff --git a/.gitignore b/.gitignore index f3ca056..4788c7a 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ js-out/ node_modules/ dist/ + +.DS_Store diff --git a/Agents.md b/Agents.md new file mode 100644 index 0000000..286615c --- /dev/null +++ b/Agents.md @@ -0,0 +1,683 @@ +# Calcit 编程 Agent 指南 + +本文档为 AI Agent 提供 Calcit 项目的操作指南。 + +## ⚠️ 重要警告:禁止直接修改的文件 + +以下文件**严格禁止使用文本替换或直接编辑**: + +- **`calcit.cirru`** - 这是 calcit-editor 结构化编辑器的专用格式,包含完整的编辑器元数据 +- **`compact.cirru`** - 这是 Calcit 程序的紧凑快照格式,必须使用 `cr edit` 相关命令进行修改 + +这两个文件的格式对空格和结构极其敏感,直接文本修改会破坏文件结构。请使用下面文档中的 CLI 命令进行代码查询和修改。 + +## Calcit 与 Cirru 的关系 + +- **Calcit** 是编程语言本身(一门类似 Clojure 的函数式编程语言) +- **Cirru** 是语法格式(缩进风格的 S-expression,类似去掉括号改用缩进的 Lisp) +- **关系**:Calcit 代码使用 Cirru 语法书写和存储 + +**具体体现:** + +- `compact.cirru` 和 `calcit.cirru` 是用 Cirru 格式存储的 Calcit 程序 +- `cr cirru` 工具用于 Cirru 语法与 JSON 的转换(帮助理解和生成代码) +- Cirru 语法特点: + - 用缩进代替括号(类似 Python/YAML) + - 字符串用前缀 `|` 或 `"` 标记(如 `|hello` 表示字符串 "hello") + - 单行用空格分隔元素(如 `defn add (a b) (+ a b)`) + +**类比理解:** + +- Python 语言 ← 使用 → Python 语法 +- Calcit 语言 ← 使用 → Cirru 语法 + +生成 Calcit 代码前,建议先运行 `cr cirru show-guide` 了解 Cirru 语法规则。 + +--- + +## Calcit CLI 命令 + +Calcit 程序使用 `cr` 命令: + +### 主要运行命令 + +- `cr` 或 `cr compact.cirru` - 代码解释执行,默认读取 config 执行 init-fn 定义的入口 +- `cr compact.cirru js` - 编译生成 JavaScript 代码 +- `cr -1 ` - 执行一次然后退出(不进入监听模式) +- `cr --check-only` - 仅检查代码正确性,不执行程序 + - 对 init_fn 和 reload_fn 进行预处理验证 + - 输出:预处理进度、warnings、检查耗时 + - 用于 CI/CD 或快速验证代码修改 +- `cr js -1` - 检查代码正确性,生成 JavaScript(不进入监听模式) +- `cr js --check-only` - 检查代码正确性,不生成 JavaScript +- `cr eval ''` - 执行一段 Calcit 代码片段,用于快速验证写法 + +### 查询子命令 (`cr query`) + +这些命令用于查询项目信息: + +**项目全局分析:** + +- `cr analyze call-graph` - 分析从入口点开始的调用图结构 +- `cr analyze count-calls` - 统计每个定义的调用次数 + + _使用示例:_ + + ```bash + # 分析整个项目的调用图 + cr analyze call-graph + # 统计调用次数 + cr analyze count-calls + ``` + +**基础查询:** + +- `cr query ns [--deps]` - 列出项目中所有命名空间(--deps 包含依赖) +- `cr query ns ` - 读取命名空间详情(imports, 定义预览) +- `cr query defs ` - 列出命名空间中的定义 +- `cr query pkg` - 获取项目包名 +- `cr query config` - 读取项目配置(init_fn, reload_fn, version) +- `cr query error` - 读取 .calcit-error.cirru 错误堆栈文件 +- `cr query modules` - 列出项目模块 + +**渐进式代码探索(Progressive Disclosure):** + +- `cr query peek ` - 查看定义签名(参数、文档、表达式数量),不返回完整实现体 + - 输出:Doc、Form 类型、参数列表、Body 表达式数量、首个表达式预览、Examples 数量 + - 用于快速了解函数接口,减少 token 消耗 +- `cr query def [-j]` - 读取定义的完整 Cirru 代码 + - 默认输出:Doc、Examples 数量、Cirru 格式代码 + - `-j` / `--json`:同时输出 JSON 格式(用于程序化处理) + - 推荐:LLM 直接读取 Cirru 格式即可,通常不需要 JSON +- `cr query examples ` - 读取定义的示例代码 + - 输出:每个 example 的 Cirru 格式和 JSON 格式 + +**符号搜索与引用分析:** + +- `cr query find [--deps] [-f] [-n ]` - 跨命名空间搜索符号 + - 默认精确匹配:返回定义位置 + 所有引用位置(带上下文预览) + - `-f` / `--fuzzy`:模糊搜索,匹配 "namespace/definition" 格式的路径 + - `-n `:限制模糊搜索结果数量(默认 20) + - `--deps`:包含核心命名空间(calcit.\* 开头) +- `cr query usages [--deps]` - 查找定义的所有使用位置 + - 返回:引用该定义的所有位置(带上下文预览) + - 用于理解代码影响范围,重构前的影响分析 + +**代码模式搜索:** + +- `cr query search [-f ] [-l] [-d ] [-p ]` - 搜索叶子节点(字符串) + + - `` - 位置参数,要搜索的字符串模式 + - `-f` / `--filter` - 过滤到特定命名空间或定义(可选) + - `-l` / `--loose`:宽松匹配,包含模式(匹配所有包含该模式的叶子节点) + - `-d `:限制搜索深度(0 = 无限制) + - `-p` / `--start-path`:从指定路径开始搜索(逗号分隔的索引,如 `"3,2,1"`) + - 不指定时从根节点开始搜索整个定义 + - 指定后只搜索该路径下的子树,适合在大型定义中缩小搜索范围 + - 返回:匹配节点的完整路径 + 父级上下文预览 + - 示例: + - `cr query search "println" -f app.main/main -l` - 在 main 函数中搜索包含 "println" 的节点 + - `cr query search "div"` - 全局精确搜索 "div" + - `cr query search "btn" -f app.main/render -p "3,2" -l` - 从路径 [3,2] 开始搜索包含 "btn" 的节点 + +- `cr query search-pattern [-f ] [-l] [-j] [-d ]` - 搜索结构模式 + - `` - 位置参数,Cirru one-liner 或 JSON 数组模式 + - `-f` / `--filter` - 过滤到特定命名空间或定义(可选) + - `-l` / `--loose`:宽松匹配,查找包含连续子序列的结构 + - `-j` / `--json`:将模式解析为 JSON 数组而非 Cirru + - 返回:匹配节点的路径 + 父级上下文 + - 示例: + - `cr query search-pattern "(+ a b)" -f app.util/add` - 查找精确表达式 + - `cr query search-pattern '["defn"]' -f app.main/main -j -l` - 查找所有函数定义 + +**搜索结果格式:** + +- 输出格式:`[路径] in 父级上下文` +- 路径格式:`[索引1,索引2,...]` 表示从根节点到匹配节点的路径 +- 可配合 `cr tree show -p ""` 查看具体节点内容 + +### 文档子命令 (`cr docs`) + +查询 Calcit 语言文档(guidebook): + +- `cr docs search [-c ] [-f ]` - 按关键词搜索文档内容 + + - `-c ` - 显示匹配行的上下文行数(默认 5) + - `-f ` - 按文件名过滤搜索结果 + - 输出:匹配行及其上下文,带行号和高亮 + - 示例:`cr docs search "macro" -c 10` 或 `cr docs search "defn" -f macros.md` + +- `cr docs read [-s ] [-n ]` - 阅读指定文档 + + - `-s ` - 起始行号(默认 0) + - `-n ` - 读取行数(默认 80) + - 输出:文档内容、当前范围、是否有更多内容 + - 示例:`cr docs read macros.md` 或 `cr docs read intro.md -s 20 -n 30` + +- `cr docs list` - 列出所有可用文档 + +### Cirru 语法工具 (`cr cirru`) + +用于 Cirru 语法和 JSON 之间的转换: + +- `cr cirru parse ''` - 解析 Cirru 代码为 JSON +- `cr cirru format ''` - 格式化 JSON 为 Cirru 代码 +- `cr cirru parse-edn ''` - 解析 Cirru EDN 为 JSON +- `cr cirru show-guide` - 显示 Cirru 语法指南(帮助 LLM 生成正确的 Cirru 代码) + +**⚠️ 重要:生成 Cirru 代码前请先阅读语法指南** + +运行 `cr cirru show-guide` 获取完整的 Cirru 语法说明,包括: + +- `$` 操作符(单节点展开) +- `|` 前缀(字符串字面量), 这个是 Cirru 特殊的地方, 而不是直接用引号包裹 +- `,` 操作符(注释标记) +- `~` 和 `~@`(宏展开) +- 常见错误和避免方法 + +### 库管理 (`cr libs`) + +查询和了解 Calcit 官方库: + +- `cr libs` - 列出所有官方库 +- `cr libs search ` - 按关键词搜索库(搜索名称、描述、分类) +- `cr libs readme [-f ]` - 查看库的文档 + - 优先从本地 `~/.config/calcit/modules/` 读取 + - 本地不存在时从 GitHub 仓库获取 + - `-f` 参数可指定其他文档文件(如 `-f Skills.md`) + - 默认读取 `README.md` +- `cr libs scan-md ` - 扫描本地模块目录下的所有 `.md` 文件 + - 递归扫描子目录 + - 显示相对路径列表 +- `caps` - 安装/更新依赖 + +### 精细代码树操作 (`cr tree`) + +⚠️ **关键警告:路径索引动态变化** + +删除或插入节点后,同级后续节点的索引会自动改变。**必须从后往前操作**或**每次修改后重新搜索路径**。 + +**核心概念:** + +- 路径格式:逗号分隔的索引(如 `"3,2,1"`),空字符串 `""` 表示根节点 +- 每个命令都有 `--help` 查看详细参数 +- 命令执行后会显示 "Next steps" 提示下一步操作 + +**主要操作:** + +- `cr tree show` - 查看节点(输出包含子节点索引和操作提示) +- `cr tree replace` - 替换节点 +- `cr tree delete` - 删除节点 +- `cr tree insert-before/after` - 插入相邻节点 +- `cr tree insert-child/append-child` - 插入子节点 +- `cr tree swap-next/prev` - 交换相邻节点 +- `cr tree wrap` - 用新结构包装节点 + +**输入方式(通用):** + +- `-e ''` - 内联代码(自动识别 Cirru/JSON) +- `--leaf` - 强制作为 leaf 节点(符号或字符串) +- `-j ''` / `-f ` / `-s` (stdin) + +**推荐工作流:** + +```bash +# 1. 搜索定位 +cr query search "target" -f namespace/def -l + +# 2. 确认节点(命令会显示子节点和路径) +cr tree show namespace/def -p "" + +# 3. 执行修改(命令会显示 Before/After 和验证提示) +cr tree replace namespace/def -p "" --leaf -e '' + +# 4. 批量修改:从后往前或重新搜索 +cr tree delete namespace/def -p "3,2,3" # 先删大索引 +cr tree delete namespace/def -p "3,2,2" +``` + +**关键技巧:** + +- 使用 `cr query search` 快速定位路径 +- `cr tree show` 输出会标注每个子节点的索引 +- 遇到路径错误时,命令会自动显示最长有效路径和可用子节点 +- 所有修改操作都会显示 Preview 和 Verify 命令 + +详细参数和示例使用 `cr tree --help` 查看。 + +### 代码编辑 (`cr edit`) + +直接编辑 compact.cirru 项目代码,支持三种输入方式: + +- `--file ` 或 `-f ` - 从文件读取(默认 Cirru 格式,使用 `-J` 指定 JSON) +- `--json ` 或 `-j ` - 内联 JSON 字符串 +- `--stdin` 或 `-s` - 从标准输入读取(默认 Cirru 格式,使用 `-J` 指定 JSON) + +额外支持“内联代码”参数: + +- `--code ` 或 `-e `:直接在命令行里传入一段代码。 + - 默认按 **Cirru 单行表达式(one-liner)** 解析。 + - 如果输入“看起来像 JSON”(例如 `-e '"abc"'`,或 `-e '["a"]'` 这类 `[...]` 且包含 `"`),则会按 JSON 解析。 + - ⚠️ 当输入看起来像 JSON 但 JSON 不合法时,会直接报错(不会回退当成 Cirru one-liner)。 + +对 `--file/--stdin` 输入,还支持以下“格式开关”(与 `-J/--json-input` 类似): + +- `--leaf`:把输入当成 **leaf 节点**,直接使用 Cirru 符号或 `|text` 字符串,无需 JSON 引号。 + - 传入符号:`-e 'my-symbol'` + - 传入字符串:加 Cirru 字符串前缀 `|` 或 `"`,例如 `-e '|my string'` 或 `-e '"my string'` + +⚠️ 注意:这些开关彼此互斥(一次只用一个)。 + +**推荐简化规则(命令行更好写):** + +- **JSON(单行)**:优先用 `-j ''` 或 `-e ''`(不需要 `-J`)。 +- **Cirru 单行表达式**:用 `-e ''`(`-e` 默认按 one-liner 解析)。 +- **Cirru 多行缩进**:用 `-f file.cirru` 或 `-s`(stdin)。 +- `-J/--json-input` 主要用于 **file/stdin** 读入 JSON(如 `-f code.json -J` 或 `-s -J`)。 + +补充:`-e/--code` 只有在 `[...]` 内部包含 `"` 时才会自动按 JSON 解析(例如 `-e '["a"]'`)。 +像 `-e '[]'` / `-e '[ ]'` 会默认按 Cirru one-liner 处理;如果你需要“空 JSON 数组”,用显式 JSON:`-j '[]'`。 + +如果你想在命令行里明确“这段就是 JSON”,请用 `-j ''`(`-J` 是给 file/stdin 用的)。 + +**定义操作:** + +- `cr edit def ` - 添加新定义(若已存在会报错,需用 `cr tree replace` 修改) +- `cr edit rm-def ` - 删除定义 +- `cr edit doc ''` - 更新定义的文档 +- `cr edit examples ` - 设置定义的示例代码(批量替换) +- `cr edit add-example ` - 添加单个示例 +- `cr edit rm-example ` - 删除指定索引的示例(0-based) + +**命名空间操作:** + +- `cr edit add-ns ` - 添加命名空间 +- `cr edit rm-ns ` - 删除命名空间 +- `cr edit imports ` - 更新导入规则(全量替换) +- `cr edit add-import ` - 添加单个 import 规则 +- `cr edit rm-import ` - 移除指定来源的 import 规则 +- `cr edit ns-doc ''` - 更新命名空间文档 + +**模块和配置:** + +- `cr edit add-module ` - 添加模块依赖 +- `cr edit rm-module ` - 删除模块依赖 +- `cr edit config ` - 设置配置(key: init-fn, reload-fn, version) + +**增量变更导出:** + +- `cr edit inc` - 描述增量代码变更并导出到 `.compact-inc.cirru` + - `--added "namespace/definition"` - 标记新增的定义 + - `--changed "namespace/definition"` - 标记修改的定义 + - `--removed "namespace/definition"` - 标记删除的定义 + - `--added-ns "namespace"` - 标记新增的命名空间 + - `--removed-ns "namespace"` - 标记删除的命名空间 + - `--ns-updated "namespace"` - 标记命名空间导入变更 + - 配合 watcher 使用实现热更新(详见"开发调试"章节) + +使用 `--help` 参数了解详细的输入方式和参数选项。 + +--- + +## Calcit 语言基础 + +### Cirru 语法核心概念 + +**与其他 Lisp 的区别:** + +- **缩进语法**:用缩进代替括号(类似 Python/YAML),单行用空格分隔 +- **字符串前缀**:`|hello` 或 `"hello"` 表示字符串,`|` 前缀更简洁 +- **无方括号花括号**:只用圆括号概念(体现在 JSON 转换中),Cirru 文本层面无括号 + +**常见混淆点:** + +❌ **错误理解:** Calcit 字符串是 `"x"` → JSON 是 `"\"x\""` +✅ **正确理解:** Cirru `|x` → JSON `"x"`,Cirru `"x"` → JSON `"x"` + +**示例对照:** + +| Cirru 代码 | JSON 等价 | JavaScript 等价 | +| ---------------- | -------------------------------- | ------------------------ | +| `\|hello` | `"hello"` | `"hello"` | +| `"world"` | `"world"` | `"world"` | +| `\|a b c` | `"a b c"` | `"a b c"` | +| `fn (x) (+ x 1)` | `["fn", ["x"], ["+", "x", "1"]]` | `fn(x) { return x + 1 }` | + +### 数据结构:Tuple vs Vector + +Calcit 特有的两种序列类型: + +**Tuple (`::`)** - 不可变、用于模式匹配 + +```cirru +; 创建 tuple +:: :event/type data + +; 模式匹配 +tag-match event + (:event/click data) (handle-click data) + (:event/input text) (handle-input text) +``` + +**Vector (`[]`)** - 可变、用于列表操作 + +```cirru +; 创建 vector +[] item1 item2 item3 + +; DOM 列表 +div {} $ [] + button {} |Click + span {} |Text +``` + +**常见错误:** + +```cirru +; ❌ 错误:用 vector 传事件 +send-event! $ [] :clipboard/read text +; 报错:tag-match expected tuple + +; ✅ 正确:用 tuple +send-event! $ :: :clipboard/read text +``` + +### 其他易错点 + +比较容易犯的错误: + +- Calcit 中字符串通过前缀区分,`|` 和 `"` 开头表示字符串。`|x` 对应 JavaScript 字符串 `"x"`。产生 JSON 时注意不要重复包裹引号。 +- Calcit 采用 Cirru 缩进语法,可以理解成去掉跨行括号改用缩进的 Lisp 变种。用 `cr cirru parse` 和 `cr cirru format` 互相转化试验。 +- Calcit 跟 Clojure 在语义上比较像,但语法层面只用圆括号,不用方括号花括号。 + +--- + +## 开发调试 + +简单脚本用 `cr -1 ` 直接执行。编译 JavaScript 用 `cr -1 js` 执行一次编译。 + +Calcit snapshot 文件中 config 有 `init-fn` 和 `reload-fn` 配置: + +- 初次启动调用 `init-fn` +- 每次修改代码后调用 `reload-fn` + +**典型开发流程:** + +```bash +# 1. 检查代码正确性 +cr --check-only + +# 2. 执行程序(一次性) +cr -1 + +# 3. 编译 JavaScript(一次性) +cr -1 js + +# 4. 进入监听模式开发 +cr # 解释执行模式 +cr js # JS 编译模式 +``` + +### 增量触发更新(推荐)⭐⭐⭐ + +当使用监听模式(`cr` 或 `cr js`)开发时,推荐使用 `cr edit inc` 命令触发增量更新,而非全量重新编译/执行: + +**工作流程:** + +```bash +# 【终端 1】启动 watcher(监听模式) +cr # 或 cr js + +# 【终端 2】修改代码后触发增量更新 +# 修改定义 +cr edit def app.core/my-fn -e 'defn my-fn (x) (+ x 1)' + +# 触发增量更新 +cr edit inc --changed "app.core/my-fn" + +# 等待 ~300ms 后查看编译结果 +cr query error +``` + +**增量更新命令参数:** + +```bash +# 新增定义 +cr edit inc --added "namespace/definition" + +# 修改定义 +cr edit inc --changed "namespace/definition" + +# 删除定义 +cr edit inc --removed "namespace/definition" + +# 新增命名空间 +cr edit inc --added-ns "namespace" + +# 删除命名空间 +cr edit inc --removed-ns "namespace" + +# 更新命名空间导入 +cr edit inc --ns-updated "namespace" + +# 组合使用(批量更新) +cr edit inc \ + --changed "app.core/add" \ + --changed "app.core/multiply" \ + --removed "app.core/old-fn" +``` + +**查看编译结果:** + +```bash +cr query error # 命令会显示详细的错误信息或成功状态 +``` + +**何时使用全量操作:** + +```bash +# 大量修改或需要完全刷新时 +cr --check-only # 快速语法检查 +cr -1 # 重新执行程序 +cr -1 js # 重新编译 JavaScript + +# 或重启监听模式 +# Ctrl+C 停止 watcher,然后重新运行: +cr # 或 cr js +``` + +**增量更新优势:** 快速反馈、精确控制变更范围、watcher 保持运行状态 + +--- + +## 文档支持 + +遇到疑问时使用: + +- `cr docs search ` - 搜索 Calcit 教程内容 +- `cr docs read ` - 阅读完整文档 +- `cr docs list` - 查看所有可用文档 +- `cr query ns ` - 查看命名空间说明和函数文档 +- `cr query peek ` - 快速查看定义签名 +- `cr query def ` - 读取完整语法树 +- `cr query examples ` - 查看示例代码 +- `cr query find ` - 跨命名空间搜索符号 +- `cr query usages ` - 查找定义的使用位置 +- `cr query search -p ` - 搜索叶子节点 +- `cr query search-pattern -p ` - 搜索结构模式 +- `cr query error` - 查看最近的错误堆栈 + +--- + +## 代码修改示例 + +**添加新函数:** + +````bash +# Cirru one liner +cr edit def app.core/multiply -e 'defn multiply (x y) (* x y)' +# 基本操作:** + +```bash +# 添加新函数(命令会提示 Next steps) +cr edit def 'app.core/multiply' -e 'defn multiply (x y) (* x y)' + +# 替换整个定义(-p "" 表示根路径) +cr tree replace 'app.core/multiply' -p "" -e 'defn multiply (x y z) (* x y z)' + +# 更新文档和示例 +cr edit doc 'app.core/multiply' '乘法函数,返回两个数的积' +cr edit add-example 'app.core/multiply' -e 'multiply 5 6' +```` + +**修改定义工作流(命令会显示子节点索引和 Next steps):** + +```bash +# 1. 搜索定位 +cr query search '' -f 'ns/def' -l + +# 2. 查看节点(输出会显示索引和操作提示) +cr tree show 'ns/def' -p "" + +# 3. 执行替换(会显示 diff 和验证命令) +cr tree replace 'ns/def' -p "" --leaf -e '' + +# 4. 检查结果 +cr query error +# 添加命名空间 +cr edit add-ns app.util + +# 添加导入规则 +cr edit add-import app.main -e 'app.util :refer $ helper' + +# 移除导入规则 +cr edit rm-import app.main app.util + +# 更新项目配置 +cr edit config init-fn app.main/main! +``` + +**更新命名空间导入(全量替换):** + +```bash +cr edit imports app.main -j '[["app.lib", ":as", "lib"], ["app.util", ":refer", ["helper"]]]' +``` + +--- + +## ⚠️ 常见陷阱和最佳实践 + +### 1. 路径索引动态变化问题 ⭐⭐⭐ + +**核心原则:** 删除/插入会改变同级后续节点索引。 + +**批量修改策略:** + +- **从后往前操作**(推荐):先删大索引,再删小索引 +- **单次操作后重新搜索**:每次修改立即用 `cr query search` 更新路径 +- **整体重写**:用 `cr tree replace -p ""` 替换整个定义 + +命令会在路径错误时提示最长有效路径和可用子节点。 + +### 2. 输入格式参数使用速查 ⭐⭐⭐ + +**参数混淆矩阵(已全面支持 `-e` 自动识别):** + +| 场景 | 示例用法 | 解析结果 | 说明 | +| ------------------- | -------------------------------------- | ----------------------------- | --------------------------------- | +| **表达式 (Cirru)** | `-e 'defn add (a b) (+ a b)'` | `["defn", "add", ...]` (List) | 默认按 Cirru one-liner 解析 | +| **原子符号 (Leaf)** | `--leaf -e 'my-symbol'` | `"my-symbol"` (Leaf) | **推荐**,避免被包装成 list | +| **字符串 (Leaf)** | `--leaf -e '\|hello world'` | `"hello world"` (Leaf) | 符号前缀 `\|` 表示字符串 | +| **JSON 数组** | `-e '["+", "x", "1"]'` | `["+", "x", "1"]` (List) | **自动识别** (含 `[` 且有 `"`) | +| **JSON 字符串** | `-e '"my leaf"'` | `"my leaf"` (Leaf) | **自动识别** (含引用的字符串) | +| **内联 JSON** | `-j '["defn", ...]'` | `["defn", ...]` (List) | 显式按 JSON 解析,忽略 Cirru 规则 | +| **外部文件** | `-f code.cirru` (或 `-f code.json -J`) | 根据文件内容解析 | `-J` 用于标记文件内是 JSON | + +**核心规则:** + +1. **智能识别模式**:`-e / --code` 现在会自动识别 JSON。如果你传入 `["a"]` 或 `"a"`,它会直接按 JSON 处理,无需再额外加 `-J` 或 `-j`。 +2. **强制 Leaf 模式**:如果你需要确保输入是一个叶子节点(符号或字符串),请在任何地方使用 `--leaf` 开关。它会将原始输入直接作为内容,不经过任何解析。 +3. **显式 JSON 模式**:如果你想明确告诉工具“这段就是 JSON”,优先用 `-j ''`。 +4. **统一性**:`cr tree` 和 `cr edit` 的所有子命令(replace, def, insert 等)现在共享完全相同的输入解析逻辑。 + +**实战示例:** + +```bash +# ✅ 替换表达式 +cr tree replace app.main/fn -p "2" -e 'println |hello' + +# ✅ 替换 leaf(推荐 --leaf) +cr tree replace app.main/fn -p "2,0" --leaf -e 'new-symbol' + +# ✅ 替换字符串 leaf +cr tree replace app.main/fn -p "2,1" --leaf -e '|new text' + +# ❌ 避免:用 -e 传单个 token(会变成 list) +cr tree replace app.main/fn -p "2,0" -e 'symbol' # 结果:["symbol"] +``` + +### 3. Cirru 字符串和数据类型 ⭐⭐ + +**Cirru 字符串前缀:** + +| Cirru 写法 | JSON 等价 | 使用场景 | +| -------------- | -------------- | ------------ | +| `\|hello` | `"hello"` | 推荐,简洁 | +| `"hello"` | `"hello"` | 也可以 | +| `\|a b c` | `"a b c"` | 包含空格 | +| `\|[tag] text` | `"[tag] text"` | 包含特殊字符 | + +**Tuple vs Vector:** + +```cirru +; ✅ Tuple - 用于事件、模式匹配 +:: :clipboard/read text + +; ✅ Vector - 用于 DOM 列表 +[] (button) (div) + +; ❌ 错误:用 vector 传事件 +send-to-component! $ [] :clipboard/read text +; 报错:tag-match expected tuple + +; ✅ 正确:用 tuple +send-to-component! $ :: :clipboard/read text +``` + +**记忆规则:** + +- **`::` (tuple)**: 事件、模式匹配、不可变数据结构 +- **`[]` (vector)**: DOM 元素列表、动态集合 + +### 4. 推荐工作流程 + +**基本流程(命令会显示子节点索引、Next steps、批量重命名提示):** + +```bash +# 1. 搜索定位 +cr query search '' -f 'ns/def' -l + +# 2. 查看节点(会显示索引和操作提示) +cr tree show 'ns/def' -p "" + +# 3. 执行修改(会显示 diff 和验证命令) +cr tree replace 'ns/def' -p "" --leaf -e '' + +# 4. 验证 +cr query error +``` + +**批量修改提示:** 命令会自动检测多匹配场景,显示从大到小的路径排序和重要警告。 + +--- + +## 常见错误排查 + +| 错误信息 | 原因 | 解决方法 | +| ---------------------------- | ----------------------- | --------------------------------- | +| `Path index X out of bounds` | 路径已过期 | 重新运行 `cr query search` | +| `tag-match expected tuple` | 传入 vector 而非 tuple | 改用 `::` | +| 字符串被拆分 | 没有用 `\|` 或 `"` 包裹 | 使用 `\|complete string` | +| `unexpected format` | 语法错误 | 用 `cr cirru parse ''` 验证 | + +**调试命令:** `cr query error`(会显示详细提示)、`cr --check-only` diff --git a/calcit.cirru b/calcit.cirru index 0c70f8c..4c4622e 100644 --- a/calcit.cirru +++ b/calcit.cirru @@ -1,6315 +1,6602 @@ {} (:package |respo-alerts) - :configs $ {} (:init-fn |respo-alerts.main/main!) (:port 6001) (:reload-fn |respo-alerts.main/reload!) (:storage-key |calcit.cirru) (:version |0.10.2) + :configs $ {} (:init-fn |respo-alerts.main/main!) (:reload-fn |respo-alerts.main/reload!) (:version |0.10.4) :modules $ [] |lilac/ |memof/ |respo.calcit/ |respo-ui.calcit/ |reel.calcit/ :entries $ {} :files $ {} - |respo-alerts.comp.container $ {} + |respo-alerts.comp.container $ %{} :FileEntry :defs $ {} |comp-container $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1499755354983) (:by nil) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp) - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container) - |r $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-container) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1507461830530) (:by |root) (:text |reel) - |v $ %{} :Expr (:at 1507461832154) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1507461833421) (:by |root) (:text |let) - |L $ %{} :Expr (:at 1507461834351) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1507461834650) (:by |root) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1507461835738) (:by |root) (:text |store) - |j $ %{} :Expr (:at 1507461836110) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |store) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1507461837276) (:by |root) (:text |:store) - |j $ %{} :Leaf (:at 1507461838285) (:by |root) (:text |reel) - |j $ %{} :Expr (:at 1509727104820) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:store) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1509727105928) (:by |root) (:text |states) - |j $ %{} :Expr (:at 1509727106316) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1509727107223) (:by |root) (:text |:states) - |j $ %{} :Leaf (:at 1509727108033) (:by |root) (:text |store) - |r $ %{} :Expr (:at 1534183165726) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:states) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |store) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1534183167689) (:by |root) (:text |state) - |j $ %{} :Expr (:at 1534183168813) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705128502) (:by |rJG4IHzWf) (:text |either) - |b $ %{} :Expr (:at 1534183177853) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1534183178622) (:by |root) (:text |:data) - |j $ %{} :Leaf (:at 1534183180157) (:by |root) (:text |states) - |j $ %{} :Expr (:at 1534183175323) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:data) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1534183176314) (:by |root) (:text |{}) - |T $ %{} :Expr (:at 1534183169624) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1534183173022) (:by |root) (:text |:selected) - |j $ %{} :Leaf (:at 1534183173368) (:by |root) (:text "|\"") - |j $ %{} :Expr (:at 1572781022204) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:selected) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781024399) (:by |rJG4IHzWf) (:text |:show-modal?) - |j $ %{} :Leaf (:at 1572781025348) (:by |rJG4IHzWf) (:text |false) - |r $ %{} :Expr (:at 1572887182110) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:show-modal?) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |false) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887186121) (:by |rJG4IHzWf) (:text |:show-modal-menu?) - |j $ %{} :Leaf (:at 1572887186756) (:by |rJG4IHzWf) (:text |false) - |T $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:show-modal-menu?) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div) - |j $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{}) - |b $ %{} :Expr (:at 1657726861061) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726864688) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1657727138303) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727138863) (:by |rJG4IHzWf) (:text |str-spaced) - |b $ %{} :Leaf (:at 1657727142454) (:by |rJG4IHzWf) (:text |css/global) - |h $ %{} :Leaf (:at 1657727146495) (:by |rJG4IHzWf) (:text |css/fullscreen) - |l $ %{} :Leaf (:at 1657727153625) (:by |rJG4IHzWf) (:text |css/column) - |j $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css/global) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css/fullscreen) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css/column) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:style) - |j $ %{} :Expr (:at 1534869828159) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1534869828557) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1584861389609) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861391929) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1584861397893) (:by |rJG4IHzWf) (:text |20) - |n $ %{} :Expr (:at 1699376296756) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |20) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376297217) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1699376297538) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376298879) (:by |rJG4IHzWf) (:text |{}) - |h $ %{} :Expr (:at 1699376391712) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1699376393178) (:by |rJG4IHzWf) (:text |a) - |L $ %{} :Expr (:at 1699376393972) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |a) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376394304) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1699376404352) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376406011) (:by |rJG4IHzWf) (:text |:href) - |b $ %{} :Leaf (:at 1699376407262) (:by |rJG4IHzWf) (:text "|\"https://respo-mvc.org/") - |h $ %{} :Expr (:at 1699376408032) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:href) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"https://respo-mvc.org/") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376409101) (:by |rJG4IHzWf) (:text |:target) - |b $ %{} :Leaf (:at 1699376413034) (:by |rJG4IHzWf) (:text "|\"_blank") - |T $ %{} :Expr (:at 1699376299751) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:target) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"_blank") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376300380) (:by |rJG4IHzWf) (:text |img) - |b $ %{} :Expr (:at 1699376301144) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |img) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376302053) (:by |rJG4IHzWf) (:text |{}) - |X $ %{} :Expr (:at 1699376338145) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376342820) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1699376346323) (:by |rJG4IHzWf) (:text |style-logo) - |b $ %{} :Expr (:at 1699376306360) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style-logo) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376306960) (:by |rJG4IHzWf) (:text |:src) - |b $ %{} :Leaf (:at 1699376331749) (:by |rJG4IHzWf) (:text "|\"https://cos-sh.tiye.me/cos-up/bb4c2755050318e864b56f59145d726e-SubstractRespo.png") - |p $ %{} :Expr (:at 1699376421468) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:src) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"https://cos-sh.tiye.me/cos-up/bb4c2755050318e864b56f59145d726e-SubstractRespo.png") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376421468) (:by |rJG4IHzWf) (:text |=<) - |b $ %{} :Leaf (:at 1699376421468) (:by |rJG4IHzWf) (:text |nil) - |h $ %{} :Leaf (:at 1699376421468) (:by |rJG4IHzWf) (:text |40) - |r $ %{} :Expr (:at 1572968824916) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |nil) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |40) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861508823) (:by |rJG4IHzWf) (:text |comp-hooks-usages) - |j $ %{} :Expr (:at 1584782101423) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-hooks-usages) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584782102176) (:by |rJG4IHzWf) (:text |>>) - |T $ %{} :Leaf (:at 1572968832986) (:by |rJG4IHzWf) (:text |states) - |j $ %{} :Leaf (:at 1584861514036) (:by |rJG4IHzWf) (:text |:hooks) - |rT $ %{} :Expr (:at 1629739978484) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:hooks) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1629739979013) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1629739980468) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Leaf (:at 1629739985641) (:by |rJG4IHzWf) (:text |40) - |s $ %{} :Expr (:at 1572968956989) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |nil) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |40) + |f $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572968944093) (:by |rJG4IHzWf) (:text |comp-controlled-modals) - |j $ %{} :Expr (:at 1584782107230) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-controlled-modals) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584782107937) (:by |rJG4IHzWf) (:text |>>) - |T $ %{} :Leaf (:at 1572968965028) (:by |rJG4IHzWf) (:text |states) - |j $ %{} :Leaf (:at 1584782108991) (:by |rJG4IHzWf) (:text |:controlled) - |sT $ %{} :Expr (:at 1702666464077) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:controlled) + |h $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666464077) (:by |rJG4IHzWf) (:text |=<) - |b $ %{} :Leaf (:at 1702666464077) (:by |rJG4IHzWf) (:text |nil) - |h $ %{} :Leaf (:at 1702666464077) (:by |rJG4IHzWf) (:text |40) - |t $ %{} :Expr (:at 1702666325916) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |nil) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |40) + |j $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666330511) (:by |rJG4IHzWf) (:text |comp-demo-trigger) - |b $ %{} :Expr (:at 1702666331503) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-demo-trigger) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666332911) (:by |rJG4IHzWf) (:text |>>) - |b $ %{} :Leaf (:at 1702666334055) (:by |rJG4IHzWf) (:text |states) - |h $ %{} :Leaf (:at 1702666335127) (:by |rJG4IHzWf) (:text |:trigger) - |v $ %{} :Expr (:at 1528046410123) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:trigger) + |l $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528046411967) (:by |root) (:text |when) - |j $ %{} :Leaf (:at 1528046453319) (:by |root) (:text |dev?) - |r $ %{} :Expr (:at 1528046415771) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |when) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |dev?) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528046418148) (:by |root) (:text |comp-inspect) - |b $ %{} :Leaf (:at 1528217164431) (:by |root) (:text "|\"states") - |j $ %{} :Leaf (:at 1528217162732) (:by |root) (:text |states) - |r $ %{} :Expr (:at 1530555034768) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-inspect) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"states") + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530555036708) (:by |root) (:text |{}) - |j $ %{} :Expr (:at 1530555037048) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530555039987) (:by |root) (:text |:bottom) - |j $ %{} :Leaf (:at 1530555041304) (:by |root) (:text |0) - |x $ %{} :Expr (:at 1521954055333) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:bottom) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |n $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1521954057510) (:by |root) (:text |when) - |L $ %{} :Leaf (:at 1521954059290) (:by |root) (:text |dev?) - |T $ %{} :Expr (:at 1507461809635) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |when) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |dev?) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1507461815046) (:by |root) (:text |comp-reel) - |b $ %{} :Expr (:at 1584782115579) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-reel) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584782117148) (:by |rJG4IHzWf) (:text |>>) - |T $ %{} :Leaf (:at 1509727101297) (:by |root) (:text |states) - |j $ %{} :Leaf (:at 1584782118078) (:by |rJG4IHzWf) (:text |:reel) - |j $ %{} :Leaf (:at 1507461840459) (:by |root) (:text |reel) - |r $ %{} :Expr (:at 1507461840980) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:reel) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1507461841342) (:by |root) (:text |{}) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + :examples $ [] |comp-controlled-modals $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1572968944093) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572968945519) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1572968944093) (:by |rJG4IHzWf) (:text |comp-controlled-modals) - |n $ %{} :Expr (:at 1572968946455) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-controlled-modals) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572968948916) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1572968949881) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572968953214) (:by |rJG4IHzWf) (:text |let) - |b $ %{} :Expr (:at 1572968978863) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Expr (:at 1584848175146) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584848189123) (:by |rJG4IHzWf) (:text |demo-modal) - |T $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |demo-modal) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |use-modal) - |b $ %{} :Expr (:at 1584848048396) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |use-modal) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848047826) (:by |rJG4IHzWf) (:text |>>) - |j $ %{} :Leaf (:at 1584848050217) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Leaf (:at 1584848410600) (:by |rJG4IHzWf) (:text |:modal) - |j $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:modal) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text "|\"demo") - |r $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"demo") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |:width) - |j $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |400) - |v $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:width) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |400) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |:container-style) - |j $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:container-style) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |{}) - |w $ %{} :Expr (:at 1648744616830) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1648744622608) (:by |rJG4IHzWf) (:text |:backdrop-style) - |b $ %{} :Expr (:at 1648744623776) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:backdrop-style) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1648744624245) (:by |rJG4IHzWf) (:text |{}) - |x $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591519391257) (:by |rJG4IHzWf) (:text |:render) - |j $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:render) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591205304270) (:by |rJG4IHzWf) (:text |on-close) - |r $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |on-close) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1584848020826) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1584848020826) (:by |rJG4IHzWf) (:text "|\"Place for child content") - |v $ %{} :Expr (:at 1591205306073) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Place for child content") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591205308180) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1591205308507) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591205308844) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1591205309324) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657729133975) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1657729131227) (:by |rJG4IHzWf) (:text |css/button) - |r $ %{} :Expr (:at 1591205314281) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css/button) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591205316343) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1591205317966) (:by |rJG4IHzWf) (:text "|\"Close") - |v $ %{} :Expr (:at 1591205318487) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Close") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591205320135) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1591205320404) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591205320694) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1591205320956) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591205321180) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1591205321653) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1591205322542) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591205325417) (:by |rJG4IHzWf) (:text |on-close) - |j $ %{} :Leaf (:at 1591205325979) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584848384602) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |on-close) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848688291) (:by |rJG4IHzWf) (:text |demo-modal-menu) - |j $ %{} :Expr (:at 1584848387256) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |demo-modal-menu) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848390559) (:by |rJG4IHzWf) (:text |use-modal-menu) - |j $ %{} :Expr (:at 1584848391727) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |use-modal-menu) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848392159) (:by |rJG4IHzWf) (:text |>>) - |j $ %{} :Leaf (:at 1584848393602) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Leaf (:at 1584848413146) (:by |rJG4IHzWf) (:text |:modal-menu) - |r $ %{} :Expr (:at 1584848432344) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:modal-menu) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848432344) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848432344) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848432344) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1584848432344) (:by |rJG4IHzWf) (:text "|\"Demo") - |r $ %{} :Expr (:at 1584848432344) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Demo") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848432344) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1584848432344) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848432344) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848432344) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848432344) (:by |rJG4IHzWf) (:text |:width) - |j $ %{} :Leaf (:at 1584848432344) (:by |rJG4IHzWf) (:text |300) - |v $ %{} :Expr (:at 1584848438405) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:width) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |300) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848441868) (:by |rJG4IHzWf) (:text |:items) - |j $ %{} :Expr (:at 1584848442366) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:items) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848442366) (:by |rJG4IHzWf) (:text |[]) - |b $ %{} :Expr (:at 1704907071706) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |[]) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704907073409) (:by |rJG4IHzWf) (:text |::) - |T $ %{} :Leaf (:at 1704907072375) (:by |rJG4IHzWf) (:text |:item) - |b $ %{} :Leaf (:at 1704907075203) (:by |rJG4IHzWf) (:text "|\"a") - |h $ %{} :Leaf (:at 1704907076992) (:by |rJG4IHzWf) (:text "|\"A") - |f $ %{} :Expr (:at 1704907078133) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |::) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:item) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"a") + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"A") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704907078947) (:by |rJG4IHzWf) (:text |::) - |b $ %{} :Leaf (:at 1704907079947) (:by |rJG4IHzWf) (:text |:item) - |h $ %{} :Leaf (:at 1704907081210) (:by |rJG4IHzWf) (:text "|\"b") - |l $ %{} :Expr (:at 1704907083849) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |::) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:item) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"b") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704907083849) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1704907083849) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704907083849) (:by |rJG4IHzWf) (:text |{}) - |h $ %{} :Expr (:at 1704907083849) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704907083849) (:by |rJG4IHzWf) (:text |<>) - |b $ %{} :Leaf (:at 1704907083849) (:by |rJG4IHzWf) (:text "|\"B") - |x $ %{} :Expr (:at 1584848618360) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"B") + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848624863) (:by |rJG4IHzWf) (:text |:on-result) - |j $ %{} :Expr (:at 1584848625080) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:on-result) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848625369) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584848625627) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848629260) (:by |rJG4IHzWf) (:text |result) - |j $ %{} :Leaf (:at 1584848629939) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584848631112) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |result) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848631944) (:by |rJG4IHzWf) (:text |println) - |j $ %{} :Leaf (:at 1584848636500) (:by |rJG4IHzWf) (:text "|\"got result") - |r $ %{} :Leaf (:at 1584848637570) (:by |rJG4IHzWf) (:text |result) - |t $ %{} :Expr (:at 1669214981039) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |println) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"got result") + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |result) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215012345) (:by |rJG4IHzWf) (:text |demo-drawer) - |b $ %{} :Expr (:at 1669214981039) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |demo-drawer) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215015047) (:by |rJG4IHzWf) (:text |use-drawer) - |b $ %{} :Expr (:at 1669214981039) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |use-drawer) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214981039) (:by |rJG4IHzWf) (:text |>>) - |b $ %{} :Leaf (:at 1669214981039) (:by |rJG4IHzWf) (:text |states) - |h $ %{} :Leaf (:at 1669215022606) (:by |rJG4IHzWf) (:text |:drawer) - |h $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:drawer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |:title) - |b $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text "|\"demo") - |h $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"demo") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1669218152593) (:by |rJG4IHzWf) (:text |;) - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |400) - |l $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |;) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:width) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |400) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |:container-style) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:container-style) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |{}) - |o $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |:backdrop-style) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:backdrop-style) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |{}) - |q $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |:render) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:render) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |on-close) - |h $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |on-close) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |{}) - |h $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |<>) - |b $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text "|\"Place for child content") - |l $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Place for child content") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |button) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |css/button) - |h $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css/button) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |:inner-text) - |b $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text "|\"Close") - |l $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Close") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |:on-click) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1669215027470) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |on-close) - |b $ %{} :Leaf (:at 1669215027470) (:by |rJG4IHzWf) (:text |d!) - |j $ %{} :Expr (:at 1584861371775) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |on-close) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584861373250) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1584861373491) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861373851) (:by |rJG4IHzWf) (:text |{}) - |P $ %{} :Expr (:at 1584861375097) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861375734) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1584861375960) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861376317) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1584861376735) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861378109) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1629739995975) (:by |rJG4IHzWf) (:text "|\"Modal usage") - |T $ %{} :Expr (:at 1584848204348) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Modal usage") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848204839) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1584848204980) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848205330) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848849731) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848850560) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1584848850729) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848853254) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848853899) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848855280) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1629739971453) (:by |rJG4IHzWf) (:text "|\"8px 0px") - |n $ %{} :Expr (:at 1584848221047) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"8px 0px") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848225095) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1584848225317) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848225660) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848225866) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848228733) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1584848230365) (:by |rJG4IHzWf) (:text "|\"show modal") - |n $ %{} :Expr (:at 1657727337581) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"show modal") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727337581) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1657727337581) (:by |rJG4IHzWf) (:text |css/button) - |r $ %{} :Expr (:at 1584848231958) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848235887) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1584848236224) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848236503) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584848236712) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848237763) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1584848239547) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584848239954) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416190919) (:by |rJG4IHzWf) (:text |.show) - |b $ %{} :Leaf (:at 1584848248516) (:by |rJG4IHzWf) (:text |demo-modal) - |j $ %{} :Leaf (:at 1584848250116) (:by |rJG4IHzWf) (:text |d!) - |o $ %{} :Expr (:at 1584848846388) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.show) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |demo-modal) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848847501) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1584848847867) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1584848848379) (:by |rJG4IHzWf) (:text |nil) - |p $ %{} :Expr (:at 1584848221047) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |8) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |nil) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848225095) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1584848225317) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848225660) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848225866) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848228733) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1584848747068) (:by |rJG4IHzWf) (:text "|\"show modal menu") - |n $ %{} :Expr (:at 1657727339503) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"show modal menu") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727339503) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1657727339503) (:by |rJG4IHzWf) (:text |css/button) - |r $ %{} :Expr (:at 1584848231958) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848235887) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1584848236224) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848236503) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584848236712) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848237763) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1584848239547) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584848239954) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |b $ %{} :Leaf (:at 1623416568727) (:by |rJG4IHzWf) (:text |.show) - |f $ %{} :Leaf (:at 1584848802473) (:by |rJG4IHzWf) (:text |demo-modal-menu) - |j $ %{} :Leaf (:at 1584848250116) (:by |rJG4IHzWf) (:text |d!) - |q $ %{} :Expr (:at 1669214988646) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.show) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |demo-modal-menu) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214988646) (:by |rJG4IHzWf) (:text |=<) - |b $ %{} :Leaf (:at 1669214988646) (:by |rJG4IHzWf) (:text |8) - |h $ %{} :Leaf (:at 1669214988646) (:by |rJG4IHzWf) (:text |nil) - |qT $ %{} :Expr (:at 1669214990770) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |8) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |nil) + |f $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |button) - |b $ %{} :Expr (:at 1669214990770) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669214990770) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |:inner-text) - |b $ %{} :Leaf (:at 1669214994028) (:by |rJG4IHzWf) (:text "|\"show drawer") - |h $ %{} :Expr (:at 1669214990770) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"show drawer") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |css/button) - |l $ %{} :Expr (:at 1669214990770) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |:on-click) - |b $ %{} :Expr (:at 1669214990770) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1669214990770) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1669214990770) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |.show) - |b $ %{} :Leaf (:at 1669214997477) (:by |rJG4IHzWf) (:text |demo-drawer) - |h $ %{} :Leaf (:at 1669214990770) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584848212417) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.show) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |demo-drawer) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |h $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416263816) (:by |rJG4IHzWf) (:text |.render) - |j $ %{} :Leaf (:at 1584848216586) (:by |rJG4IHzWf) (:text |demo-modal) - |v $ %{} :Expr (:at 1584848680050) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.render) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |demo-modal) + |j $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416573699) (:by |rJG4IHzWf) (:text |.render) - |j $ %{} :Leaf (:at 1584848684509) (:by |rJG4IHzWf) (:text |demo-modal-menu) - |w $ %{} :Expr (:at 1669214983947) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.render) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |demo-modal-menu) + |l $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214983947) (:by |rJG4IHzWf) (:text |.render) - |b $ %{} :Leaf (:at 1669214985953) (:by |rJG4IHzWf) (:text |demo-drawer) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.render) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |demo-drawer) + :examples $ [] |comp-demo-trigger $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1702666336138) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666337609) (:by |rJG4IHzWf) (:text |defcomp) - |b $ %{} :Leaf (:at 1702666336138) (:by |rJG4IHzWf) (:text |comp-demo-trigger) - |h $ %{} :Expr (:at 1702666336138) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-demo-trigger) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666340740) (:by |rJG4IHzWf) (:text |states) - |l $ %{} :Expr (:at 1702666411646) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1702666412927) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1702666413149) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1702666413292) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666414355) (:by |rJG4IHzWf) (:text |cursor) - |b $ %{} :Expr (:at 1702666414558) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |cursor) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666415482) (:by |rJG4IHzWf) (:text |:cursor) - |b $ %{} :Leaf (:at 1702666416356) (:by |rJG4IHzWf) (:text |states) - |b $ %{} :Expr (:at 1702666416986) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666420161) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Expr (:at 1702666420389) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666422080) (:by |rJG4IHzWf) (:text |either) - |b $ %{} :Expr (:at 1702666422373) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666422915) (:by |rJG4IHzWf) (:text |:data) - |b $ %{} :Leaf (:at 1702666423677) (:by |rJG4IHzWf) (:text |states) - |h $ %{} :Expr (:at 1702666424152) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:data) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666424534) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1702666424860) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666426714) (:by |rJG4IHzWf) (:text |:visible?) - |b $ %{} :Leaf (:at 1702666427540) (:by |rJG4IHzWf) (:text |false) - |T $ %{} :Expr (:at 1702666341239) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:visible?) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666343047) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1702666343276) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666343570) (:by |rJG4IHzWf) (:text |{}) - |h $ %{} :Expr (:at 1702666344289) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666344701) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1702666344963) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666347747) (:by |rJG4IHzWf) (:text |{}) - |h $ %{} :Expr (:at 1702666348180) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666348540) (:by |rJG4IHzWf) (:text |<>) - |b $ %{} :Leaf (:at 1702666350491) (:by |rJG4IHzWf) (:text "|\"Trigger") - |l $ %{} :Expr (:at 1702666368947) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Trigger") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1702666369549) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1702666369747) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666370024) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1702666367424) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666368024) (:by |rJG4IHzWf) (:text |comp-trigger) - |X $ %{} :Expr (:at 1702666434761) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-trigger) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666435830) (:by |rJG4IHzWf) (:text |:visible?) - |b $ %{} :Leaf (:at 1702666437633) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Expr (:at 1702666372965) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:visible?) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666396442) (:by |rJG4IHzWf) (:text |button) - |b $ %{} :Expr (:at 1702666396755) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666397066) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1702666398204) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666399899) (:by |rJG4IHzWf) (:text |:inner-text) - |b $ %{} :Leaf (:at 1702666402591) (:by |rJG4IHzWf) (:text "|\"Toggle") - |h $ %{} :Expr (:at 1702666404236) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Toggle") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666405689) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1702666407545) (:by |rJG4IHzWf) (:text |css/button) - |l $ %{} :Expr (:at 1702666440753) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666444244) (:by |rJG4IHzWf) (:text |:on-click) - |b $ %{} :Expr (:at 1702666444584) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666444949) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1702666445259) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666445486) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1702666446021) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1702666446488) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666446913) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1702666449070) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1702666449308) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666450253) (:by |rJG4IHzWf) (:text |update) - |b $ %{} :Leaf (:at 1702666453101) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1702666454800) (:by |rJG4IHzWf) (:text |:visible?) - |l $ %{} :Leaf (:at 1702666455335) (:by |rJG4IHzWf) (:text |not) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |update) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:visible?) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |not) + :examples $ [] |comp-hooks-usages $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1584861515910) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861518085) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1584861515910) (:by |rJG4IHzWf) (:text |comp-hooks-usages) - |r $ %{} :Expr (:at 1584861515910) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |comp-hooks-usages) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861520164) (:by |rJG4IHzWf) (:text |states) - |v $ %{} :Expr (:at 1584861540132) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |states) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584861540712) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1584861541064) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1584861541214) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861556607) (:by |rJG4IHzWf) (:text |alert-plugin) - |j $ %{} :Expr (:at 1584861556913) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |alert-plugin) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861558600) (:by |rJG4IHzWf) (:text |use-alert) - |b $ %{} :Expr (:at 1584861567923) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |use-alert) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861568288) (:by |rJG4IHzWf) (:text |>>) - |j $ %{} :Leaf (:at 1584861569047) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Leaf (:at 1584861571370) (:by |rJG4IHzWf) (:text |:alert) - |j $ %{} :Expr (:at 1584861564370) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:alert) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861564757) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861573281) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861576069) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1584861577016) (:by |rJG4IHzWf) (:text "|\"demo") - |b $ %{} :Expr (:at 1584861541214) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"demo") + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644854056265) (:by |rJG4IHzWf) (:text |alert-text-plugin) - |j $ %{} :Expr (:at 1584861556913) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |alert-text-plugin) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861558600) (:by |rJG4IHzWf) (:text |use-alert) - |b $ %{} :Expr (:at 1584861567923) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |use-alert) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861568288) (:by |rJG4IHzWf) (:text |>>) - |j $ %{} :Leaf (:at 1584861569047) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Leaf (:at 1644854307130) (:by |rJG4IHzWf) (:text |:alert-text) - |j $ %{} :Expr (:at 1584861564370) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:alert-text) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861564757) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861573281) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861576069) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1584861577016) (:by |rJG4IHzWf) (:text "|\"demo") - |j $ %{} :Expr (:at 1584861541214) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"demo") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861732588) (:by |rJG4IHzWf) (:text |confirm-plugin) - |j $ %{} :Expr (:at 1584861556913) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |confirm-plugin) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861735178) (:by |rJG4IHzWf) (:text |use-confirm) - |b $ %{} :Expr (:at 1584861567923) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |use-confirm) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861568288) (:by |rJG4IHzWf) (:text |>>) - |j $ %{} :Leaf (:at 1584861569047) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Leaf (:at 1589216005319) (:by |rJG4IHzWf) (:text |:confirm) - |j $ %{} :Expr (:at 1584861564370) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:confirm) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861564757) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861573281) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861576069) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1584861577016) (:by |rJG4IHzWf) (:text "|\"demo") - |r $ %{} :Expr (:at 1584861541214) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"demo") + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862304864) (:by |rJG4IHzWf) (:text |prompt-plugin) - |j $ %{} :Expr (:at 1584861556913) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-plugin) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862291305) (:by |rJG4IHzWf) (:text |use-prompt) - |b $ %{} :Expr (:at 1584861567923) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |use-prompt) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861568288) (:by |rJG4IHzWf) (:text |>>) - |j $ %{} :Leaf (:at 1584861569047) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Leaf (:at 1584862297570) (:by |rJG4IHzWf) (:text |:prompt) - |j $ %{} :Expr (:at 1584861564370) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:prompt) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861564757) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861573281) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861576069) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1584861577016) (:by |rJG4IHzWf) (:text "|\"demo") - |v $ %{} :Expr (:at 1584861541214) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"demo") + |b $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845437624) (:by |rJG4IHzWf) (:text |prompt-multilines-plugin) - |j $ %{} :Expr (:at 1584861556913) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-multilines-plugin) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862291305) (:by |rJG4IHzWf) (:text |use-prompt) - |b $ %{} :Expr (:at 1584861567923) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |use-prompt) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861568288) (:by |rJG4IHzWf) (:text |>>) - |j $ %{} :Leaf (:at 1584861569047) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Leaf (:at 1621845510533) (:by |rJG4IHzWf) (:text |:multilines-prompt) - |j $ %{} :Expr (:at 1621845414091) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:multilines-prompt) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |{}) - |f $ %{} :Expr (:at 1621845429428) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845430156) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1621845434930) (:by |rJG4IHzWf) (:text "|\"demo multilines") - |r $ %{} :Expr (:at 1621845414091) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"demo multilines") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text "|\"This would be a very long content of alerts, like some prompt... write multiple lines:") - |v $ %{} :Expr (:at 1621845414091) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"This would be a very long content of alerts, like some prompt... write multiple lines:") + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |:initial) - |j $ %{} :Expr (:at 1621845414091) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:initial) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Expr (:at 1621845414091) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |str) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |rand-int) - |j $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |100) - |x $ %{} :Expr (:at 1621845414091) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |rand-int) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |100) + |b $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1621845414091) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |{}) - |yD $ %{} :Expr (:at 1704557977820) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |d $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704557980037) (:by |rJG4IHzWf) (:text |:input-class) - |b $ %{} :Leaf (:at 1704557998978) (:by |rJG4IHzWf) (:text |css/font-code!) - |yT $ %{} :Expr (:at 1621845414091) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:input-class) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |css/font-code!) + |f $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |:multiline?) - |j $ %{} :Leaf (:at 1621845414091) (:by |rJG4IHzWf) (:text |true) - |x $ %{} :Expr (:at 1584861541214) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:multiline?) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |true) + |d $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845527470) (:by |rJG4IHzWf) (:text |prompt-validation-plugin) - |j $ %{} :Expr (:at 1584861556913) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-validation-plugin) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862291305) (:by |rJG4IHzWf) (:text |use-prompt) - |b $ %{} :Expr (:at 1584861567923) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |use-prompt) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861568288) (:by |rJG4IHzWf) (:text |>>) - |j $ %{} :Leaf (:at 1584861569047) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Leaf (:at 1648744579870) (:by |rJG4IHzWf) (:text |:validation-prompt) - |j $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:validation-prompt) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |{}) - |f $ %{} :Expr (:at 1621845541463) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845542807) (:by |rJG4IHzWf) (:text |:titl) - |j $ %{} :Leaf (:at 1621845548326) (:by |rJG4IHzWf) (:text "|\"validated") - |r $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:titl) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"validated") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text "|\"This would be a very long content of alerts, like some prompt... write multiple lines:") - |v $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"This would be a very long content of alerts, like some prompt... write multiple lines:") + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |:initial) - |j $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:initial) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |str) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |rand-int) - |j $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |100) - |x $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |rand-int) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |100) + |b $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |{}) - |yD $ %{} :Expr (:at 1704558007679) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |d $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558009292) (:by |rJG4IHzWf) (:text |:input-class) - |b $ %{} :Leaf (:at 1704558009292) (:by |rJG4IHzWf) (:text |css/font-code!) - |yT $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:input-class) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |css/font-code!) + |f $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |:multiline?) - |j $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |true) - |yj $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:multiline?) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |true) + |h $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |:validator) - |j $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:validator) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |x) - |r $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |x) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |try) - |j $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |try) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |do) - |j $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |do) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |parse-cirru) - |j $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |x) - |r $ %{} :Leaf (:at 1623723498903) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |parse-cirru) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |x) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Expr (:at 1621845538015) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |e) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1621845538015) (:by |rJG4IHzWf) (:text |e) - |T $ %{} :Expr (:at 1584861521540) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |str) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |e) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861522164) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1584861522382) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861522707) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1584861523588) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861526181) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1584861526414) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861526732) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1584861528204) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861528596) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1584861533119) (:by |rJG4IHzWf) (:text "|\"Hooks") - |v $ %{} :Expr (:at 1584861534566) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"Hooks") + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861535019) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1584861535204) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861535513) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1702667141754) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1702667148727) (:by |rJG4IHzWf) (:text |comp-trigger) - |L $ %{} :Expr (:at 1702667413383) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |comp-trigger) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667414849) (:by |rJG4IHzWf) (:text |.show?) - |b $ %{} :Leaf (:at 1702667417027) (:by |rJG4IHzWf) (:text |alert-plugin) - |T $ %{} :Expr (:at 1584861591088) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.show?) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |alert-plugin) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861592023) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1584861592539) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861592862) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861593109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861595023) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1584861598682) (:by |rJG4IHzWf) (:text "|\"show alert") - |n $ %{} :Expr (:at 1657727326245) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"show alert") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727326245) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1657727326245) (:by |rJG4IHzWf) (:text |css/button) - |r $ %{} :Expr (:at 1584861599402) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861600661) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1584861600918) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861601162) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584861601406) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861601592) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1584861602173) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584861610681) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416720507) (:by |rJG4IHzWf) (:text |.show) - |b $ %{} :Leaf (:at 1584861610141) (:by |rJG4IHzWf) (:text |alert-plugin) - |j $ %{} :Leaf (:at 1584861611745) (:by |rJG4IHzWf) (:text |d!) - |s $ %{} :Expr (:at 1644854084724) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.show) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |alert-plugin) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644854084724) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1644854084724) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1644854084724) (:by |rJG4IHzWf) (:text |nil) - |t $ %{} :Expr (:at 1584861591088) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |8) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |nil) + |b $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861592023) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1584861592539) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861592862) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861593109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861595023) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1644854087668) (:by |rJG4IHzWf) (:text "|\"show alert text") - |n $ %{} :Expr (:at 1657727324721) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"show alert text") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727324721) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1657727324721) (:by |rJG4IHzWf) (:text |css/button) - |r $ %{} :Expr (:at 1584861599402) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861600661) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1584861600918) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861601162) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584861601406) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861601592) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1584861602173) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584861610681) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416720507) (:by |rJG4IHzWf) (:text |.show) - |b $ %{} :Leaf (:at 1644854355370) (:by |rJG4IHzWf) (:text |alert-text-plugin) - |j $ %{} :Leaf (:at 1584861611745) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Leaf (:at 1644854092743) (:by |rJG4IHzWf) (:text "|\"DEMO text") - |v $ %{} :Expr (:at 1584861720911) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.show) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |alert-text-plugin) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"DEMO text") + |d $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861721718) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1584861722970) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1584861723692) (:by |rJG4IHzWf) (:text |nil) - |x $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |8) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |nil) + |f $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1584861782066) (:by |rJG4IHzWf) (:text "|\"show confirm") - |r $ %{} :Expr (:at 1657727322982) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"show confirm") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727322982) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1657727322982) (:by |rJG4IHzWf) (:text |css/button) - |v $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416826674) (:by |rJG4IHzWf) (:text |.show) - |b $ %{} :Leaf (:at 1584861756018) (:by |rJG4IHzWf) (:text |confirm-plugin) - |j $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584862119238) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.show) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |confirm-plugin) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862119568) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584862119844) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |r $ %{} :Expr (:at 1584862136746) (:by |rJG4IHzWf) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862137782) (:by |rJG4IHzWf) (:text |println) - |j $ %{} :Leaf (:at 1584862143417) (:by |rJG4IHzWf) (:text "|\"after confirmed") - |xT $ %{} :Expr (:at 1584862408223) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |println) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"after confirmed") + |h $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862408223) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1584862408223) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1584862408223) (:by |rJG4IHzWf) (:text |nil) - |y $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |8) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |nil) + |j $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1584862415780) (:by |rJG4IHzWf) (:text "|\"show prompt") - |r $ %{} :Expr (:at 1657727320784) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "||show confirm with text") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727320784) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1657727320784) (:by |rJG4IHzWf) (:text |css/button) - |v $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623417179420) (:by |rJG4IHzWf) (:text |.show) - |b $ %{} :Leaf (:at 1584862418991) (:by |rJG4IHzWf) (:text |prompt-plugin) - |j $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584862119238) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862119568) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584862119844) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862424413) (:by |rJG4IHzWf) (:text |text) - |r $ %{} :Expr (:at 1615545287893) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |js/prompt) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "||Input confirm text") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |not) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |blank?) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1615545287893) (:by |rJG4IHzWf) (:text |println) - |j $ %{} :Leaf (:at 1615545287893) (:by |rJG4IHzWf) (:text "|\"read from prompt") - |r $ %{} :Expr (:at 1615545287893) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.show-with-text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |confirm-plugin) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |str) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "||Confirmed: ") + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |b $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1693245145688) (:by |rJG4IHzWf) (:text |to-lispy-string) - |j $ %{} :Leaf (:at 1615545287893) (:by |rJG4IHzWf) (:text |text) - |yD $ %{} :Expr (:at 1621845516428) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |println) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "||after confirmed") + |l $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845516428) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1621845516428) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1621845516428) (:by |rJG4IHzWf) (:text |nil) - |yT $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |8) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |nil) + |n $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1621845451696) (:by |rJG4IHzWf) (:text "|\"show multilines prompt") - |r $ %{} :Expr (:at 1657727318291) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"show prompt") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727318291) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1657727318291) (:by |rJG4IHzWf) (:text |css/button) - |v $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623417183098) (:by |rJG4IHzWf) (:text |.show) - |b $ %{} :Leaf (:at 1621845454618) (:by |rJG4IHzWf) (:text |prompt-multilines-plugin) - |j $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584862119238) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.show) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-plugin) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862119568) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584862119844) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862424413) (:by |rJG4IHzWf) (:text |text) - |r $ %{} :Expr (:at 1615545287893) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1615545287893) (:by |rJG4IHzWf) (:text |println) - |j $ %{} :Leaf (:at 1615545287893) (:by |rJG4IHzWf) (:text "|\"read from prompt") - |r $ %{} :Expr (:at 1615545287893) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |println) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"read from prompt") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1693245148710) (:by |rJG4IHzWf) (:text |to-lispy-string) - |j $ %{} :Leaf (:at 1615545287893) (:by |rJG4IHzWf) (:text |text) - |yb $ %{} :Expr (:at 1621845568248) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |to-lispy-string) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |p $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1621845568248) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1621845568248) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1621845568248) (:by |rJG4IHzWf) (:text |nil) - |yj $ %{} :Expr (:at 1702667439539) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |8) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |nil) + |r $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1702667440056) (:by |rJG4IHzWf) (:text |comp-trigger) - |L $ %{} :Expr (:at 1702667442715) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667442715) (:by |rJG4IHzWf) (:text |.show?) - |b $ %{} :Leaf (:at 1702667446610) (:by |rJG4IHzWf) (:text |prompt-validation-plugin) - |T $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"show multilines prompt") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.show) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-multilines-plugin) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |println) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"read from prompt") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |to-lispy-string) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |t $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |8) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |nil) + |v $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |comp-trigger) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.show?) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-validation-plugin) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1621845556391) (:by |rJG4IHzWf) (:text "|\"show validated prompt") - |r $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"show validated prompt") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727311658) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1657727314861) (:by |rJG4IHzWf) (:text |css/button) - |v $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |css/button) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584861725843) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623417186136) (:by |rJG4IHzWf) (:text |.show) - |b $ %{} :Leaf (:at 1621845559020) (:by |rJG4IHzWf) (:text |prompt-validation-plugin) - |j $ %{} :Leaf (:at 1584861725843) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584862119238) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.show) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-validation-plugin) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862119568) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584862119844) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584862424413) (:by |rJG4IHzWf) (:text |text) - |r $ %{} :Expr (:at 1615545287893) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1615545287893) (:by |rJG4IHzWf) (:text |println) - |j $ %{} :Leaf (:at 1615545287893) (:by |rJG4IHzWf) (:text "|\"read from prompt") - |r $ %{} :Expr (:at 1615545287893) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |println) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text "|\"read from prompt") + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1693245151562) (:by |rJG4IHzWf) (:text |to-lispy-string) - |j $ %{} :Leaf (:at 1615545287893) (:by |rJG4IHzWf) (:text |text) - |x $ %{} :Expr (:at 1584861585096) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |to-lispy-string) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |b $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416717088) (:by |rJG4IHzWf) (:text |.render) - |j $ %{} :Leaf (:at 1584861589747) (:by |rJG4IHzWf) (:text |alert-plugin) - |y $ %{} :Expr (:at 1584861745581) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.render) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |alert-plugin) + |d $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416830026) (:by |rJG4IHzWf) (:text |.render) - |j $ %{} :Leaf (:at 1584861750230) (:by |rJG4IHzWf) (:text |confirm-plugin) - |yT $ %{} :Expr (:at 1584861745581) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.render) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |confirm-plugin) + |f $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623417190609) (:by |rJG4IHzWf) (:text |.render) - |j $ %{} :Leaf (:at 1584862446230) (:by |rJG4IHzWf) (:text |prompt-plugin) - |yj $ %{} :Expr (:at 1584861745581) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.render) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-plugin) + |h $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623417193836) (:by |rJG4IHzWf) (:text |.render) - |j $ %{} :Leaf (:at 1621845459711) (:by |rJG4IHzWf) (:text |prompt-multilines-plugin) - |yr $ %{} :Expr (:at 1584861745581) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.render) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-multilines-plugin) + |j $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623417196022) (:by |rJG4IHzWf) (:text |.render) - |j $ %{} :Leaf (:at 1621845562467) (:by |rJG4IHzWf) (:text |prompt-validation-plugin) - |yv $ %{} :Expr (:at 1644854072498) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.render) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |prompt-validation-plugin) + |l $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644854073496) (:by |rJG4IHzWf) (:text |.render) - |j $ %{} :Leaf (:at 1644854073866) (:by |rJG4IHzWf) (:text |alert-text-plugin) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.render) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |alert-text-plugin) + :examples $ [] |style-logo $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1699376346659) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376365355) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1699376346659) (:by |rJG4IHzWf) (:text |style-logo) - |h $ %{} :Expr (:at 1699376346659) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defstyle) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style-logo) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376366495) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1699376366839) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376367945) (:by |rJG4IHzWf) (:text "|\"&") - |b $ %{} :Expr (:at 1699376368373) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"&") + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376368707) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1699376368970) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376370301) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1699376436808) (:by |rJG4IHzWf) (:text |120) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:width) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |120) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1499755354983) (:by nil) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ns) - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo-alerts.comp.container) - |v $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |ns) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.comp.container) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require) - |r $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:require) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core) - |r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui) - |s $ %{} :Expr (:at 1699376358638) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-ui.core) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |ui) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376360017) (:by |rJG4IHzWf) (:text |respo.css) - |b $ %{} :Leaf (:at 1699376361340) (:by |rJG4IHzWf) (:text |:refer) - |h $ %{} :Expr (:at 1699376361572) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.css) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376362732) (:by |rJG4IHzWf) (:text |defstyle) - |t $ %{} :Expr (:at 1657726851782) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defstyle) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726854834) (:by |rJG4IHzWf) (:text |respo-ui.css) - |b $ %{} :Leaf (:at 1657726856552) (:by |rJG4IHzWf) (:text |:as) - |h $ %{} :Leaf (:at 1657726857140) (:by |rJG4IHzWf) (:text |css) - |v $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-ui.css) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1540958513787) (:by |root) (:text |respo.core) - |r $ %{} :Leaf (:at 1508946162679) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.core) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp) - |n $ %{} :Leaf (:at 1584782090500) (:by |rJG4IHzWf) (:text |>>) - |r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>) - |v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div) - |x $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button) - |xT $ %{} :Leaf (:at 1512359490531) (:by |rJG4IHzWf) (:text |textarea) - |y $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |span) - |z $ %{} :Leaf (:at 1699376304318) (:by |rJG4IHzWf) (:text |img) - |zD $ %{} :Leaf (:at 1699376397556) (:by |rJG4IHzWf) (:text |a) - |x $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |>>) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |<>) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |b $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |button) + |d $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |textarea) + |f $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |span) + |h $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |img) + |j $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |a) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.comp.space) - |r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.comp.space) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<) - |y $ %{} :Expr (:at 1507461845717) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |=<) + |f $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1507461855480) (:by |root) (:text |reel.comp.reel) - |r $ %{} :Leaf (:at 1507461856264) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1507461856484) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel.comp.reel) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1507461858342) (:by |root) (:text |comp-reel) - |yj $ %{} :Expr (:at 1521954061310) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-reel) + |h $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1528011501932) (:by |root) (:text |respo-alerts.config) - |r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1521954065004) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.config) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?) - |yr $ %{} :Expr (:at 1528046388897) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |dev?) + |j $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1572780507556) (:by |rJG4IHzWf) (:text |respo-alerts.core) - |r $ %{} :Leaf (:at 1528046393355) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1528046393530) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.core) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |y $ %{} :Leaf (:at 1572781113437) (:by |rJG4IHzWf) (:text |comp-modal) - |yT $ %{} :Leaf (:at 1572887228743) (:by |rJG4IHzWf) (:text |comp-modal-menu) - |yj $ %{} :Leaf (:at 1584861562854) (:by |rJG4IHzWf) (:text |use-alert) - |yr $ %{} :Leaf (:at 1584861737518) (:by |rJG4IHzWf) (:text |use-confirm) - |yv $ %{} :Leaf (:at 1584861739869) (:by |rJG4IHzWf) (:text |use-prompt) - |yx $ %{} :Leaf (:at 1590941698856) (:by |rJG4IHzWf) (:text |use-modal) - |yy $ %{} :Leaf (:at 1590941704098) (:by |rJG4IHzWf) (:text |use-modal-menu) - |z $ %{} :Leaf (:at 1669214876382) (:by |rJG4IHzWf) (:text |use-drawer) - |yv $ %{} :Expr (:at 1528046426765) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-modal) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-modal-menu) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |use-alert) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |use-confirm) + |b $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |use-prompt) + |d $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |use-modal) + |f $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |use-modal-menu) + |h $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |use-drawer) + |l $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1528046431144) (:by |root) (:text |respo.comp.inspect) - |r $ %{} :Leaf (:at 1528046431994) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1528046432205) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.comp.inspect) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1528046434619) (:by |root) (:text |comp-inspect) - |yx $ %{} :Expr (:at 1534869224871) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-inspect) + |n $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1534869240208) (:by |rJG4IHzWf) (:text |respo-alerts.style) - |r $ %{} :Leaf (:at 1534869229688) (:by |rJG4IHzWf) (:text |:as) - |v $ %{} :Leaf (:at 1534869230486) (:by |rJG4IHzWf) (:text |style) - |yy $ %{} :Expr (:at 1644774070075) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.style) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style) + |p $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774071871) (:by |rJG4IHzWf) (:text "|\"@calcit/std") - |j $ %{} :Leaf (:at 1644774073200) (:by |rJG4IHzWf) (:text |:refer) - |r $ %{} :Expr (:at 1644774076091) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"@calcit/std") + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774077428) (:by |rJG4IHzWf) (:text |rand-int) - |z $ %{} :Expr (:at 1702666354491) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |rand-int) + |r $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666360311) (:by |rJG4IHzWf) (:text |respo-alerts.trigger) - |b $ %{} :Leaf (:at 1702666361024) (:by |rJG4IHzWf) (:text |:refer) - |h $ %{} :Expr (:at 1702666361234) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.trigger) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666365229) (:by |rJG4IHzWf) (:text |comp-trigger) - |zD $ %{} :Expr (:at 1702667145424) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-trigger) + |t $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667145424) (:by |rJG4IHzWf) (:text |respo-alerts.trigger) - |b $ %{} :Leaf (:at 1702667145424) (:by |rJG4IHzWf) (:text |:refer) - |h $ %{} :Expr (:at 1702667145424) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.trigger) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667145424) (:by |rJG4IHzWf) (:text |comp-trigger) - |respo-alerts.config $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-trigger) + :examples $ [] + |respo-alerts.config $ %{} :FileEntry :defs $ {} |dev? $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1546400633729) (:by |root) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400633729) (:by |root) (:text |def) - |j $ %{} :Leaf (:at 1546400633729) (:by |root) (:text |dev?) - |r $ %{} :Expr (:at 1651286268497) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |def) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |dev?) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1651286269992) (:by |rJG4IHzWf) (:text |=) - |b $ %{} :Leaf (:at 1651286271003) (:by |rJG4IHzWf) (:text "|\"dev") - |h $ %{} :Expr (:at 1651286272083) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1651286275705) (:by |rJG4IHzWf) (:text |get-env) - |b $ %{} :Leaf (:at 1651286291523) (:by |rJG4IHzWf) (:text "|\"mode") - |h $ %{} :Leaf (:at 1651286293296) (:by |rJG4IHzWf) (:text "|\"release") + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |=) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"dev") + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |get-env) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"mode") + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"release") + :examples $ [] |site $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1612705702222) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text |def) - |j $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text |site) - |r $ %{} :Expr (:at 1612705702222) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |def) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |site) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1612705702222) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text |:dev-ui) - |j $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text "|\"http://localhost:8100/main-fonts.css") - |r $ %{} :Expr (:at 1612705702222) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:dev-ui) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"http://localhost:8100/main-fonts.css") + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text |:release-ui) - |j $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text "|\"http://cdn.tiye.me/favored-fonts/main-fonts.css") - |v $ %{} :Expr (:at 1612705702222) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:release-ui) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"http://cdn.tiye.me/favored-fonts/main-fonts.css") + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text |:cdn-url) - |j $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text "|\"http://cdn.tiye.me/calcit-workflow/") - |x $ %{} :Expr (:at 1612705702222) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:cdn-url) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"http://cdn.tiye.me/calcit-workflow/") + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1612705716001) (:by |rJG4IHzWf) (:text "|\"Alerts") - |y $ %{} :Expr (:at 1612705702222) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"Alerts") + |d $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text |:icon) - |j $ %{} :Leaf (:at 1612705721187) (:by |rJG4IHzWf) (:text "|\"http://cdn.tiye.me/logo/respo.png") - |yT $ %{} :Expr (:at 1612705702222) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:icon) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"http://cdn.tiye.me/logo/respo.png") + |f $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705702222) (:by |rJG4IHzWf) (:text |:storage-key) - |j $ %{} :Leaf (:at 1612705724441) (:by |rJG4IHzWf) (:text "|\"respo-alerts") + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:storage-key) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"respo-alerts") + :examples $ [] :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1528011148175) (:by |root) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528011148175) (:by |root) (:text |ns) - |j $ %{} :Leaf (:at 1528011148175) (:by |root) (:text |respo-alerts.config) - |respo-alerts.core $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |ns) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |respo-alerts.config) + :examples $ [] + |respo-alerts.core $ %{} :FileEntry :defs $ {} |%alert-actions $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1696060111626) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060113675) (:by |rJG4IHzWf) (:text |defrecord!) - |b $ %{} :Leaf (:at 1696060111626) (:by |rJG4IHzWf) (:text |%alert-actions) - |h $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defrecord!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |%alert-actions) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |:render) - |b $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:render) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1696060132300) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060135069) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060136888) (:by |rJG4IHzWf) (:text |self) - |P $ %{} :Expr (:at 1696060137285) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1696060140600) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060141915) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060142772) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060146313) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060188225) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Leaf (:at 1696060148128) (:by |rJG4IHzWf) (:text |node) - |l $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |:show) - |b $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |?) - |l $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |text) - |e $ %{} :Expr (:at 1696060154459) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060155706) (:by |rJG4IHzWf) (:text |tag-match) - |b $ %{} :Leaf (:at 1696060160421) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1696060161153) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1696060161307) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060162450) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060162997) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060164059) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060181458) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Expr (:at 1696060168070) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Expr (:at 1696060168070) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |some?) - |b $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |text) - |h $ %{} :Expr (:at 1696060168070) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060168070) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |true) - |o $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |:text) - |q $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |text) - |l $ %{} :Expr (:at 1696060168070) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060168070) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060168070) (:by |rJG4IHzWf) (:text |true) - |o $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |text) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |text) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |true) + |b $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:text) + |d $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |text) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |true) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |:close) - |b $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:close) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060192549) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060194749) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060195332) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060196038) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696060196789) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060199593) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060200374) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060201335) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060202069) (:by |rJG4IHzWf) (:text |state) - |T $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060115109) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060115109) (:by |rJG4IHzWf) (:text |false) - |q $ %{} :Expr (:at 1702667284769) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |false) + |d $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667313530) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Expr (:at 1702667292362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667292362) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1702667292362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667292362) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667292362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667292362) (:by |rJG4IHzWf) (:text |tag-match) - |b $ %{} :Leaf (:at 1702667292362) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667292362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1702667292362) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667292362) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1702667292362) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1702667292362) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1702667292362) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Expr (:at 1702667309223) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667310225) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1702667311003) (:by |rJG4IHzWf) (:text |state) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + :examples $ [] |%confirm-actions $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1696060831317) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060833170) (:by |rJG4IHzWf) (:text |defrecord!) - |b $ %{} :Leaf (:at 1696060831317) (:by |rJG4IHzWf) (:text |%confirm-actions) - |h $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |defrecord!) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |%confirm-actions) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |:render) - |b $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:render) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1696060837868) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060839357) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060847013) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060840914) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696060841593) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060843837) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060850737) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060851762) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060852474) (:by |rJG4IHzWf) (:text |state) - |o $ %{} :Leaf (:at 1699376134375) (:by |rJG4IHzWf) (:text |*next) - |P $ %{} :Leaf (:at 1696060853764) (:by |rJG4IHzWf) (:text |node) - |l $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |state) + |b $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |*next) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |node) + |Z $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |:show) - |b $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |next-task) - |h $ %{} :Expr (:at 1696060856499) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1696060858241) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060859646) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060860507) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Expr (:at 1696060862293) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060862293) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060862293) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060862293) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060862293) (:by |rJG4IHzWf) (:text |state) - |o $ %{} :Leaf (:at 1699376137656) (:by |rJG4IHzWf) (:text |*next-confirm-task) - |T $ %{} :Expr (:at 1696060866391) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1696060866872) (:by |rJG4IHzWf) (:text |do) - |T $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1699376157260) (:by |rJG4IHzWf) (:text |.set!) - |b $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |*next-confirm-task) - |h $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |next-task) - |b $ %{} :Expr (:at 1696060867991) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060867991) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060867991) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060867991) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060867991) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060867991) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060867991) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060867991) (:by |rJG4IHzWf) (:text |true) - |o $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:show) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |next-task) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |state) + |b $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |*next-confirm-task) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |do) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.set!) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |*next-confirm-task) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |next-task) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |true) + |b $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:text) + |d $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |nil) + |b $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |:close) - |b $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060871063) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1696060872700) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060874066) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060874932) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Expr (:at 1696060876967) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060876967) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060876967) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060876967) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060876967) (:by |rJG4IHzWf) (:text |state) - |o $ %{} :Leaf (:at 1699376142804) (:by |rJG4IHzWf) (:text |*next) - |T $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060834295) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060834295) (:by |rJG4IHzWf) (:text |false) - |q $ %{} :Expr (:at 1702667354806) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:show-with-text) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |next-task) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |state) + |b $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |*next-confirm-task) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |do) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |.set!) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |*next-confirm-task) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |next-task) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |true) + |b $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:text) + |d $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |text) + |d $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Expr (:at 1702667354806) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:close) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |state) + |b $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |*next) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |false) + |f $ %{} :Expr (:at 1767977189547) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:show?) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1702667354806) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667354806) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |tag-match) - |b $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667354806) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1702667354806) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Expr (:at 1702667354806) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767977189547) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1702667354806) (:by |rJG4IHzWf) (:text |state) + |T $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977189547) (:by |sync) (:text |state) + :examples $ [] |%drawer-actions $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1696060324807) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327248) (:by |rJG4IHzWf) (:text |defrecord!) - |b $ %{} :Leaf (:at 1696060324807) (:by |rJG4IHzWf) (:text |%drawer-actions) - |h $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defrecord!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |%drawer-actions) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |:render) - |b $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:render) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1696060332452) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060334573) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060338583) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060339436) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696060340213) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060343476) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060345744) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060347255) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060348927) (:by |rJG4IHzWf) (:text |state) - |P $ %{} :Leaf (:at 1696060351099) (:by |rJG4IHzWf) (:text |node) - |l $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |:show) - |b $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060352597) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060355345) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060356600) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060357457) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696060358010) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060359894) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060361387) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060362751) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060363484) (:by |rJG4IHzWf) (:text |state) - |T $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |true) - |o $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |true) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |:close) - |b $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:close) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060375818) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060377337) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060378796) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060379421) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696060381259) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060381259) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060381259) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060381259) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060381259) (:by |rJG4IHzWf) (:text |state) - |T $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060327979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060327979) (:by |rJG4IHzWf) (:text |false) - |q $ %{} :Expr (:at 1702667377522) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |false) + |d $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Expr (:at 1702667377522) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1702667377522) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667377522) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |tag-match) - |b $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667377522) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1702667377522) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Expr (:at 1702667377522) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1702667377522) (:by |rJG4IHzWf) (:text |state) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + :examples $ [] |%modal-actions $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1696061008729) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061010517) (:by |rJG4IHzWf) (:text |defrecord!) - |b $ %{} :Leaf (:at 1696061008729) (:by |rJG4IHzWf) (:text |%modal-actions) - |h $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defrecord!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |%modal-actions) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |:render) - |b $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:render) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061017576) (:by |rJG4IHzWf) (:text |tag-match) - |b $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1696061018654) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1696061019219) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061020317) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696061023011) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696061024203) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696061024868) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Leaf (:at 1696061026986) (:by |rJG4IHzWf) (:text |node) - |l $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |node) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |:show) - |b $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:show) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696061029512) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696061030948) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696061032581) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696061033983) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696061035639) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061035639) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696061035639) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696061035639) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696061035639) (:by |rJG4IHzWf) (:text |state) - |T $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |true) - |o $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |true) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |:close) - |b $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:close) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696061036582) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696061038083) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696061040572) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696061041306) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696061042999) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061042999) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696061042999) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696061042999) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696061042999) (:by |rJG4IHzWf) (:text |state) - |T $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696061011362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696061011362) (:by |rJG4IHzWf) (:text |false) - |q $ %{} :Expr (:at 1702667371297) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |false) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Expr (:at 1702667371297) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:show?) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1702667371297) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667371297) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |tag-match) - |b $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667371297) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1702667371297) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Expr (:at 1702667371297) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1702667371297) (:by |rJG4IHzWf) (:text |state) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |state) + :examples $ [] |%modal-menu-actions $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1696060928359) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060930113) (:by |rJG4IHzWf) (:text |defrecord!) - |b $ %{} :Leaf (:at 1696060928359) (:by |rJG4IHzWf) (:text |%modal-menu-actions) - |h $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defrecord!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |%modal-menu-actions) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |:render) - |b $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:render) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1696060935203) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060937359) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060939985) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060940346) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696060941912) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060943219) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060948876) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060949730) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060950548) (:by |rJG4IHzWf) (:text |state) - |P $ %{} :Leaf (:at 1696060952006) (:by |rJG4IHzWf) (:text |node) - |l $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |:show) - |b $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060953645) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060954845) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060957878) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060958824) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696060960317) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060960317) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060960317) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060960317) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060960317) (:by |rJG4IHzWf) (:text |state) - |T $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |true) - |o $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |true) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |:close) - |b $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:close) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060961622) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060963316) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060964878) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060965533) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696060967055) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060967055) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060967055) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060967055) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060967055) (:by |rJG4IHzWf) (:text |state) - |T $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060931051) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060931051) (:by |rJG4IHzWf) (:text |false) - |q $ %{} :Expr (:at 1702667382348) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |false) + |d $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Expr (:at 1702667382348) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1702667382348) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667382348) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |tag-match) - |b $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667382348) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1702667382348) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Expr (:at 1702667382348) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1702667382348) (:by |rJG4IHzWf) (:text |state) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + :examples $ [] |%prompt-actions $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1696060649190) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060651160) (:by |rJG4IHzWf) (:text |defrecord!) - |b $ %{} :Leaf (:at 1696060649190) (:by |rJG4IHzWf) (:text |%prompt-actions) - |h $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defrecord!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |%prompt-actions) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |:render) - |b $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:render) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1696060658706) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1696060663296) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060666596) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060664353) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1696060667734) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060669498) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060676059) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060676954) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060677873) (:by |rJG4IHzWf) (:text |state) - |o $ %{} :Leaf (:at 1699376217995) (:by |rJG4IHzWf) (:text |*next) - |P $ %{} :Leaf (:at 1696060679736) (:by |rJG4IHzWf) (:text |node) - |l $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |b $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |*next) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |:show) - |b $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |next-task) - |e $ %{} :Expr (:at 1696060685519) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060689252) (:by |rJG4IHzWf) (:text |tag-match) - |b $ %{} :Leaf (:at 1696060690227) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1696060692975) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1696060692975) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060692975) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060692975) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060692975) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060692975) (:by |rJG4IHzWf) (:text |state) - |o $ %{} :Leaf (:at 1699376220878) (:by |rJG4IHzWf) (:text |*next-prompt-task) - |b $ %{} :Expr (:at 1696060695605) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060695371) (:by |rJG4IHzWf) (:text |do) - |b $ %{} :Expr (:at 1696060697359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1699376269547) (:by |rJG4IHzWf) (:text |.set!) - |b $ %{} :Leaf (:at 1696060697359) (:by |rJG4IHzWf) (:text |*next-prompt-task) - |h $ %{} :Leaf (:at 1696060697359) (:by |rJG4IHzWf) (:text |next-task) - |h $ %{} :Expr (:at 1696060699009) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060699009) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060699009) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060699009) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060699009) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060699009) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060699009) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060699009) (:by |rJG4IHzWf) (:text |true) - |o $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |next-task) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |b $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |*next-prompt-task) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |do) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.set!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |*next-prompt-task) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |next-task) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |true) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |:close) - |b $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |self) - |b $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060711285) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1696060712906) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1696060714181) (:by |rJG4IHzWf) (:text |self) - |T $ %{} :Expr (:at 1696060714916) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Expr (:at 1696060716430) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060716430) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1696060716430) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1696060716430) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1696060716430) (:by |rJG4IHzWf) (:text |state) - |o $ %{} :Leaf (:at 1699376224242) (:by |rJG4IHzWf) (:text |*next) - |T $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060651960) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060651960) (:by |rJG4IHzWf) (:text |false) - |q $ %{} :Expr (:at 1702667337965) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:close) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |b $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |*next) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |false) + |d $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Expr (:at 1702667337965) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1702667337965) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667337965) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |tag-match) - |b $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |self) - |h $ %{} :Expr (:at 1702667337965) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |self) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1702667337965) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |:plugin) - |b $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |node) - |h $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |cursor) - |l $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |state) - |o $ %{} :Leaf (:at 1711044887229) (:by |rJG4IHzWf) (:text |*next) - |b $ %{} :Expr (:at 1702667337965) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:plugin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |node) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + |b $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |*next) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1702667337965) (:by |rJG4IHzWf) (:text |state) - |comp-alert-modal $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |state) + :examples $ [] + |comp-alert-modal $ %{} :CodeEntry (:doc "||Alert modal component. Shows a simple message dialog with a confirm button. Used internally by use-alert hook.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768330952) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |comp-alert-modal) - |n $ %{} :Expr (:at 1571768331737) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-alert-modal) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768332737) (:by |rJG4IHzWf) (:text |options) - |b $ %{} :Leaf (:at 1572190008463) (:by |rJG4IHzWf) (:text |show?) - |j $ %{} :Leaf (:at 1571768335333) (:by |rJG4IHzWf) (:text |on-read!) - |r $ %{} :Leaf (:at 1571768336667) (:by |rJG4IHzWf) (:text |on-close!) - |r $ %{} :Expr (:at 1571768796864) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-read!) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1571768797837) (:by |rJG4IHzWf) (:text |[]) - |L $ %{} :Expr (:at 1571768798490) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |[]) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768802354) (:by |rJG4IHzWf) (:text |effect-focus) - |j $ %{} :Expr (:at 1571768810367) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |effect-focus) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768810367) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1571768810367) (:by |rJG4IHzWf) (:text "|\".") - |r $ %{} :Leaf (:at 1571768810367) (:by |rJG4IHzWf) (:text |schema/confirm-button-name) - |r $ %{} :Leaf (:at 1572190019712) (:by |rJG4IHzWf) (:text |show?) - |P $ %{} :Expr (:at 1572189957327) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\".") + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |schema/confirm-button-name) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572189964484) (:by |rJG4IHzWf) (:text |effect-fade) - |j $ %{} :Leaf (:at 1572190065696) (:by |rJG4IHzWf) (:text |show?) - |T $ %{} :Expr (:at 1572189975263) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |effect-fade) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572189976222) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1572189977518) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572189978052) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1586278682293) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1586278686264) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1586278686674) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1586278687063) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1586278687313) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1586278689212) (:by |rJG4IHzWf) (:text |:position) - |j $ %{} :Leaf (:at 1586278693217) (:by |rJG4IHzWf) (:text |:absolute) - |T $ %{} :Expr (:at 1572189979204) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:position) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:absolute) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572189980224) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Leaf (:at 1572189982874) (:by |rJG4IHzWf) (:text |show?) - |T $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725864286) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704556830276) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704556832752) (:by |rJG4IHzWf) (:text |str-spaced) - |X $ %{} :Leaf (:at 1704558711560) (:by |rJG4IHzWf) (:text |css/fullscreen) - |Z $ %{} :Leaf (:at 1704558257171) (:by |rJG4IHzWf) (:text |css/center) - |a $ %{} :Leaf (:at 1704558257171) (:by |rJG4IHzWf) (:text |style-modal-backdrop) - |b $ %{} :Expr (:at 1704556833759) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/fullscreen) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/center) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-backdrop) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556834316) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704556835441) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704556915305) (:by |rJG4IHzWf) (:text |:backdrop-class) - |n $ %{} :Expr (:at 1657725903368) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725904561) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1657725905560) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556891082) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1657725905560) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704556892989) (:by |rJG4IHzWf) (:text |:backdrop-style) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-style) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |event) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |event) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |:event) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:event) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774779786) (:by |rJG4IHzWf) (:text |.!stopPropagation) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |event) - |v $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |.!stopPropagation) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |event) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |on-read!) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |d!) - |x $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-read!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1571768397543) (:by |rJG4IHzWf) (:text |on-close!) - |T $ %{} :Leaf (:at 1584782247410) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657725930896) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725933208) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704556818681) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704556821563) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1704556989109) (:by |rJG4IHzWf) (:text |style-modal-card) - |X $ %{} :Leaf (:at 1704556978246) (:by |rJG4IHzWf) (:text |css/global) - |Z $ %{} :Leaf (:at 1704557001005) (:by |rJG4IHzWf) (:text |css/column) - |b $ %{} :Expr (:at 1704556823160) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-card) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/global) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/column) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556823693) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704556824449) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704556916893) (:by |rJG4IHzWf) (:text |:card-class) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1657725929704) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556922836) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1657725929704) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704556923806) (:by |rJG4IHzWf) (:text |:card-style) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-style) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Leaf (:at 1612705435195) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1571768383345) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705443150) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768383345) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556927410) (:by |rJG4IHzWf) (:text |get) - |j $ %{} :Leaf (:at 1571768383345) (:by |rJG4IHzWf) (:text |options) - |n $ %{} :Leaf (:at 1704556928017) (:by |rJG4IHzWf) (:text |:text) - |r $ %{} :Leaf (:at 1571768383345) (:by |rJG4IHzWf) (:text "|\"Alert!") - |v $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Alert!") + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |8) - |x $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |8) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558821304) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1704558823134) (:by |rJG4IHzWf) (:text |css/row-parted) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/row-parted) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |span) - |j $ %{} :Expr (:at 1612710801960) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |span) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612710802420) (:by |rJG4IHzWf) (:text |{}) - |v $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Expr (:at 1657727486052) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1657727487892) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1657729083016) (:by |rJG4IHzWf) (:text |css/button) - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |schema/confirm-button-name) - |b $ %{} :Expr (:at 1704556851697) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/button) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |schema/confirm-button-name) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556852147) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704556854939) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704556918391) (:by |rJG4IHzWf) (:text |:confirm-class) - |t $ %{} :Expr (:at 1704556934166) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:confirm-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556937142) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1704556937403) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556937811) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704556938694) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704556955585) (:by |rJG4IHzWf) (:text |:confirm-style) - |v $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:confirm-style) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |on-read!) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |d!) - |v $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-read!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1571768400455) (:by |rJG4IHzWf) (:text |on-close!) - |T $ %{} :Leaf (:at 1584782255054) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705439033) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768328670) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556930828) (:by |rJG4IHzWf) (:text |get) - |j $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text |options) - |n $ %{} :Leaf (:at 1704556959044) (:by |rJG4IHzWf) (:text |:confirm-text) - |r $ %{} :Leaf (:at 1571768328670) (:by |rJG4IHzWf) (:text "|\"Read") - |t $ %{} :Expr (:at 1672067604294) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067604294) (:by |rJG4IHzWf) (:text |comp-esc-listener) - |b $ %{} :Leaf (:at 1672067604294) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Leaf (:at 1672067604294) (:by |rJG4IHzWf) (:text |on-close!) - |comp-confirm-modal $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:confirm-text) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Read") + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-esc-listener) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + :examples $ [] + quote $ comp-alert-modal + {} $ :text "|Hello World" + , show? on-read! on-close! + |comp-confirm-modal $ %{} :CodeEntry (:doc "||Confirm modal component. Shows a dialog with confirm and cancel buttons. Used internally by use-confirm hook.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768428549) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |comp-confirm-modal) - |n $ %{} :Expr (:at 1571768429676) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-confirm-modal) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768432799) (:by |rJG4IHzWf) (:text |options) - |b $ %{} :Leaf (:at 1572191961927) (:by |rJG4IHzWf) (:text |show?) - |j $ %{} :Leaf (:at 1571768436608) (:by |rJG4IHzWf) (:text |on-confirm!) - |r $ %{} :Leaf (:at 1571768438382) (:by |rJG4IHzWf) (:text |on-close!) - |r $ %{} :Expr (:at 1571768877319) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-confirm!) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1571768878324) (:by |rJG4IHzWf) (:text |[]) - |L $ %{} :Expr (:at 1571768879433) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |[]) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768879433) (:by |rJG4IHzWf) (:text |effect-focus) - |j $ %{} :Expr (:at 1571768887071) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |effect-focus) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768887071) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1571768887071) (:by |rJG4IHzWf) (:text "|\".") - |r $ %{} :Leaf (:at 1571768887071) (:by |rJG4IHzWf) (:text |schema/confirm-button-name) - |r $ %{} :Leaf (:at 1572191980529) (:by |rJG4IHzWf) (:text |show?) - |P $ %{} :Expr (:at 1572191936190) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\".") + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |schema/confirm-button-name) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191938679) (:by |rJG4IHzWf) (:text |effect-fade) - |j $ %{} :Leaf (:at 1572191944917) (:by |rJG4IHzWf) (:text |show?) - |T $ %{} :Expr (:at 1572191930168) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |effect-fade) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572191931619) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1572191931837) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191932179) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1586278704219) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1586278704219) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1586278704219) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1586278704219) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1586278704219) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1586278704219) (:by |rJG4IHzWf) (:text |:position) - |j $ %{} :Leaf (:at 1586278704219) (:by |rJG4IHzWf) (:text |:absolute) - |T $ %{} :Expr (:at 1572191965249) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:position) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:absolute) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572191965758) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Leaf (:at 1572191966219) (:by |rJG4IHzWf) (:text |show?) - |T $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657725997911) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726001011) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704558302365) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558302365) (:by |rJG4IHzWf) (:text |str-spaced) - |b $ %{} :Leaf (:at 1704558685410) (:by |rJG4IHzWf) (:text |css/fullscreen) - |h $ %{} :Leaf (:at 1704558302365) (:by |rJG4IHzWf) (:text |css/center) - |l $ %{} :Leaf (:at 1704558302365) (:by |rJG4IHzWf) (:text |style-modal-backdrop) - |o $ %{} :Expr (:at 1704558402972) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/fullscreen) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/center) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-backdrop) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558403375) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558404472) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558407905) (:by |rJG4IHzWf) (:text |:backdrop-class) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1657726012682) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726012682) (:by |rJG4IHzWf) (:text |:backdrop-style) - |b $ %{} :Leaf (:at 1657726012682) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1571768461424) (:by |rJG4IHzWf) (:text |on-close!) - |T $ %{} :Leaf (:at 1584783110966) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657726019151) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726025473) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704557055135) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704557056856) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1704557060512) (:by |rJG4IHzWf) (:text |css/global) - |P $ %{} :Leaf (:at 1704557063375) (:by |rJG4IHzWf) (:text |css/column) - |T $ %{} :Leaf (:at 1704557025576) (:by |rJG4IHzWf) (:text |style-modal-card) - |b $ %{} :Expr (:at 1704558269960) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/global) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/column) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-card) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558270342) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558271123) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558299487) (:by |rJG4IHzWf) (:text |:card-class) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1657726037785) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726037785) (:by |rJG4IHzWf) (:text |:card-style) - |b $ %{} :Leaf (:at 1657726037785) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Leaf (:at 1612705459759) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1571768446911) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705462774) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768446911) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768446911) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Leaf (:at 1571768446911) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Leaf (:at 1571768446911) (:by |rJG4IHzWf) (:text "|\"Confirm?") - |v $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Confirm?") + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |8) - |x $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |8) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558428925) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1704558431281) (:by |rJG4IHzWf) (:text |css/row-parted) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/row-parted) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |span) - |j $ %{} :Expr (:at 1612710528368) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |span) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612710529575) (:by |rJG4IHzWf) (:text |{}) - |v $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Expr (:at 1657727465203) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1657727467207) (:by |rJG4IHzWf) (:text |str-spaced) - |P $ %{} :Leaf (:at 1657727469710) (:by |rJG4IHzWf) (:text |css/button) - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |schema/confirm-button-name) - |b $ %{} :Expr (:at 1704558411272) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/button) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |schema/confirm-button-name) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558411768) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558415063) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558424103) (:by |rJG4IHzWf) (:text |:confirm-class) - |v $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:confirm-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |on-confirm!) - |j $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |d!) - |v $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-confirm!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1571768456589) (:by |rJG4IHzWf) (:text |on-close!) - |T $ %{} :Leaf (:at 1584783118645) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705465506) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768426797) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |:button-text) - |j $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Leaf (:at 1571768426797) (:by |rJG4IHzWf) (:text "|\"Confirm") - |t $ %{} :Expr (:at 1672067877199) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067877199) (:by |rJG4IHzWf) (:text |comp-esc-listener) - |b $ %{} :Leaf (:at 1672067877199) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Leaf (:at 1672067877199) (:by |rJG4IHzWf) (:text |on-close!) - |comp-drawer $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1669214735924) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:button-text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Confirm") + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-esc-listener) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + :examples $ [] + quote $ comp-confirm-modal + {} $ :text "|Are you sure?" + , show? on-confirm! on-close! + |comp-drawer $ %{} :CodeEntry (:doc "||Drawer component. Renders a sliding panel from the side with custom content via :render function in options.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214741895) (:by |rJG4IHzWf) (:text |defcomp) - |b $ %{} :Leaf (:at 1669214735924) (:by |rJG4IHzWf) (:text |comp-drawer) - |h $ %{} :Expr (:at 1669214735924) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-drawer) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214735924) (:by |rJG4IHzWf) (:text |options) - |a $ %{} :Leaf (:at 1669214745929) (:by |rJG4IHzWf) (:text |show?) - |g $ %{} :Leaf (:at 1669214753206) (:by |rJG4IHzWf) (:text |on-close) - |l $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |[]) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |[]) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217972277) (:by |rJG4IHzWf) (:text |effect-slide) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |effect-slide) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |merge) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:position) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:absolute) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:position) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:absolute) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:container-style) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:container-style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704558537355) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704558539360) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1704558541777) (:by |rJG4IHzWf) (:text |css/fullscreen) - |T $ %{} :Leaf (:at 1704558536990) (:by |rJG4IHzWf) (:text |style-drawer-backdrop) - |b $ %{} :Expr (:at 1704558545656) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/fullscreen) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-drawer-backdrop) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558546188) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558547052) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558550083) (:by |rJG4IHzWf) (:text |:backdrop-class) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:backdrop-style) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |options) - |l $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:on-click) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |let) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |event) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |event) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:event) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |e) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:event) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |.!stopPropagation) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |event) - |l $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |.!stopPropagation) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |event) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |on-close) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704558574934) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704558577159) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1704558588908) (:by |rJG4IHzWf) (:text |css/global) - |P $ %{} :Leaf (:at 1704558591537) (:by |rJG4IHzWf) (:text |css/column) - |T $ %{} :Leaf (:at 1704558581460) (:by |rJG4IHzWf) (:text |style-drawer-card) - |b $ %{} :Expr (:at 1704558597728) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/global) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/column) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-drawer-card) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558598715) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558599819) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558604124) (:by |rJG4IHzWf) (:text |:card-class) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |merge) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |0) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |options) - |l $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:on-click) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |nil) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |let) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |title) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |title) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:title) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |some?) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |title) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |title) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704559276740) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704559278721) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1704559280573) (:by |rJG4IHzWf) (:text |css/center) - |P $ %{} :Leaf (:at 1704559451722) (:by |rJG4IHzWf) (:text |css/font-fancy!) - |T $ %{} :Leaf (:at 1704559283950) (:by |rJG4IHzWf) (:text |style-modal-title) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/center) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/font-fancy!) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-title) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |<>) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |title) - |l $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |title) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |cond) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cond) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |some?) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:render) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |options) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:render) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:render) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |options) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |on-close) - |h $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:render) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |some?) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:render-body) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |options) - |b $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:render-body) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |:render-body) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |options) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |on-close) - |l $ %{} :Expr (:at 1669214738265) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text |true) - |b $ %{} :Leaf (:at 1669214738265) (:by |rJG4IHzWf) (:text "|\"TODO render body") - |l $ %{} :Expr (:at 1672067985286) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067985286) (:by |rJG4IHzWf) (:text |comp-esc-listener) - |b $ %{} :Leaf (:at 1672067985286) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Leaf (:at 1672067988803) (:by |rJG4IHzWf) (:text |on-close) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:render-body) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |true) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"TODO render body") + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-esc-listener) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + :examples $ [] + quote $ comp-drawer + {} (:title |Settings) + :render $ fn (on-close) + div ({}) (<> |Content) + , show? on-close |comp-esc-listener $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1672065364859) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672065367428) (:by |rJG4IHzWf) (:text |defcomp) - |b $ %{} :Leaf (:at 1672065364859) (:by |rJG4IHzWf) (:text |comp-esc-listener) - |h $ %{} :Expr (:at 1672065364859) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |comp-esc-listener) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672065364859) (:by |rJG4IHzWf) (:text |show?) - |b $ %{} :Leaf (:at 1672065364859) (:by |rJG4IHzWf) (:text |on-close!) - |l $ %{} :Expr (:at 1672067312201) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |on-close!) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1672067315096) (:by |rJG4IHzWf) (:text |[]) - |L $ %{} :Expr (:at 1672067316164) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |[]) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067319352) (:by |rJG4IHzWf) (:text |effect-keydown) - |T $ %{} :Expr (:at 1672065368948) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |effect-keydown) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067283686) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1672067284142) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067284519) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1672067284806) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067285688) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1672067287135) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067287517) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1672067287890) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067290464) (:by |rJG4IHzWf) (:text |:position) - |b $ %{} :Leaf (:at 1672067293163) (:by |rJG4IHzWf) (:text |:absolute) - |h $ %{} :Expr (:at 1672067294355) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:position) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:absolute) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067297081) (:by |rJG4IHzWf) (:text |:on-keydown) - |b $ %{} :Expr (:at 1672067297357) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:on-keydown) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067297660) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1672067298004) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067298498) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1672067300412) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1672067301441) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067853066) (:by |rJG4IHzWf) (:text |on-close!) - |b $ %{} :Leaf (:at 1672067861655) (:by |rJG4IHzWf) (:text |d!) - |comp-modal $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1572780619339) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |on-close!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d!) + :examples $ [] + |comp-modal $ %{} :CodeEntry (:doc "||Modal component. Renders a modal dialog with custom content via :render function in options.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780622489) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1572780619339) (:by |rJG4IHzWf) (:text |comp-modal) - |r $ %{} :Expr (:at 1572780619339) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-modal) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |1 $ %{} :Leaf (:at 1584849545917) (:by |rJG4IHzWf) (:text |options) - |5 $ %{} :Leaf (:at 1572780954826) (:by |rJG4IHzWf) (:text |show?) - |P $ %{} :Leaf (:at 1584849527865) (:by |rJG4IHzWf) (:text |on-close) - |v $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |[]) - |r $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |[]) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |effect-fade) - |j $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |show?) - |v $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |effect-fade) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1573545946638) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1573545948115) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1573545964169) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1573545964970) (:by |rJG4IHzWf) (:text |merge) - |T $ %{} :Expr (:at 1573545956447) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1573545956808) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1573545957446) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1573545959562) (:by |rJG4IHzWf) (:text |:position) - |j $ %{} :Leaf (:at 1573545963086) (:by |rJG4IHzWf) (:text |:absolute) - |j $ %{} :Expr (:at 1573545966088) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:position) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:absolute) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1573545994711) (:by |rJG4IHzWf) (:text |:container-style) - |j $ %{} :Leaf (:at 1573545982706) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:container-style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |show?) - |r $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657726651399) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726654403) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704558310035) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558310035) (:by |rJG4IHzWf) (:text |str-spaced) - |b $ %{} :Leaf (:at 1704558691935) (:by |rJG4IHzWf) (:text |css/fullscreen) - |h $ %{} :Leaf (:at 1704558310035) (:by |rJG4IHzWf) (:text |css/center) - |l $ %{} :Leaf (:at 1704558310035) (:by |rJG4IHzWf) (:text |style-modal-backdrop) - |o $ %{} :Expr (:at 1704560043273) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/fullscreen) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/center) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-backdrop) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704560044146) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704560045273) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704560049552) (:by |rJG4IHzWf) (:text |:backdrop-class) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1648744389542) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704560074667) (:by |rJG4IHzWf) (:text |:backdrop-style) - |b $ %{} :Leaf (:at 1648744389542) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |event) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |event) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |:event) - |j $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:event) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774420534) (:by |rJG4IHzWf) (:text |.!stopPropagation) - |j $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |event) - |x $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |.!stopPropagation) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |event) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |L $ %{} :Leaf (:at 1584849593774) (:by |rJG4IHzWf) (:text |on-close) - |j $ %{} :Leaf (:at 1584782923058) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657726669500) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726672527) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704557077349) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704557079497) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1704557082310) (:by |rJG4IHzWf) (:text |css/global) - |P $ %{} :Leaf (:at 1704557085397) (:by |rJG4IHzWf) (:text |css/column) - |T $ %{} :Leaf (:at 1704557076120) (:by |rJG4IHzWf) (:text |style-modal-card) - |b $ %{} :Expr (:at 1704560052362) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/global) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/column) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-card) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704560052362) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704560052362) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704560054109) (:by |rJG4IHzWf) (:text |:card-class) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |merge) - |t $ %{} :Expr (:at 1572796916629) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572796916983) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1572796917241) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572796920361) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1572796921059) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Expr (:at 1572781507157) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |0) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781508536) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Leaf (:at 1572781510441) (:by |rJG4IHzWf) (:text |options) - |w $ %{} :Expr (:at 1572781507157) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704560019507) (:by |rJG4IHzWf) (:text |get) - |j $ %{} :Leaf (:at 1572781510441) (:by |rJG4IHzWf) (:text |options) - |n $ %{} :Leaf (:at 1704560022866) (:by |rJG4IHzWf) (:text |:card-style) - |r $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-style) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1572780776614) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1572780776614) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Leaf (:at 1612705623238) (:by |rJG4IHzWf) (:text |nil) - |n $ %{} :Expr (:at 1572781291042) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781296307) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1572781296652) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1572781297144) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781297697) (:by |rJG4IHzWf) (:text |title) - |j $ %{} :Expr (:at 1572781298164) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |title) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781299051) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1572781299914) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1572781305249) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781310906) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1572781311212) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781311866) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1572781312639) (:by |rJG4IHzWf) (:text |title) - |r $ %{} :Expr (:at 1572781313370) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |title) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781313886) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1572781314132) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781314488) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1572781316678) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657729248688) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704559255004) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704559258331) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1704559261273) (:by |rJG4IHzWf) (:text |css/center) - |P $ %{} :Leaf (:at 1704559430606) (:by |rJG4IHzWf) (:text |css/font-fancy!) - |T $ %{} :Leaf (:at 1704559264866) (:by |rJG4IHzWf) (:text |style-modal-title) - |r $ %{} :Expr (:at 1572781323926) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/center) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/font-fancy!) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-title) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572781324267) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1572781325419) (:by |rJG4IHzWf) (:text |title) - |r $ %{} :Expr (:at 1591519320538) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |title) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1591519440157) (:by |rJG4IHzWf) (:text |cond) - |L $ %{} :Expr (:at 1591519324125) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cond) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1591519324989) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591519325717) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Expr (:at 1591519328529) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591519328529) (:by |rJG4IHzWf) (:text |:render) - |j $ %{} :Leaf (:at 1591519328529) (:by |rJG4IHzWf) (:text |options) - |j $ %{} :Expr (:at 1591519330699) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:render) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1591519330315) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591519330315) (:by |rJG4IHzWf) (:text |:render) - |j $ %{} :Leaf (:at 1591519330315) (:by |rJG4IHzWf) (:text |options) - |j $ %{} :Leaf (:at 1591519335982) (:by |rJG4IHzWf) (:text |on-close) - |P $ %{} :Expr (:at 1591519324125) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:render) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1591519324989) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591519325717) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Expr (:at 1591519328529) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591519341382) (:by |rJG4IHzWf) (:text |:render-body) - |j $ %{} :Leaf (:at 1591519328529) (:by |rJG4IHzWf) (:text |options) - |j $ %{} :Expr (:at 1591519330699) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:render-body) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1591519330315) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1591519342528) (:by |rJG4IHzWf) (:text |:render-body) - |j $ %{} :Leaf (:at 1591519330315) (:by |rJG4IHzWf) (:text |options) - |j $ %{} :Leaf (:at 1591519335982) (:by |rJG4IHzWf) (:text |on-close) - |h $ %{} :Expr (:at 1591519345036) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1612705629474) (:by |rJG4IHzWf) (:text |true) - |j $ %{} :Leaf (:at 1591519353962) (:by |rJG4IHzWf) (:text "|\"TODO render body") - |t $ %{} :Expr (:at 1672067961766) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067961766) (:by |rJG4IHzWf) (:text |comp-esc-listener) - |b $ %{} :Leaf (:at 1672067961766) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Leaf (:at 1672067966758) (:by |rJG4IHzWf) (:text |on-close) - |comp-modal-menu $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1572886971845) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:render-body) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |true) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"TODO render body") + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-esc-listener) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close) + :examples $ [] + quote $ comp-modal + {} (:title |Dialog) + :render $ fn (on-close) + div ({}) (<> |Content) + , show? on-close + |comp-modal-menu $ %{} :CodeEntry (:doc "||Modal menu component. Shows a modal dialog with a list of selectable items. Define items via :items in options.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976149) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1572886971845) (:by |rJG4IHzWf) (:text |comp-modal-menu) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-modal-menu) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584849810540) (:by |rJG4IHzWf) (:text |options) - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |show?) - |r $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |on-close!) - |v $ %{} :Leaf (:at 1584849867754) (:by |rJG4IHzWf) (:text |on-select!) - |v $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-select!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |[]) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |effect-fade) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |show?) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |effect-fade) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |show?) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657726727137) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726730109) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704558322092) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558322092) (:by |rJG4IHzWf) (:text |str-spaced) - |b $ %{} :Leaf (:at 1704558732872) (:by |rJG4IHzWf) (:text |css/fullscreen) - |h $ %{} :Leaf (:at 1704558322092) (:by |rJG4IHzWf) (:text |css/center) - |l $ %{} :Leaf (:at 1704558322092) (:by |rJG4IHzWf) (:text |style-modal-backdrop) - |o $ %{} :Expr (:at 1704558337392) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/fullscreen) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/center) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-backdrop) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558337771) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558338782) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558342296) (:by |rJG4IHzWf) (:text |:backdrop-class) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1648744426185) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1648744426185) (:by |rJG4IHzWf) (:text |:backdrop-style) - |b $ %{} :Leaf (:at 1648744426185) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |event) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |event) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:event) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:event) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774434792) (:by |rJG4IHzWf) (:text |.!stopPropagation) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |event) - |v $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |.!stopPropagation) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |event) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |on-close!) - |j $ %{} :Leaf (:at 1584783292564) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657726743904) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726753365) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704557124142) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704557126809) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1704557129503) (:by |rJG4IHzWf) (:text |css/global) - |P $ %{} :Leaf (:at 1704557131984) (:by |rJG4IHzWf) (:text |css/column) - |T $ %{} :Leaf (:at 1704557121906) (:by |rJG4IHzWf) (:text |style-modal-card) - |b $ %{} :Expr (:at 1704558346295) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/global) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/column) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-card) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558346771) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558350847) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558355677) (:by |rJG4IHzWf) (:text |:card-class) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |merge) - |v $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |0) - |x $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |0) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Leaf (:at 1612705641849) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |title) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |title) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:title) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |title) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |title) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1704557161344) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704557163780) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704558131537) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704558135506) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1704557169141) (:by |rJG4IHzWf) (:text |css/row-parted) - |b $ %{} :Leaf (:at 1704558139254) (:by |rJG4IHzWf) (:text |css/font-fancy!) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/row-parted) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/font-fancy!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1669911913388) (:by |rJG4IHzWf) (:text "|\"4px 8px") - |v $ %{} :Expr (:at 1572887573012) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"4px 8px") + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887573847) (:by |rJG4IHzWf) (:text |:color) - |j $ %{} :Expr (:at 1572887574208) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:color) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887575016) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1572887575488) (:by |rJG4IHzWf) (:text |0) - |r $ %{} :Leaf (:at 1572887575943) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1572887581252) (:by |rJG4IHzWf) (:text |70) - |n $ %{} :Expr (:at 1669911873662) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |0) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |0) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |70) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911875424) (:by |rJG4IHzWf) (:text |span) - |b $ %{} :Expr (:at 1729417788643) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |span) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1729417788954) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1572886976861) (:by |rJG4IHzWf) (:text |title) - |t $ %{} :Expr (:at 1669911882155) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |title) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911882155) (:by |rJG4IHzWf) (:text |span) - |b $ %{} :Expr (:at 1669911885719) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |span) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911886664) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669911887137) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911889291) (:by |rJG4IHzWf) (:text |:inner-text) - |b $ %{} :Leaf (:at 1669911895765) (:by |rJG4IHzWf) (:text "|\"Clear") - |g $ %{} :Expr (:at 1669911950146) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Clear") + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911952736) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1704559317152) (:by |rJG4IHzWf) (:text |style-clear) - |l $ %{} :Expr (:at 1669911918637) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-clear) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911921381) (:by |rJG4IHzWf) (:text |:on-click) - |b $ %{} :Expr (:at 1669911922192) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911922469) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1669911922821) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911923057) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1669911923515) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1669911934009) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911934009) (:by |rJG4IHzWf) (:text |on-select!) - |b $ %{} :Leaf (:at 1669911936876) (:by |rJG4IHzWf) (:text |nil) - |h $ %{} :Leaf (:at 1669911934009) (:by |rJG4IHzWf) (:text |d!) - |v $ %{} :Expr (:at 1572886976861) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-select!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572887010029) (:by |rJG4IHzWf) (:text |list->) - |L $ %{} :Expr (:at 1572887011579) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |list->) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887011268) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1572887012713) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1619601308592) (:by |rJG4IHzWf) (:text |->) - |T $ %{} :Expr (:at 1584849826494) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |->) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584849826084) (:by |rJG4IHzWf) (:text |:items) - |j $ %{} :Leaf (:at 1584849827798) (:by |rJG4IHzWf) (:text |options) - |j $ %{} :Expr (:at 1572887016379) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:items) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887016764) (:by |rJG4IHzWf) (:text |map) - |j $ %{} :Expr (:at 1572887017505) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |map) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887017779) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1572887018106) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906880307) (:by |rJG4IHzWf) (:text |info) - |r $ %{} :Expr (:at 1704906881370) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |info) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704906881989) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1704906882263) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1704906882417) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906883680) (:by |rJG4IHzWf) (:text |item) - |b $ %{} :Expr (:at 1704906883979) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |item) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906889141) (:by |rJG4IHzWf) (:text |cond) - |b $ %{} :Expr (:at 1704906889688) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cond) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1704906890769) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906894359) (:by |rJG4IHzWf) (:text |tuple?) - |b $ %{} :Leaf (:at 1704906895627) (:by |rJG4IHzWf) (:text |info) - |b $ %{} :Leaf (:at 1704907014985) (:by |rJG4IHzWf) (:text |info) - |h $ %{} :Expr (:at 1704906899425) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |tuple?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |info) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |info) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1704906901492) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906901195) (:by |rJG4IHzWf) (:text |map?) - |b $ %{} :Leaf (:at 1704906902384) (:by |rJG4IHzWf) (:text |info) - |b $ %{} :Expr (:at 1704906902952) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |map?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |info) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906903827) (:by |rJG4IHzWf) (:text |::) - |b $ %{} :Leaf (:at 1704906937784) (:by |rJG4IHzWf) (:text |:item) - |h $ %{} :Expr (:at 1704906938225) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |::) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:item) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906944329) (:by |rJG4IHzWf) (:text |&map:get) - |b $ %{} :Leaf (:at 1704907044818) (:by |rJG4IHzWf) (:text |info) - |h $ %{} :Leaf (:at 1704906949907) (:by |rJG4IHzWf) (:text |:value) - |l $ %{} :Expr (:at 1704906938225) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |&map:get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |info) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:value) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906944329) (:by |rJG4IHzWf) (:text |&map:get) - |b $ %{} :Leaf (:at 1704907047178) (:by |rJG4IHzWf) (:text |info) - |h $ %{} :Leaf (:at 1704906953786) (:by |rJG4IHzWf) (:text |:display) - |l $ %{} :Expr (:at 1704906958056) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |&map:get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |info) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:display) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906959786) (:by |rJG4IHzWf) (:text |true) - |b $ %{} :Expr (:at 1704906960884) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |true) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906961401) (:by |rJG4IHzWf) (:text |raise) - |b $ %{} :Leaf (:at 1704906969965) (:by |rJG4IHzWf) (:text "|\"Unknown menu item") - |T $ %{} :Expr (:at 1704906971308) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |raise) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Unknown menu item") + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704906976839) (:by |rJG4IHzWf) (:text |tag-match) - |L $ %{} :Leaf (:at 1704906977971) (:by |rJG4IHzWf) (:text |item) - |T $ %{} :Expr (:at 1704906978708) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |item) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1704906980043) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704906981392) (:by |rJG4IHzWf) (:text |:item) - |h $ %{} :Leaf (:at 1704906982978) (:by |rJG4IHzWf) (:text |v) - |l $ %{} :Leaf (:at 1704906989723) (:by |rJG4IHzWf) (:text |l) - |T $ %{} :Expr (:at 1572887021634) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:item) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |v) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |l) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887022160) (:by |rJG4IHzWf) (:text |[]) - |f $ %{} :Leaf (:at 1704906991846) (:by |rJG4IHzWf) (:text |v) - |r $ %{} :Expr (:at 1572887025757) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |[]) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |v) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887029446) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1572887030725) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887030324) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1572887120507) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657728831781) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1704559341456) (:by |rJG4IHzWf) (:text |style-menu-item) - |r $ %{} :Expr (:at 1572887361789) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-menu-item) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887363936) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1572887369674) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887370222) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1572887370503) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887370688) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1572887371201) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1572887372969) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887385308) (:by |rJG4IHzWf) (:text |on-select!) - |j $ %{} :Leaf (:at 1572887376161) (:by |rJG4IHzWf) (:text |item) - |r $ %{} :Leaf (:at 1572887377384) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1572887046677) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-select!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |item) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887047067) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1572887047905) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887051620) (:by |rJG4IHzWf) (:text |string?) - |f $ %{} :Leaf (:at 1704907023264) (:by |rJG4IHzWf) (:text |l) - |r $ %{} :Expr (:at 1572887074145) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |string?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |l) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887074507) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1704907024003) (:by |rJG4IHzWf) (:text |l) - |v $ %{} :Leaf (:at 1704907024771) (:by |rJG4IHzWf) (:text |l) - |t $ %{} :Expr (:at 1672067998953) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067998953) (:by |rJG4IHzWf) (:text |comp-esc-listener) - |b $ %{} :Leaf (:at 1672067998953) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Leaf (:at 1672068004536) (:by |rJG4IHzWf) (:text |on-close!) - |comp-prompt-modal $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |l) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |l) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-esc-listener) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + :examples $ [] + quote $ comp-modal-menu + {} (:title |Choose) + :items $ [] (:: :item |a |A) (:: :item |b |B) + , show? on-close! on-select! + |comp-prompt-modal $ %{} :CodeEntry (:doc "||Prompt modal component. Shows a dialog with text input field and validation. Used internally by use-prompt hook.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768578532) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |comp-prompt-modal) - |n $ %{} :Expr (:at 1571768579915) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-prompt-modal) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768581422) (:by |rJG4IHzWf) (:text |states) - |j $ %{} :Leaf (:at 1571768583713) (:by |rJG4IHzWf) (:text |options) - |n $ %{} :Leaf (:at 1572192015970) (:by |rJG4IHzWf) (:text |show?) - |r $ %{} :Leaf (:at 1571768594981) (:by |rJG4IHzWf) (:text |on-finish!) - |v $ %{} :Leaf (:at 1571768740380) (:by |rJG4IHzWf) (:text |on-close!) - |r $ %{} :Expr (:at 1571768657882) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-finish!) + |b $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1571768658565) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1571768658798) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Expr (:at 1571768683377) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768683377) (:by |rJG4IHzWf) (:text |initial-text) - |j $ %{} :Expr (:at 1571768683377) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |initial-text) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705174594) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768683377) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768683377) (:by |rJG4IHzWf) (:text |:initial) - |j $ %{} :Leaf (:at 1571768683377) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Leaf (:at 1571768683377) (:by |rJG4IHzWf) (:text "|\"") - |L $ %{} :Expr (:at 1584783150008) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:initial) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"") + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584783151766) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1584783152508) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584783153891) (:by |rJG4IHzWf) (:text |:cursor) - |j $ %{} :Leaf (:at 1584783154687) (:by |rJG4IHzWf) (:text |states) - |T $ %{} :Expr (:at 1571768658987) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768660411) (:by |rJG4IHzWf) (:text |state) - |j $ %{} :Expr (:at 1571768660756) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705172564) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768663289) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1571768667891) (:by |rJG4IHzWf) (:text |:data) - |T $ %{} :Leaf (:at 1571768666199) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1571768675615) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:data) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768675615) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1571768675615) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768675615) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Leaf (:at 1571768675615) (:by |rJG4IHzWf) (:text |initial-text) - |v $ %{} :Expr (:at 1571768675615) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |initial-text) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768675615) (:by |rJG4IHzWf) (:text |:failure) - |j $ %{} :Leaf (:at 1571768675615) (:by |rJG4IHzWf) (:text |nil) - |j $ %{} :Expr (:at 1571768696323) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:failure) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768696323) (:by |rJG4IHzWf) (:text |text) - |j $ %{} :Expr (:at 1571768696323) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |text) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705176706) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768696323) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768696323) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Leaf (:at 1571768696323) (:by |rJG4IHzWf) (:text |state) - |r $ %{} :Leaf (:at 1571768696323) (:by |rJG4IHzWf) (:text |initial-text) - |r $ %{} :Expr (:at 1572089033556) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |initial-text) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089036617) (:by |rJG4IHzWf) (:text |check-submit!) - |j $ %{} :Expr (:at 1572089038083) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |check-submit!) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572089040804) (:by |rJG4IHzWf) (:text |fn) - |L $ %{} :Expr (:at 1572089041082) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089042459) (:by |rJG4IHzWf) (:text |d!) - |T $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |validator) - |j $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |validator) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |:validator) - |j $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |options) - |j $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:validator) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |result) - |j $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |result) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |fn?) - |j $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |validator) - |r $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |validator) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |validator) - |j $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |text) - |v $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |result) - |r $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584783146063) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1584783148625) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |assoc) - |j $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |state) - |r $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |:failure) - |v $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |result) - |v $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |do) - |j $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |on-finish!) - |j $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |text) - |r $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |on-close!) - |j $ %{} :Leaf (:at 1584783159609) (:by |rJG4IHzWf) (:text |d!) - |v $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584783160926) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1584783162211) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1612710696576) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |validator) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |text) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |result) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:failure) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |result) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |do) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-finish!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |text) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1612710698185) (:by |rJG4IHzWf) (:text |->) - |L $ %{} :Leaf (:at 1612710699735) (:by |rJG4IHzWf) (:text |state) - |T $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |->) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |assoc) - |r $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |:text) - |v $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |nil) - |j $ %{} :Expr (:at 1572089037252) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |assoc) - |x $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |:failure) - |y $ %{} :Leaf (:at 1572089037252) (:by |rJG4IHzWf) (:text |nil) - |T $ %{} :Expr (:at 1571768925317) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:failure) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1571768926706) (:by |rJG4IHzWf) (:text |[]) - |L $ %{} :Expr (:at 1571768927090) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |[]) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768931340) (:by |rJG4IHzWf) (:text |effect-select) - |j $ %{} :Expr (:at 1571768938519) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |effect-select) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768938519) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1571768938519) (:by |rJG4IHzWf) (:text "|\".") - |r $ %{} :Leaf (:at 1571768938519) (:by |rJG4IHzWf) (:text |schema/input-box-name) - |r $ %{} :Leaf (:at 1572192060575) (:by |rJG4IHzWf) (:text |show?) - |P $ %{} :Expr (:at 1572192033771) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\".") + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |schema/input-box-name) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572192047407) (:by |rJG4IHzWf) (:text |effect-fade) - |j $ %{} :Leaf (:at 1572192040377) (:by |rJG4IHzWf) (:text |show?) - |T $ %{} :Expr (:at 1572192023939) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |effect-fade) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572192024674) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1572192024873) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572192025193) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1586278722080) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1586278722080) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1586278722080) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1586278722080) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1586278722080) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1586278722080) (:by |rJG4IHzWf) (:text |:position) - |j $ %{} :Leaf (:at 1586278722080) (:by |rJG4IHzWf) (:text |:absolute) - |T $ %{} :Expr (:at 1572192027156) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:position) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:absolute) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572192029268) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Leaf (:at 1572192030088) (:by |rJG4IHzWf) (:text |show?) - |T $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657726544785) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726547410) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704558228407) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704558234106) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1704558696583) (:by |rJG4IHzWf) (:text |css/fullscreen) - |P $ %{} :Leaf (:at 1704558241645) (:by |rJG4IHzWf) (:text |css/center) - |T $ %{} :Leaf (:at 1704558235686) (:by |rJG4IHzWf) (:text |style-modal-backdrop) - |b $ %{} :Expr (:at 1704558444919) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/fullscreen) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/center) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-backdrop) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558445285) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558446168) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558448963) (:by |rJG4IHzWf) (:text |:backdrop-class) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726582594) (:by |rJG4IHzWf) (:text |merge) - |h $ %{} :Expr (:at 1657726585023) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726585023) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657726585023) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657726585023) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1657726585023) (:by |rJG4IHzWf) (:text "|\"32px") - |w $ %{} :Expr (:at 1648744406907) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:line-height) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"32px") + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1648744406907) (:by |rJG4IHzWf) (:text |:backdrop-style) - |b $ %{} :Leaf (:at 1648744406907) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:backdrop-style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |d!) - |n $ %{} :Expr (:at 1571768707039) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768708146) (:by |rJG4IHzWf) (:text |on-close!) - |j $ %{} :Leaf (:at 1584783165648) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584783166878) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1584783168136) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1612710720430) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1612710776057) (:by |rJG4IHzWf) (:text |->) - |L $ %{} :Leaf (:at 1612710776688) (:by |rJG4IHzWf) (:text |state) - |T $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |->) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |assoc) - |x $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:text) - |y $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |nil) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |assoc) - |yT $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:failure) - |yj $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:failure) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657728678204) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657728683841) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704557100173) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704557102198) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1704557105250) (:by |rJG4IHzWf) (:text |css/global) - |P $ %{} :Leaf (:at 1704557107342) (:by |rJG4IHzWf) (:text |css/column) - |T $ %{} :Leaf (:at 1704557099514) (:by |rJG4IHzWf) (:text |style-modal-card) - |b $ %{} :Expr (:at 1704558450835) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/global) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/column) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-modal-card) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558451212) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558452163) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558458571) (:by |rJG4IHzWf) (:text |:card-class) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1589215428627) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1589215428627) (:by |rJG4IHzWf) (:text |:card-style) - |j $ %{} :Leaf (:at 1589215428627) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:card-style) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Leaf (:at 1612705492947) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1571768652104) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705506679) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768652104) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768652104) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Leaf (:at 1571768652104) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Leaf (:at 1571768652104) (:by |rJG4IHzWf) (:text "|\"Type in text") - |v $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Type in text") + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |8) - |x $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |8) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |props) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |props) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:value) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |text) - |v $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:value) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |text) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:on-input) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-input) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584783174320) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1584783175411) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |assoc) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |state) - |r $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:text) - |v $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:value) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |e) - |x $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:value) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:on-keydown) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-keydown) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1651286177352) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1651286178673) (:by |rJG4IHzWf) (:text |cond) - |T $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cond) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |and) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |and) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |not=) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |229) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |not=) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |229) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:keycode) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:keycode) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |=) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |=) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:key) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text "|\"Enter") - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:key) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Enter") + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:multiline?) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:multiline?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |when) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |when) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |.-metaKey) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |.-metaKey) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:event) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |e) - |v $ %{} :Expr (:at 1572089050862) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:event) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089051325) (:by |rJG4IHzWf) (:text |check-submit!) - |j $ %{} :Leaf (:at 1572089052710) (:by |rJG4IHzWf) (:text |d!) - |x $ %{} :Expr (:at 1572089056800) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |check-submit!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089056800) (:by |rJG4IHzWf) (:text |check-submit!) - |j $ %{} :Leaf (:at 1572089056800) (:by |rJG4IHzWf) (:text |d!) - |X $ %{} :Expr (:at 1651286195011) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |check-submit!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1651286204653) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1651286204653) (:by |rJG4IHzWf) (:text |=) - |b $ %{} :Expr (:at 1651286204653) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |=) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1651286204653) (:by |rJG4IHzWf) (:text |:key) - |b $ %{} :Leaf (:at 1651286204653) (:by |rJG4IHzWf) (:text |e) - |h $ %{} :Leaf (:at 1651286207262) (:by |rJG4IHzWf) (:text "|\"Escape") - |b $ %{} :Expr (:at 1651286212986) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:key) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Escape") + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1651286212986) (:by |rJG4IHzWf) (:text |on-close!) - |b $ %{} :Leaf (:at 1651286212986) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Expr (:at 1651286181381) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1651286182117) (:by |rJG4IHzWf) (:text |true) - |b $ %{} :Leaf (:at 1651286183195) (:by |rJG4IHzWf) (:text |nil) - |y $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |true) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:placeholder) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:placeholder) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705503061) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:placeholder) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text "|\"") - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:placeholder) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"") + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:multiline?) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:multiline?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |textarea) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |textarea) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |merge) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |props) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |props) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657728704986) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657728709191) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1657728725449) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657728727133) (:by |rJG4IHzWf) (:text |str-spaced) - |b $ %{} :Leaf (:at 1657728727604) (:by |rJG4IHzWf) (:text |schema/input-box-name) - |h $ %{} :Leaf (:at 1657728732994) (:by |rJG4IHzWf) (:text |css/textarea) - |l $ %{} :Expr (:at 1704557885307) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |schema/input-box-name) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/textarea) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704557883796) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704557886792) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704557891081) (:by |rJG4IHzWf) (:text |:input-class) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:input-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |merge) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:width) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text "|\"100%") - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:width) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"100%") + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:min-height) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |120) - |v $ %{} :Expr (:at 1629739544412) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:min-height) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |120) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1629739546488) (:by |rJG4IHzWf) (:text |:max-height) - |j $ %{} :Leaf (:at 1629739550682) (:by |rJG4IHzWf) (:text "|\"50vh") - |v $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:max-height) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"50vh") + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704557829573) (:by |rJG4IHzWf) (:text |get) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |options) - |n $ %{} :Leaf (:at 1704557830340) (:by |rJG4IHzWf) (:text |:input-style) - |v $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:input-style) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |input) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |input) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |merge) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |props) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |props) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657728742517) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657728745144) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1657728747160) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657728747160) (:by |rJG4IHzWf) (:text |str-spaced) - |b $ %{} :Leaf (:at 1657728747160) (:by |rJG4IHzWf) (:text |schema/input-box-name) - |h $ %{} :Leaf (:at 1657728750840) (:by |rJG4IHzWf) (:text |css/input) - |l $ %{} :Expr (:at 1704557894348) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |schema/input-box-name) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/input) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704557894694) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704557895493) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704557898761) (:by |rJG4IHzWf) (:text |:input-class) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:input-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |merge) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:width) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text "|\"100%") - |v $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:width) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"100%") + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704557825177) (:by |rJG4IHzWf) (:text |get) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |options) - |n $ %{} :Leaf (:at 1704557825861) (:by |rJG4IHzWf) (:text |:input-style) - |y $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:input-style) + |d $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |16) - |yT $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |=<) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |16) + |f $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558164622) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1704558166052) (:by |rJG4IHzWf) (:text |css/row-parted) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/row-parted) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612710626463) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |failure) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |failure) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:failure) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |state) - |r $ %{} :Expr (:at 1612710636591) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:failure) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1612710639150) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1612710639749) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612710640475) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1612710642153) (:by |rJG4IHzWf) (:text |failure) - |T $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |failure) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |span) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |span) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |merge) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |ui/flex) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |ui/flex) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:color) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:red) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:color) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:red) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:line-height) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text "|\"20px") - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:line-height) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"20px") + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |failure) - |j $ %{} :Expr (:at 1612710645260) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:inner-text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |failure) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612710645260) (:by |rJG4IHzWf) (:text |span) - |j $ %{} :Expr (:at 1612710664765) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |span) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612710665398) (:by |rJG4IHzWf) (:text |{}) - |v $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |button) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |button) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1657727442461) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657727442461) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1704558467386) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704558470142) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1657727442461) (:by |rJG4IHzWf) (:text |css/button) - |b $ %{} :Expr (:at 1704558471803) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |css/button) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558472679) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1704558474072) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1704558477947) (:by |rJG4IHzWf) (:text |:confirm-class) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:confirm-class) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-click) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1572089024138) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572089047161) (:by |rJG4IHzWf) (:text |check-submit!) - |j $ %{} :Leaf (:at 1572089030428) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |check-submit!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |<>) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705498742) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1571768576496) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |:button-text) - |j $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Leaf (:at 1571768576496) (:by |rJG4IHzWf) (:text "|\"Finish") - |t $ %{} :Expr (:at 1672067887534) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067887534) (:by |rJG4IHzWf) (:text |comp-esc-listener) - |b $ %{} :Leaf (:at 1672067887534) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Leaf (:at 1672067887534) (:by |rJG4IHzWf) (:text |on-close!) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:button-text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text "|\"Finish") + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-esc-listener) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-close!) + :examples $ [] + quote $ comp-prompt-modal states + {} (:text "|Enter name") (:placeholder |name) + , show? on-finish! on-close! |effect-fade $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1572190067755) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190073531) (:by |rJG4IHzWf) (:text |defeffect) - |j $ %{} :Leaf (:at 1572190067755) (:by |rJG4IHzWf) (:text |effect-fade) - |r $ %{} :Expr (:at 1572190067755) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defeffect) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |effect-fade) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190076245) (:by |rJG4IHzWf) (:text |show?) - |v $ %{} :Expr (:at 1572190076712) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572190080952) (:by |rJG4IHzWf) (:text |action) - |T $ %{} :Leaf (:at 1572190079707) (:by |rJG4IHzWf) (:text |el) - |j $ %{} :Leaf (:at 1612168006169) (:by |rJG4IHzWf) (:text |at-place?) - |x $ %{} :Expr (:at 1572190085048) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |action) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |at-place?) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774211506) (:by |rJG4IHzWf) (:text |case-default) - |j $ %{} :Leaf (:at 1572190571317) (:by |rJG4IHzWf) (:text |action) - |n $ %{} :Leaf (:at 1644774221819) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1572190571734) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |case-default) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |action) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190577294) (:by |rJG4IHzWf) (:text |:before-update) - |j $ %{} :Expr (:at 1572190972755) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:before-update) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191135306) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Leaf (:at 1572191136492) (:by |rJG4IHzWf) (:text |show?) - |p $ %{} :Leaf (:at 1619601075207) (:by |rJG4IHzWf) (:text |nil) - |v $ %{} :Expr (:at 1572886928706) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572886929532) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1572886931952) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886932697) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Expr (:at 1572886933811) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |some?) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572886933811) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |j $ %{} :Leaf (:at 1572886933811) (:by |rJG4IHzWf) (:text |el) - |T $ %{} :Expr (:at 1572191137834) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191138714) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1572191141306) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1572191141306) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191141306) (:by |rJG4IHzWf) (:text |target) - |j $ %{} :Expr (:at 1572191141306) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191141306) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |j $ %{} :Leaf (:at 1572191141306) (:by |rJG4IHzWf) (:text |el) - |r $ %{} :Expr (:at 1572191149601) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191154563) (:by |rJG4IHzWf) (:text |cloned) - |j $ %{} :Expr (:at 1572191155268) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774396597) (:by |rJG4IHzWf) (:text |.!cloneNode) - |j $ %{} :Leaf (:at 1572191158974) (:by |rJG4IHzWf) (:text |target) - |r $ %{} :Leaf (:at 1572191160058) (:by |rJG4IHzWf) (:text |true) - |v $ %{} :Expr (:at 1572191310286) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.!cloneNode) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |true) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191310911) (:by |rJG4IHzWf) (:text |style) - |j $ %{} :Expr (:at 1572191312280) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191314770) (:by |rJG4IHzWf) (:text |.-style) - |j $ %{} :Leaf (:at 1572191316157) (:by |rJG4IHzWf) (:text |cloned) - |x $ %{} :Expr (:at 1572454859384) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-style) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454861345) (:by |rJG4IHzWf) (:text |card-style) - |j $ %{} :Expr (:at 1572454861629) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454863045) (:by |rJG4IHzWf) (:text |->) - |j $ %{} :Leaf (:at 1572454879153) (:by |rJG4IHzWf) (:text |cloned) - |r $ %{} :Leaf (:at 1572454873231) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |v $ %{} :Leaf (:at 1572454881653) (:by |rJG4IHzWf) (:text |.-style) - |p $ %{} :Expr (:at 1572454967310) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |->) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-style) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1644774141089) (:by |rJG4IHzWf) (:text |js/document.body.appendChild) - |r $ %{} :Leaf (:at 1572454976416) (:by |rJG4IHzWf) (:text |cloned) - |v $ %{} :Expr (:at 1572191185027) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |js/document.body.appendChild) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1612705397870) (:by |rJG4IHzWf) (:text |js/setTimeout) - |T $ %{} :Expr (:at 1572191188094) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |js/setTimeout) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572191188620) (:by |rJG4IHzWf) (:text |fn) - |L $ %{} :Expr (:at 1572191188869) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1572191178909) (:by |rJG4IHzWf) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191180028) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1572191183059) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191183059) (:by |rJG4IHzWf) (:text |.-opacity) - |j $ %{} :Leaf (:at 1572191183059) (:by |rJG4IHzWf) (:text |style) - |r $ %{} :Leaf (:at 1572191194009) (:by |rJG4IHzWf) (:text |0) - |b $ %{} :Expr (:at 1572455054277) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-opacity) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572455054277) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1572455054277) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572455054277) (:by |rJG4IHzWf) (:text |.-transitionDuration) - |j $ %{} :Leaf (:at 1572455054277) (:by |rJG4IHzWf) (:text |card-style) - |r $ %{} :Leaf (:at 1572970041208) (:by |rJG4IHzWf) (:text "|\"240ms") - |j $ %{} :Expr (:at 1572454919385) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transitionDuration) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"240ms") + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454919385) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1572454919385) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454919385) (:by |rJG4IHzWf) (:text |.-transform) - |j $ %{} :Leaf (:at 1572454919385) (:by |rJG4IHzWf) (:text |card-style) - |r $ %{} :Leaf (:at 1572455180702) (:by |rJG4IHzWf) (:text "|\"scale(0.94) translate(0px,-20px)") - |j $ %{} :Leaf (:at 1612705401627) (:by |rJG4IHzWf) (:text |10) - |x $ %{} :Expr (:at 1572191235356) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transform) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"scale(0.94) translate(0px,-20px)") + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |10) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705383407) (:by |rJG4IHzWf) (:text |js/setTimeout) - |j $ %{} :Expr (:at 1572191239312) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |js/setTimeout) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191239614) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1572191239880) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |r $ %{} :Expr (:at 1572191241421) (:by |rJG4IHzWf) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774401891) (:by |rJG4IHzWf) (:text |.!remove) - |j $ %{} :Leaf (:at 1572191253033) (:by |rJG4IHzWf) (:text |cloned) - |r $ %{} :Leaf (:at 1612710923333) (:by |rJG4IHzWf) (:text |240) - |v $ %{} :Expr (:at 1572190579281) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.!remove) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |240) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190581047) (:by |rJG4IHzWf) (:text |:update) - |j $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:update) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |show?) - |r $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |target) - |j $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |j $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |el) - |b $ %{} :Expr (:at 1572454371761) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454379829) (:by |rJG4IHzWf) (:text |card-style) - |j $ %{} :Expr (:at 1572454394806) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454396236) (:by |rJG4IHzWf) (:text |->) - |j $ %{} :Leaf (:at 1572454397371) (:by |rJG4IHzWf) (:text |target) - |r $ %{} :Leaf (:at 1572454401387) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |v $ %{} :Leaf (:at 1572454407497) (:by |rJG4IHzWf) (:text |.-style) - |j $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |->) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-style) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |style) - |j $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |.-style) - |j $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |target) - |r $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-style) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |.-opacity) - |j $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |style) - |r $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |0) - |t $ %{} :Expr (:at 1572454412008) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-opacity) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454412791) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1572454414108) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454463677) (:by |rJG4IHzWf) (:text |.-transform) - |j $ %{} :Leaf (:at 1572454479081) (:by |rJG4IHzWf) (:text |card-style) - |r $ %{} :Leaf (:at 1572455181992) (:by |rJG4IHzWf) (:text "|\"scale(0.94) translate(0px,-20px)") - |v $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transform) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"scale(0.94) translate(0px,-20px)") + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705368253) (:by |rJG4IHzWf) (:text |js/setTimeout) - |j $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |js/setTimeout) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |n $ %{} :Expr (:at 1572191115796) (:by |rJG4IHzWf) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191115796) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1572191115796) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572191115796) (:by |rJG4IHzWf) (:text |.-transitionDuration) - |j $ %{} :Leaf (:at 1572191115796) (:by |rJG4IHzWf) (:text |style) - |r $ %{} :Leaf (:at 1572970044770) (:by |rJG4IHzWf) (:text "|\"240ms") - |p $ %{} :Expr (:at 1572454593379) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transitionDuration) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"240ms") + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454593379) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1572454593379) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454593379) (:by |rJG4IHzWf) (:text |.-transitionDuration) - |j $ %{} :Leaf (:at 1572454596965) (:by |rJG4IHzWf) (:text |card-style) - |r $ %{} :Leaf (:at 1572970046138) (:by |rJG4IHzWf) (:text "|\"240ms") - |r $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transitionDuration) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"240ms") + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1572190974658) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |.-opacity) - |j $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |style) - |r $ %{} :Leaf (:at 1572190974658) (:by |rJG4IHzWf) (:text |1) - |v $ %{} :Expr (:at 1572454437822) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-opacity) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |1) + |d $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454437822) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1572454437822) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572454465640) (:by |rJG4IHzWf) (:text |.-transform) - |j $ %{} :Leaf (:at 1572454480255) (:by |rJG4IHzWf) (:text |card-style) - |r $ %{} :Leaf (:at 1572454751308) (:by |rJG4IHzWf) (:text "|\"scale(1) translate(0px,0px)") - |r $ %{} :Leaf (:at 1612710933170) (:by |rJG4IHzWf) (:text |10) - |v $ %{} :Leaf (:at 1619601082749) (:by |rJG4IHzWf) (:text |nil) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transform) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"scale(1) translate(0px,0px)") + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |10) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |nil) + :examples $ [] |effect-focus $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1571768814528) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768817395) (:by |rJG4IHzWf) (:text |defeffect) - |j $ %{} :Leaf (:at 1571768814528) (:by |rJG4IHzWf) (:text |effect-focus) - |r $ %{} :Expr (:at 1571768814528) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defeffect) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |effect-focus) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768825148) (:by |rJG4IHzWf) (:text |query) - |j $ %{} :Leaf (:at 1572190023451) (:by |rJG4IHzWf) (:text |show?) - |x $ %{} :Expr (:at 1571768830619) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |query) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768831324) (:by |rJG4IHzWf) (:text |action) - |j $ %{} :Leaf (:at 1571768832203) (:by |rJG4IHzWf) (:text |el) - |r $ %{} :Leaf (:at 1612168073182) (:by |rJG4IHzWf) (:text |at-place?) - |y $ %{} :Expr (:at 1572190033758) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |action) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |at-place?) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1644774157599) (:by |rJG4IHzWf) (:text |case-default) - |L $ %{} :Leaf (:at 1612705331744) (:by |rJG4IHzWf) (:text |action) - |P $ %{} :Leaf (:at 1644774159023) (:by |rJG4IHzWf) (:text |nil) - |T $ %{} :Expr (:at 1572190044916) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |case-default) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |action) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572190047642) (:by |rJG4IHzWf) (:text |:update) - |T $ %{} :Expr (:at 1572190048758) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:update) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1572190052725) (:by |rJG4IHzWf) (:text |when) - |L $ %{} :Leaf (:at 1572190050557) (:by |rJG4IHzWf) (:text |show?) - |T $ %{} :Expr (:at 1571768832919) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |when) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571769045705) (:by |rJG4IHzWf) (:text |focus-element!) - |j $ %{} :Leaf (:at 1571768838853) (:by |rJG4IHzWf) (:text |query) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |focus-element!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |query) + :examples $ [] |effect-keydown $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1672067320640) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067322837) (:by |rJG4IHzWf) (:text |defeffect) - |b $ %{} :Leaf (:at 1672067320640) (:by |rJG4IHzWf) (:text |effect-keydown) - |h $ %{} :Expr (:at 1672067320640) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defeffect) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |effect-keydown) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |l $ %{} :Expr (:at 1672067328354) (:by |rJG4IHzWf) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067330416) (:by |rJG4IHzWf) (:text |action) - |b $ %{} :Leaf (:at 1672067331467) (:by |rJG4IHzWf) (:text |el) - |h $ %{} :Leaf (:at 1672067333456) (:by |rJG4IHzWf) (:text |at?) - |o $ %{} :Expr (:at 1672067334186) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |action) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |at?) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067374072) (:by |rJG4IHzWf) (:text |case-default) - |X $ %{} :Leaf (:at 1672067376491) (:by |rJG4IHzWf) (:text |action) - |Z $ %{} :Leaf (:at 1672067377009) (:by |rJG4IHzWf) (:text |nil) - |b $ %{} :Expr (:at 1672067382388) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |case-default) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |action) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067341052) (:by |rJG4IHzWf) (:text |:mount) - |b $ %{} :Expr (:at 1672067425338) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:mount) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1672067426606) (:by |rJG4IHzWf) (:text |let) - |T $ %{} :Expr (:at 1672067427244) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1672067427431) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1672067428012) (:by |rJG4IHzWf) (:text |f) - |L $ %{} :Expr (:at 1672067432059) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |f) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067432059) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1672067432059) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067432059) (:by |rJG4IHzWf) (:text |event) - |l $ %{} :Expr (:at 1672594819975) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |event) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1672594820718) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1672594837065) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1672594838368) (:by |rJG4IHzWf) (:text |=) - |T $ %{} :Expr (:at 1672594820998) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |=) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |b $ %{} :Leaf (:at 1672594833896) (:by |rJG4IHzWf) (:text |.-key) - |h $ %{} :Leaf (:at 1672594830002) (:by |rJG4IHzWf) (:text |event) - |b $ %{} :Leaf (:at 1672594865156) (:by |rJG4IHzWf) (:text "|\"Escape") - |T $ %{} :Expr (:at 1672067805716) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.-key) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |event) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Escape") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1672067806464) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1672067806692) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1672067806825) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067807982) (:by |rJG4IHzWf) (:text |new-event) - |b $ %{} :Expr (:at 1672067808828) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |new-event) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067810889) (:by |rJG4IHzWf) (:text |new) - |b $ %{} :Leaf (:at 1672067814074) (:by |rJG4IHzWf) (:text |js/MouseEvent) - |h $ %{} :Expr (:at 1672067815079) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |new) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/MouseEvent) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067816099) (:by |rJG4IHzWf) (:text |.-type) - |b $ %{} :Leaf (:at 1672067816884) (:by |rJG4IHzWf) (:text |event) - |l $ %{} :Leaf (:at 1672067819432) (:by |rJG4IHzWf) (:text |event) - |T $ %{} :Expr (:at 1672067744353) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.-type) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |event) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |event) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1672067769501) (:by |rJG4IHzWf) (:text |.!dispatchEvent) - |b $ %{} :Leaf (:at 1672067751530) (:by |rJG4IHzWf) (:text |el) - |h $ %{} :Leaf (:at 1672067822977) (:by |rJG4IHzWf) (:text |new-event) - |b $ %{} :Expr (:at 1672067434471) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067434471) (:by |rJG4IHzWf) (:text |js/window.addEventListener) - |b $ %{} :Leaf (:at 1672067434471) (:by |rJG4IHzWf) (:text "|\"keydown") - |h $ %{} :Leaf (:at 1672067435734) (:by |rJG4IHzWf) (:text |f) - |h $ %{} :Expr (:at 1672067447145) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1672067453557) (:by |rJG4IHzWf) (:text |aset) - |T $ %{} :Leaf (:at 1672067449305) (:by |rJG4IHzWf) (:text |el) - |b $ %{} :Leaf (:at 1672067461417) (:by |rJG4IHzWf) (:text "|\"_listener") - |h $ %{} :Leaf (:at 1672067463131) (:by |rJG4IHzWf) (:text |f) - |h $ %{} :Expr (:at 1672067416087) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067418397) (:by |rJG4IHzWf) (:text |:unmount) - |X $ %{} :Expr (:at 1672067621287) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1672067635261) (:by |rJG4IHzWf) (:text |let) - |H $ %{} :Expr (:at 1672067635503) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1672067636305) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067635996) (:by |rJG4IHzWf) (:text |f) - |b $ %{} :Expr (:at 1672067639778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067642243) (:by |rJG4IHzWf) (:text |aget) - |b $ %{} :Leaf (:at 1672067639778) (:by |rJG4IHzWf) (:text |el) - |h $ %{} :Leaf (:at 1672067639778) (:by |rJG4IHzWf) (:text "|\"_listener") - |L $ %{} :Expr (:at 1672067624842) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067629030) (:by |rJG4IHzWf) (:text |js/window.removeEventListener) - |b $ %{} :Leaf (:at 1672067624842) (:by |rJG4IHzWf) (:text "|\"keydown") - |h $ %{} :Leaf (:at 1672067624842) (:by |rJG4IHzWf) (:text |f) - |T $ %{} :Expr (:at 1672067467430) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1672067469075) (:by |rJG4IHzWf) (:text |aset) - |b $ %{} :Leaf (:at 1672067470055) (:by |rJG4IHzWf) (:text |el) - |h $ %{} :Leaf (:at 1672067471763) (:by |rJG4IHzWf) (:text "|\"_listener") - |l $ %{} :Leaf (:at 1672067473591) (:by |rJG4IHzWf) (:text |nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.!dispatchEvent) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |new-event) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/window.addEventListener) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"keydown") + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |f) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |aset) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"_listener") + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |f) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:unmount) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |f) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |aget) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"_listener") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/window.removeEventListener) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"keydown") + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |f) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |aset) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"_listener") + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |nil) + :examples $ [] |effect-select $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1571768942707) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768945163) (:by |rJG4IHzWf) (:text |defeffect) - |j $ %{} :Leaf (:at 1571768942707) (:by |rJG4IHzWf) (:text |effect-select) - |r $ %{} :Expr (:at 1571768942707) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defeffect) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |effect-select) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768946978) (:by |rJG4IHzWf) (:text |query) - |j $ %{} :Leaf (:at 1572192063876) (:by |rJG4IHzWf) (:text |show?) - |x $ %{} :Expr (:at 1571768949302) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |query) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768950140) (:by |rJG4IHzWf) (:text |action) - |j $ %{} :Leaf (:at 1571768950673) (:by |rJG4IHzWf) (:text |el) - |r $ %{} :Leaf (:at 1572088894174) (:by |rJG4IHzWf) (:text |*local) - |yT $ %{} :Expr (:at 1572192069202) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |action) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |*local) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774174815) (:by |rJG4IHzWf) (:text |case-default) - |b $ %{} :Leaf (:at 1612705478511) (:by |rJG4IHzWf) (:text |action) - |f $ %{} :Leaf (:at 1644774176616) (:by |rJG4IHzWf) (:text |nil) - |j $ %{} :Expr (:at 1572192069202) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |case-default) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |action) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572192069202) (:by |rJG4IHzWf) (:text |:update) - |j $ %{} :Expr (:at 1572192069202) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:update) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572192069202) (:by |rJG4IHzWf) (:text |when) - |j $ %{} :Leaf (:at 1572192069202) (:by |rJG4IHzWf) (:text |show?) - |r $ %{} :Expr (:at 1572192069202) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |when) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572192073091) (:by |rJG4IHzWf) (:text |select-element!) - |j $ %{} :Leaf (:at 1572192069202) (:by |rJG4IHzWf) (:text |query) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |select-element!) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |query) + :examples $ [] |effect-slide $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1669217973009) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217977226) (:by |rJG4IHzWf) (:text |defeffect) - |b $ %{} :Leaf (:at 1669217973009) (:by |rJG4IHzWf) (:text |effect-slide) - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defeffect) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |effect-slide) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |show?) - |l $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |action) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |el) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |at-place?) - |o $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |action) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |at-place?) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |case-default) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |action) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |nil) - |l $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |case-default) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |action) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |:before-update) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:before-update) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |nil) - |l $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |nil) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |some?) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |some?) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |el) - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |let) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |target) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |el) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |cloned) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.!cloneNode) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |target) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |true) - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.!cloneNode) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |true) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |style) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-style) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |cloned) - |l $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-style) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |card-style) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |->) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |cloned) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |l $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-style) - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |->) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-style) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |js/document.body.appendChild) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |cloned) - |l $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |js/document.body.appendChild) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |js/setTimeout) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |js/setTimeout) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-opacity) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |style) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-opacity) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-transitionDuration) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |card-style) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text "|\"240ms") - |o $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transitionDuration) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"240ms") + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-transform) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |card-style) - |h $ %{} :Leaf (:at 1669307726432) (:by |rJG4IHzWf) (:text "|\"translate(100%,0px)") - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |10) - |o $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transform) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"translate(100%,0px)") + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |10) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |js/setTimeout) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |js/setTimeout) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.!remove) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |cloned) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |240) - |o $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.!remove) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cloned) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |240) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |:update) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:update) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |let) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |target) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |el) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |el) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |card-style) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |->) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |target) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-firstElementChild) - |l $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-style) - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |->) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-firstElementChild) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-style) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |style) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-style) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |target) - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-style) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |target) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-opacity) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |style) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-opacity) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-transform) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |card-style) - |h $ %{} :Leaf (:at 1669307732126) (:by |rJG4IHzWf) (:text "|\"translate(100%,0px)") - |o $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transform) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"translate(100%,0px)") + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |js/setTimeout) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |js/setTimeout) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |h $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-transitionDuration) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |style) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text "|\"240ms") - |l $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transitionDuration) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"240ms") + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-transitionDuration) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |card-style) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text "|\"240ms") - |o $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transitionDuration) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"240ms") + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-opacity) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |style) - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |1) - |q $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-opacity) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |1) + |d $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1669217974675) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |set!) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |.-transform) - |b $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |card-style) - |h $ %{} :Leaf (:at 1669218239607) (:by |rJG4IHzWf) (:text "|\"translate(0px,0px)") - |h $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |10) - |l $ %{} :Leaf (:at 1669217974675) (:by |rJG4IHzWf) (:text |nil) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |.-transform) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card-style) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"translate(0px,0px)") + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |10) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |nil) + :examples $ [] |style-clear $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1669911957243) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911960306) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1704559310072) (:by |rJG4IHzWf) (:text |style-clear) - |h $ %{} :Expr (:at 1669911957243) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defstyle) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style-clear) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911961540) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669911961955) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704559320465) (:by |rJG4IHzWf) (:text "|\"&") - |b $ %{} :Expr (:at 1669911963548) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"&") + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911963548) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669911963548) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911963548) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1669911963548) (:by |rJG4IHzWf) (:text |10) - |h $ %{} :Expr (:at 1669911968164) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:font-size) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |10) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911970931) (:by |rJG4IHzWf) (:text |:cursor) - |b $ %{} :Leaf (:at 1669911971976) (:by |rJG4IHzWf) (:text |:pointer) - |l $ %{} :Expr (:at 1669911985926) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:pointer) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911987070) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Expr (:at 1669911987798) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:color) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911988392) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1669912019857) (:by |rJG4IHzWf) (:text |270) - |h $ %{} :Leaf (:at 1669911996145) (:by |rJG4IHzWf) (:text |80) - |l $ %{} :Leaf (:at 1669911996957) (:by |rJG4IHzWf) (:text |70) - |o $ %{} :Expr (:at 1669911999449) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |270) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |80) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |70) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669912001946) (:by |rJG4IHzWf) (:text |:opacity) - |b $ %{} :Leaf (:at 1669912004039) (:by |rJG4IHzWf) (:text |0.6) - |h $ %{} :Expr (:at 1669911975962) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:opacity) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0.6) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704559322269) (:by |rJG4IHzWf) (:text "|\"&:hover") - |b $ %{} :Expr (:at 1669911979779) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"&:hover") + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911980132) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669911980458) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669911984480) (:by |rJG4IHzWf) (:text |:opacity) - |b $ %{} :Leaf (:at 1669911984769) (:by |rJG4IHzWf) (:text |1) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:opacity) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |1) + :examples $ [] |style-drawer-backdrop $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1669215220104) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215228411) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1704558534465) (:by |rJG4IHzWf) (:text |style-drawer-backdrop) - |h $ %{} :Expr (:at 1669215222359) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defstyle) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style-drawer-backdrop) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215222359) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669215222359) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558525424) (:by |rJG4IHzWf) (:text "|\"&") - |b $ %{} :Expr (:at 1704558516341) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"&") + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704558517456) (:by |rJG4IHzWf) (:text |merge) - |T $ %{} :Leaf (:at 1669215222359) (:by |rJG4IHzWf) (:text |style/backdrop) - |b $ %{} :Expr (:at 1704558520193) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |merge) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style/backdrop) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558520193) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1704558520193) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558520193) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1704558520193) (:by |rJG4IHzWf) (:text |0) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + :examples $ [] |style-drawer-card $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1669215131921) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215131921) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1704558573123) (:by |rJG4IHzWf) (:text |style-drawer-card) - |h $ %{} :Expr (:at 1669215131921) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defstyle) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style-drawer-card) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215131921) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669215131921) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704558566479) (:by |rJG4IHzWf) (:text "|\"&") - |b $ %{} :Expr (:at 1669215131921) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"&") + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215131921) (:by |rJG4IHzWf) (:text |merge) - |b $ %{} :Leaf (:at 1704558562672) (:by |rJG4IHzWf) (:text |) - |h $ %{} :Leaf (:at 1669215131921) (:by |rJG4IHzWf) (:text |style/card) - |o $ %{} :Expr (:at 1669215131921) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |merge) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style/card) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215131921) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669215131921) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215131921) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1669215131921) (:by |rJG4IHzWf) (:text "|\"32px") - |h $ %{} :Expr (:at 1669215144958) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:line-height) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"32px") + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215146046) (:by |rJG4IHzWf) (:text |:height) - |b $ %{} :Leaf (:at 1669215148695) (:by |rJG4IHzWf) (:text "|\"100%") - |l $ %{} :Expr (:at 1669215179566) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:height) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"100%") + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215179566) (:by |rJG4IHzWf) (:text |:max-height) - |b $ %{} :Leaf (:at 1669215182876) (:by |rJG4IHzWf) (:text "|\"100vh") - |o $ %{} :Expr (:at 1669215258304) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:max-height) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"100vh") + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669215260974) (:by |rJG4IHzWf) (:text |:margin-right) - |b $ %{} :Leaf (:at 1669215261312) (:by |rJG4IHzWf) (:text |0) - |q $ %{} :Expr (:at 1669218026392) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:margin-right) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |d $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669218031111) (:by |rJG4IHzWf) (:text |:border-radius) - |b $ %{} :Leaf (:at 1669218033367) (:by |rJG4IHzWf) (:text "|\"0px") - |s $ %{} :Expr (:at 1669218049231) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:border-radius) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"0px") + |f $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669218049231) (:by |rJG4IHzWf) (:text |:max-width) - |b $ %{} :Leaf (:at 1669218056607) (:by |rJG4IHzWf) (:text "|\"50vw") - |t $ %{} :Expr (:at 1669218160841) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:max-width) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"50vw") + |h $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669218162341) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1669218168392) (:by |rJG4IHzWf) (:text "|\"24vw") - |u $ %{} :Expr (:at 1669218445508) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:width) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"24vw") + |j $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669218450144) (:by |rJG4IHzWf) (:text |:min-width) - |b $ %{} :Leaf (:at 1669218502476) (:by |rJG4IHzWf) (:text |360) - |v $ %{} :Expr (:at 1669307796181) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:min-width) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |360) + |l $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669307802261) (:by |rJG4IHzWf) (:text |:box-shadow) - |b $ %{} :Leaf (:at 1669308197581) (:by |rJG4IHzWf) (:text "|\"-2px 0px 24px 2px hsla(0,0%,0%,0.2)") - |w $ %{} :Expr (:at 1669308310571) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:box-shadow) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"-2px 0px 24px 2px hsla(0,0%,0%,0.2)") + |n $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669308341493) (:by |rJG4IHzWf) (:text |:transition-property) - |b $ %{} :Leaf (:at 1669308358003) (:by |rJG4IHzWf) (:text "|\"opacity,transform") + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:transition-property) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"opacity,transform") + :examples $ [] |style-menu-item $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1572887128864) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657728813270) (:by |rJG4IHzWf) (:text |defstyle) - |j $ %{} :Leaf (:at 1704559336444) (:by |rJG4IHzWf) (:text |style-menu-item) - |r $ %{} :Expr (:at 1657728815887) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defstyle) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style-menu-item) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1657728816537) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1657728817919) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704559329086) (:by |rJG4IHzWf) (:text "|\"&") - |T $ %{} :Expr (:at 1572887128864) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"&") + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887132362) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1572887133250) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887527868) (:by |rJG4IHzWf) (:text |:border-top) - |j $ %{} :Expr (:at 1572887145855) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:border-top) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887146341) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1572887150064) (:by |rJG4IHzWf) (:text "|\"1px solid ") - |r $ %{} :Expr (:at 1572887150736) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |str) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"1px solid ") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887151201) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1572887151562) (:by |rJG4IHzWf) (:text |0) - |r $ %{} :Leaf (:at 1572887151835) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1572887152229) (:by |rJG4IHzWf) (:text |90) - |r $ %{} :Expr (:at 1572887153519) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |90) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887154901) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1572887158353) (:by |rJG4IHzWf) (:text "|\"0 16px") - |y $ %{} :Expr (:at 1572887168770) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"0 16px") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887169883) (:by |rJG4IHzWf) (:text |:cursor) - |j $ %{} :Leaf (:at 1572887171305) (:by |rJG4IHzWf) (:text |:pointer) - |yT $ %{} :Expr (:at 1572887171700) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:pointer) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887173126) (:by |rJG4IHzWf) (:text |:white-space) - |j $ %{} :Leaf (:at 1572887174660) (:by |rJG4IHzWf) (:text |:nowrap) - |yj $ %{} :Expr (:at 1572887496696) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:white-space) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:nowrap) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1572887501763) (:by |rJG4IHzWf) (:text |:line-height) - |j $ %{} :Leaf (:at 1572969187690) (:by |rJG4IHzWf) (:text "|\"40px") - |b $ %{} :Expr (:at 1657729153364) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:line-height) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"40px") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704559330781) (:by |rJG4IHzWf) (:text "|\"&:hover") - |b $ %{} :Expr (:at 1657729156834) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"&:hover") + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657729157198) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657729158219) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657729161112) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1657729161328) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:background-color) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657729161696) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1657729162886) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1657729163139) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1657729176973) (:by |rJG4IHzWf) (:text |97) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |97) + :examples $ [] |style-modal-backdrop $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1657725871593) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725873371) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1704558214549) (:by |rJG4IHzWf) (:text |style-modal-backdrop) - |h $ %{} :Expr (:at 1657725871593) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defstyle) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style-modal-backdrop) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725875135) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657725876660) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1704558225166) (:by |rJG4IHzWf) (:text "|\"&") - |T $ %{} :Leaf (:at 1657725875990) (:by |rJG4IHzWf) (:text |style/backdrop) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"&") + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |style/backdrop) + :examples $ [] |style-modal-card $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1657725946312) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725948785) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1704556986355) (:by |rJG4IHzWf) (:text |style-modal-card) - |h $ %{} :Expr (:at 1657725946312) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defstyle) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style-modal-card) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725950964) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657725951320) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704556971815) (:by |rJG4IHzWf) (:text "|\"&") - |b $ %{} :Expr (:at 1657725955582) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"&") + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725955582) (:by |rJG4IHzWf) (:text |merge) - |h $ %{} :Leaf (:at 1657725955582) (:by |rJG4IHzWf) (:text |style/card) - |o $ %{} :Expr (:at 1657725955582) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |merge) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style/card) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725955582) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657725955582) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725955582) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1657725955582) (:by |rJG4IHzWf) (:text "|\"32px") - |h $ %{} :Expr (:at 1669308150819) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:line-height) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"32px") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669308152884) (:by |rJG4IHzWf) (:text |:box-shadow) - |b $ %{} :Leaf (:at 1669308186874) (:by |rJG4IHzWf) (:text "|\"0px 2px 24px 0px hsl(0,0%,0%,0.2)") - |l $ %{} :Expr (:at 1669308365270) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:box-shadow) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"0px 2px 24px 0px hsl(0,0%,0%,0.2)") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669308365270) (:by |rJG4IHzWf) (:text |:transition-property) - |b $ %{} :Leaf (:at 1669308365270) (:by |rJG4IHzWf) (:text "|\"opacity,transform") + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:transition-property) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"opacity,transform") + :examples $ [] |style-modal-title $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1657729235666) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657729237227) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1704559252562) (:by |rJG4IHzWf) (:text |style-modal-title) - |h $ %{} :Expr (:at 1657729235666) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defstyle) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style-modal-title) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657729239208) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657729239567) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704559426206) (:by |rJG4IHzWf) (:text "|\"&") - |b $ %{} :Expr (:at 1657729241739) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"&") + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657729241739) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1657729241739) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657729241739) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1657729241739) (:by |rJG4IHzWf) (:text "|\"8px") - |use-alert $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1584859626389) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"8px") + :examples $ [] + |use-alert $ %{} :CodeEntry (:doc "||Alert dialog hook. Shows a simple message box. Returns a plugin object with .show method to display the alert.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1592153327334) (:by |rJG4IHzWf) (:text |defplugin) - |j $ %{} :Leaf (:at 1584859626389) (:by |rJG4IHzWf) (:text |use-alert) - |r $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defplugin) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |use-alert) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |states) - |j $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |options) - |x $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |j $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |:cursor) - |j $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |state) - |j $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1612710577970) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584859639414) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |:show?) - |j $ %{} :Leaf (:at 1584859639414) (:by |rJG4IHzWf) (:text |false) - |r $ %{} :Expr (:at 1644853714454) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1644853716756) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Expr (:at 1644853718252) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1644853719351) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Leaf (:at 1644853721818) (:by |rJG4IHzWf) (:text |options) - |v $ %{} :Expr (:at 1584861688849) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861689888) (:by |rJG4IHzWf) (:text |on-read) - |j $ %{} :Expr (:at 1584861700474) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1612710580772) (:by |rJG4IHzWf) (:text |either) - |T $ %{} :Expr (:at 1584861691908) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861692977) (:by |rJG4IHzWf) (:text |:on-read) - |j $ %{} :Leaf (:at 1584861694431) (:by |rJG4IHzWf) (:text |options) - |j $ %{} :Expr (:at 1584861702319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861702319) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1584861702319) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1615563895495) (:by |rJG4IHzWf) (:text |e) - |T $ %{} :Leaf (:at 1584861702319) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1584861702319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861702319) (:by |rJG4IHzWf) (:text |d!) - |j $ %{} :Leaf (:at 1584861702319) (:by |rJG4IHzWf) (:text |cursor) - |r $ %{} :Expr (:at 1584861702319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861702319) (:by |rJG4IHzWf) (:text |assoc) - |j $ %{} :Leaf (:at 1584861702319) (:by |rJG4IHzWf) (:text |state) - |r $ %{} :Leaf (:at 1584861702319) (:by |rJG4IHzWf) (:text |:show?) - |v $ %{} :Leaf (:at 1584861702319) (:by |rJG4IHzWf) (:text |false) - |x $ %{} :Expr (:at 1696060226888) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060227448) (:by |rJG4IHzWf) (:text |node) - |b $ %{} :Expr (:at 1696060229052) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |comp-alert-modal) - |b $ %{} :Expr (:at 1696060229052) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |:text) - |l $ %{} :Expr (:at 1696060229052) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |:text) - |b $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Expr (:at 1696060229052) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |state) - |l $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |on-read) - |o $ %{} :Expr (:at 1696060229052) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060229052) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060229052) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060229052) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060229052) (:by |rJG4IHzWf) (:text |false) - |y $ %{} :Expr (:at 1696060213217) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060247949) (:by |rJG4IHzWf) (:text |%::) - |b $ %{} :Leaf (:at 1696060216301) (:by |rJG4IHzWf) (:text |%alert-actions) - |h $ %{} :Leaf (:at 1696060218408) (:by |rJG4IHzWf) (:text |:plugin) - |l $ %{} :Leaf (:at 1696060219357) (:by |rJG4IHzWf) (:text |node) - |o $ %{} :Leaf (:at 1696060224188) (:by |rJG4IHzWf) (:text |cursor) - |q $ %{} :Leaf (:at 1696060224782) (:by |rJG4IHzWf) (:text |state) - |use-confirm $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1584861076430) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:data) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-read) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-read) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-alert-modal) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |on-read) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%::) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%alert-actions) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:plugin) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |b $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |d $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + :examples $ [] + quote $ let + alert-plugin $ use-alert (>> states :alert) + {} $ :text |demo + button + {} $ :on-click + fn (e d!) (.show alert-plugin d!) + <> |Show + |use-confirm $ %{} :CodeEntry (:doc "||Confirm dialog hook. Shows a dialog with confirm/cancel buttons. Returns a plugin object, call .show with a callback function that executes after confirmation.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1592153344155) (:by |rJG4IHzWf) (:text |defplugin) - |j $ %{} :Leaf (:at 1584861076430) (:by |rJG4IHzWf) (:text |use-confirm) - |r $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defplugin) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |use-confirm) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |states) - |j $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |options) - |x $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |j $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |:cursor) - |j $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |state) - |j $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1612710495002) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861078342) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |:show?) - |j $ %{} :Leaf (:at 1584861078342) (:by |rJG4IHzWf) (:text |false) - |rT $ %{} :Expr (:at 1699375813586) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699375817938) (:by |rJG4IHzWf) (:text |*next-confirm-task) - |b $ %{} :Expr (:at 1699375819320) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699375821557) (:by |rJG4IHzWf) (:text |anchor-state) - |b $ %{} :Expr (:at 1699375822473) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1699375827254) (:by |rJG4IHzWf) (:text |identity-path) - |b $ %{} :Leaf (:at 1699376250500) (:by |rJG4IHzWf) (:text |'confirm) - |s $ %{} :Expr (:at 1696060809805) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060810404) (:by |rJG4IHzWf) (:text |node) - |b $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |comp-confirm-modal) - |b $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |state) - |l $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:data) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |some?) - |b $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |@*next-confirm-task) - |h $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |@*next-confirm-task) - |l $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376179655) (:by |rJG4IHzWf) (:text |.set!) - |b $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |*next-confirm-task) - |h $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |nil) - |o $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |false) - |l $ %{} :Expr (:at 1696060810769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1699376182636) (:by |rJG4IHzWf) (:text |.set!) - |b $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |*next-confirm-task) - |h $ %{} :Leaf (:at 1696060810769) (:by |rJG4IHzWf) (:text |nil) - |w $ %{} :Expr (:at 1696060816809) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060818676) (:by |rJG4IHzWf) (:text |%::) - |b $ %{} :Leaf (:at 1696060825435) (:by |rJG4IHzWf) (:text |%confirm-actions) - |h $ %{} :Leaf (:at 1696060827056) (:by |rJG4IHzWf) (:text |:plugin) - |l $ %{} :Leaf (:at 1696060827897) (:by |rJG4IHzWf) (:text |node) - |o $ %{} :Leaf (:at 1696060828747) (:by |rJG4IHzWf) (:text |cursor) - |q $ %{} :Leaf (:at 1696060829425) (:by |rJG4IHzWf) (:text |state) - |s $ %{} :Leaf (:at 1699376130047) (:by |rJG4IHzWf) (:text |*next-confirm-task) - |use-drawer $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |*next-confirm-task) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |anchor-state) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |identity-path) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |'confirm) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-confirm-modal) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |blank?) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |e) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |@*next-confirm-task) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |@*next-confirm-task) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |.set!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |*next-confirm-task) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |.set!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |*next-confirm-task) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%::) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%confirm-actions) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:plugin) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |b $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |d $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |f $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |*next-confirm-task) + :examples $ [] + quote $ let + confirm-plugin $ use-confirm (>> states :confirm) + {} $ :text "|确认删除?" + button + {} $ :on-click + fn (e d!) + .show confirm-plugin d! $ fn () (println |confirmed) + <> |Delete + quote $ let + confirm-plugin $ use-confirm (>> states :confirm) + {} $ :text "|Default text" + button + {} (:class-name css/button) + :on-click $ fn (e d!) + .show-with-text confirm-plugin d! "|Confirm with dynamic text?" $ fn () (println |Confirmed!) + <> "|Show with text" + |use-drawer $ %{} :CodeEntry (:doc "||Drawer hook. Shows a panel sliding from the side. Use :render function in options to customize content. Supports :style for width and other styles.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |defn) - |b $ %{} :Leaf (:at 1669214685136) (:by |rJG4IHzWf) (:text |use-drawer) - |h $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |use-drawer) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |states) - |b $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |options) - |l $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |let) - |b $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |cursor) - |b $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |:cursor) - |b $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |states) - |b $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |state) - |b $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |either) - |b $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |:data) - |b $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |states) - |h $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1669214681215) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1669214681215) (:by |rJG4IHzWf) (:text |false) - |e $ %{} :Expr (:at 1696060391322) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060391996) (:by |rJG4IHzWf) (:text |node) - |b $ %{} :Expr (:at 1696060393835) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |comp-drawer) - |b $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Expr (:at 1696060393835) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |state) - |l $ %{} :Expr (:at 1696060393835) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060393835) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060393835) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060393835) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060393835) (:by |rJG4IHzWf) (:text |false) - |l $ %{} :Expr (:at 1696060312074) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060315781) (:by |rJG4IHzWf) (:text |%::) - |b $ %{} :Leaf (:at 1696060320475) (:by |rJG4IHzWf) (:text |%drawer-actions) - |e $ %{} :Leaf (:at 1696060521694) (:by |rJG4IHzWf) (:text |:plugin) - |h $ %{} :Leaf (:at 1696060385396) (:by |rJG4IHzWf) (:text |node) - |l $ %{} :Leaf (:at 1696060387437) (:by |rJG4IHzWf) (:text |cursor) - |o $ %{} :Leaf (:at 1696060389587) (:by |rJG4IHzWf) (:text |state) - |use-modal $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1584848027352) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:data) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-drawer) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%::) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%drawer-actions) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:plugin) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |b $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |d $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + :examples $ [] + quote $ let + drawer-plugin $ use-drawer (>> states :drawer) + {} (:title |Settings) + :style $ {} (:width 400) + :render $ fn (on-close) + div ({}) (<> "|Settings content") + button + {} $ :on-click + fn (e d!) (.show drawer-plugin d!) + <> "|Open Drawer" + |use-modal $ %{} :CodeEntry (:doc "||Modal dialog hook. Shows a modal with custom content. Use :render function in options to customize content. Returns a plugin object.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416051206) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1584848027352) (:by |rJG4IHzWf) (:text |use-modal) - |r $ %{} :Expr (:at 1584848027352) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |use-modal) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584848064631) (:by |rJG4IHzWf) (:text |states) - |T $ %{} :Leaf (:at 1584848063473) (:by |rJG4IHzWf) (:text |options) - |v $ %{} :Expr (:at 1584848067207) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848067207) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1584848067207) (:by |rJG4IHzWf) - :data $ {} - |5 $ %{} :Expr (:at 1584848141917) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848143572) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1584848143780) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848144686) (:by |rJG4IHzWf) (:text |:cursor) - |j $ %{} :Leaf (:at 1584848146180) (:by |rJG4IHzWf) (:text |states) - |D $ %{} :Expr (:at 1584848071283) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848071938) (:by |rJG4IHzWf) (:text |state) - |j $ %{} :Expr (:at 1584848072564) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1612710552646) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1584848074577) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848077136) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Leaf (:at 1584848078119) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1584848078644) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848078979) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848079397) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848081184) (:by |rJG4IHzWf) (:text |:show?) - |j $ %{} :Leaf (:at 1584848083334) (:by |rJG4IHzWf) (:text |false) - |J $ %{} :Expr (:at 1696060989432) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060989258) (:by |rJG4IHzWf) (:text |node) - |b $ %{} :Expr (:at 1696060989967) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |comp-modal) - |b $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Expr (:at 1696060989967) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |state) - |l $ %{} :Expr (:at 1696060989967) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060989967) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060989967) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060989967) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060989967) (:by |rJG4IHzWf) (:text |false) - |t $ %{} :Expr (:at 1696060991678) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060992927) (:by |rJG4IHzWf) (:text |%::) - |b $ %{} :Leaf (:at 1696060999205) (:by |rJG4IHzWf) (:text |%modal-actions) - |h $ %{} :Leaf (:at 1696061000395) (:by |rJG4IHzWf) (:text |:plugin) - |l $ %{} :Leaf (:at 1696061002088) (:by |rJG4IHzWf) (:text |node) - |o $ %{} :Leaf (:at 1696061003010) (:by |rJG4IHzWf) (:text |cursor) - |q $ %{} :Leaf (:at 1696061004961) (:by |rJG4IHzWf) (:text |state) - |use-modal-menu $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1584848542800) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:data) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-modal) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%::) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%modal-actions) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:plugin) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |b $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |d $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + :examples $ [] + quote $ let + modal-plugin $ use-modal (>> states :modal) + {} (:title |Demo) + :render $ fn (on-close) + div ({}) (<> |Content) + button + {} $ :on-click + fn (e d!) (.show modal-plugin d!) + <> |Open + |use-modal-menu $ %{} :CodeEntry (:doc "||Modal menu hook. Shows a modal dialog with a list of options. Define options via :items and handle selection via :on-result in options.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1623416557190) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1584848542800) (:by |rJG4IHzWf) (:text |use-modal-menu) - |n $ %{} :Expr (:at 1584848549650) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |use-modal-menu) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584848551735) (:by |rJG4IHzWf) (:text |states) - |j $ %{} :Leaf (:at 1584848554401) (:by |rJG4IHzWf) (:text |options) - |r $ %{} :Expr (:at 1584848556404) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584848556975) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1584848557167) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Expr (:at 1584848585941) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848587476) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1584848588283) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848589997) (:by |rJG4IHzWf) (:text |:cursor) - |j $ %{} :Leaf (:at 1584848591261) (:by |rJG4IHzWf) (:text |states) - |T $ %{} :Expr (:at 1584848557318) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848557913) (:by |rJG4IHzWf) (:text |state) - |j $ %{} :Expr (:at 1584848558108) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1612710570451) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1584848559117) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848560630) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Leaf (:at 1584848561610) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1584848562207) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848562557) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584848563348) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584848564179) (:by |rJG4IHzWf) (:text |:show?) - |j $ %{} :Leaf (:at 1584848566009) (:by |rJG4IHzWf) (:text |false) - |X $ %{} :Expr (:at 1696060905587) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060905995) (:by |rJG4IHzWf) (:text |node) - |b $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |comp-modal-menu) - |b $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |state) - |l $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |false) - |o $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |result) - |b $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |:on-result) - |b $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |options) - |b $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |result) - |h $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |d!) - |l $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060906357) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060906357) (:by |rJG4IHzWf) (:text |false) - |b $ %{} :Expr (:at 1696060908692) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060909821) (:by |rJG4IHzWf) (:text |%::) - |b $ %{} :Leaf (:at 1696060915288) (:by |rJG4IHzWf) (:text |%modal-menu-actions) - |h $ %{} :Leaf (:at 1696060916909) (:by |rJG4IHzWf) (:text |:plugin) - |l $ %{} :Leaf (:at 1696060917623) (:by |rJG4IHzWf) (:text |node) - |o $ %{} :Leaf (:at 1696060918524) (:by |rJG4IHzWf) (:text |cursor) - |q $ %{} :Leaf (:at 1696060919184) (:by |rJG4IHzWf) (:text |state) - |use-prompt $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1584861189013) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:data) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-modal-menu) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |result) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:on-result) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |result) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%::) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%modal-menu-actions) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:plugin) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |b $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |d $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + :examples $ [] + quote $ let + menu-plugin $ use-modal-menu (>> states :menu) + {} (:title "|选择") + :items $ [] (:: :item |a |A) (:: :item |b |B) + :on-result $ fn (result d!) (println |selected: result) + button + {} $ :on-click + fn (e d!) (.show menu-plugin d!) + <> |Menu + |use-prompt $ %{} :CodeEntry (:doc "||Prompt dialog hook. Shows a dialog with text input. Returns a plugin object, call .show with a callback function to receive user input text.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1592153360472) (:by |rJG4IHzWf) (:text |defplugin) - |j $ %{} :Leaf (:at 1584861189013) (:by |rJG4IHzWf) (:text |use-prompt) - |r $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defplugin) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |use-prompt) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |states) - |j $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |options) - |x $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |j $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |:cursor) - |j $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |state) - |j $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1612710561069) (:by |rJG4IHzWf) (:text |either) - |j $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |:show?) - |j $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |false) - |r $ %{} :Expr (:at 1584861191823) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |:failure) - |j $ %{} :Leaf (:at 1584861191823) (:by |rJG4IHzWf) (:text |nil) - |rT $ %{} :Expr (:at 1699376228529) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376230793) (:by |rJG4IHzWf) (:text |*next-prompt-task) - |b $ %{} :Expr (:at 1699376231693) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699376234600) (:by |rJG4IHzWf) (:text |anchor-state) - |b $ %{} :Expr (:at 1699376234892) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1699376236623) (:by |rJG4IHzWf) (:text |identity-path) - |b $ %{} :Leaf (:at 1699376245673) (:by |rJG4IHzWf) (:text |'prompt) - |s $ %{} :Expr (:at 1696060580099) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:cursor) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060580677) (:by |rJG4IHzWf) (:text |node) - |b $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |comp-prompt-modal) - |b $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |>>) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |states) - |h $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |:modal) - |h $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |options) - |l $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |either) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |:show?) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |state) - |o $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |text) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |some?) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |@*next-prompt-task) - |h $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |@*next-prompt-task) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |text) - |l $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1699376260295) (:by |rJG4IHzWf) (:text |.set!) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |*next-prompt-task) - |h $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |nil) - |o $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |false) - |q $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:data) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |assoc) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |state) - |h $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |:show?) - |l $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |false) - |l $ %{} :Expr (:at 1696060582346) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1699376262439) (:by |rJG4IHzWf) (:text |.set!) - |b $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |*next-prompt-task) - |h $ %{} :Leaf (:at 1696060582346) (:by |rJG4IHzWf) (:text |nil) - |w $ %{} :Expr (:at 1696060609994) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1696060612576) (:by |rJG4IHzWf) (:text |%::) - |b $ %{} :Leaf (:at 1696060622608) (:by |rJG4IHzWf) (:text |%prompt-actions) - |h $ %{} :Leaf (:at 1696060624080) (:by |rJG4IHzWf) (:text |:plugin) - |l $ %{} :Leaf (:at 1696060627425) (:by |rJG4IHzWf) (:text |node) - |o $ %{} :Leaf (:at 1696060630627) (:by |rJG4IHzWf) (:text |cursor) - |q $ %{} :Leaf (:at 1696060631305) (:by |rJG4IHzWf) (:text |state) - |s $ %{} :Leaf (:at 1699376212393) (:by |rJG4IHzWf) (:text |*next-prompt-task) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:failure) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |*next-prompt-task) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |anchor-state) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |identity-path) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |'prompt) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-prompt-modal) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |>>) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |states) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:modal) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |text) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |@*next-prompt-task) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |@*next-prompt-task) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |text) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |.set!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |*next-prompt-task) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |b $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |d $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |d!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:show?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |false) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |.set!) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |*next-prompt-task) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |nil) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%::) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |%prompt-actions) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:plugin) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |node) + |b $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |cursor) + |d $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |state) + |f $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |*next-prompt-task) + :examples $ [] + quote $ let + prompt-plugin $ use-prompt (>> states :prompt) + {} (:text "|请输入名称") (:placeholder |name) + button + {} $ :on-click + fn (e d!) + .show prompt-plugin d! $ fn (text) (println |got: text) + <> |Input :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1528045941031) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528045941031) (:by |root) (:text |ns) - |j $ %{} :Leaf (:at 1528045941031) (:by |root) (:text |respo-alerts.core) - |r $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |ns) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.core) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require) - |j $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:require) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1612705565437) (:by |rJG4IHzWf) (:text |respo.util.format) - |r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.util.format) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |hsl) - |n $ %{} :Expr (:at 1615563344520) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |hsl) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1615563558996) (:by |rJG4IHzWf) (:text |respo.schema) - |r $ %{} :Leaf (:at 1615563350298) (:by |rJG4IHzWf) (:text |:as) - |v $ %{} :Leaf (:at 1615563355587) (:by |rJG4IHzWf) (:text |respo-schema) - |r $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.schema) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-schema) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core) - |r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui) - |t $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-ui.core) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |ui) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1657727451251) (:by |rJG4IHzWf) (:text |respo-ui.css) - |r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1657727452287) (:by |rJG4IHzWf) (:text |css) - |v $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-ui.css) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |css) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1540958541231) (:by |root) (:text |respo.core) - |r $ %{} :Leaf (:at 1508946162679) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.core) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp) - |m $ %{} :Leaf (:at 1592153322882) (:by |rJG4IHzWf) (:text |defplugin) - |pT $ %{} :Leaf (:at 1584782488868) (:by |rJG4IHzWf) (:text |list->) - |r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>) - |t $ %{} :Leaf (:at 1584782493972) (:by |rJG4IHzWf) (:text |>>) - |v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div) - |x $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button) - |xT $ %{} :Leaf (:at 1512359490531) (:by |rJG4IHzWf) (:text |textarea) - |y $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |span) - |yT $ %{} :Leaf (:at 1528047346985) (:by |root) (:text |input) - |yj $ %{} :Leaf (:at 1530811701291) (:by |root) (:text |a) - |yr $ %{} :Leaf (:at 1571768820403) (:by |rJG4IHzWf) (:text |defeffect) - |w $ %{} :Expr (:at 1657725887904) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defplugin) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |list->) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |<>) + |b $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |>>) + |d $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |div) + |f $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |button) + |h $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |textarea) + |j $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |span) + |l $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |input) + |n $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |a) + |p $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defeffect) + |f $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725889143) (:by |rJG4IHzWf) (:text |respo.css) - |b $ %{} :Leaf (:at 1657725889882) (:by |rJG4IHzWf) (:text |:refer) - |h $ %{} :Expr (:at 1657725890149) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.css) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1657725891500) (:by |rJG4IHzWf) (:text |defstyle) - |x $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defstyle) + |h $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.comp.space) - |r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.comp.space) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<) - |yj $ %{} :Expr (:at 1521954061310) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |=<) + |j $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1528011501932) (:by |root) (:text |respo-alerts.config) - |r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1521954065004) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.config) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?) - |yr $ %{} :Expr (:at 1528126279660) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |dev?) + |l $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1528126284472) (:by |root) (:text |respo-alerts.style) - |r $ %{} :Leaf (:at 1528126286797) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1528126288145) (:by |root) (:text |style) - |yx $ %{} :Expr (:at 1530373376056) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.style) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style) + |n $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1530373381451) (:by |root) (:text |respo-alerts.schema) - |r $ %{} :Leaf (:at 1530373381811) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1530373384465) (:by |root) (:text |schema) - |yy $ %{} :Expr (:at 1530810849179) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.schema) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |schema) + |p $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1530810856127) (:by |root) (:text |respo-alerts.util) - |r $ %{} :Leaf (:at 1530810857147) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1530810857358) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.util) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1571769011535) (:by |rJG4IHzWf) (:text |focus-element!) - |r $ %{} :Leaf (:at 1571769013469) (:by |rJG4IHzWf) (:text |select-element!) - |yyT $ %{} :Expr (:at 1530812081106) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |focus-element!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |select-element!) + |r $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1530812086283) (:by |root) (:text |respo-alerts.style) - |r $ %{} :Leaf (:at 1530812087975) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1530812088780) (:by |root) (:text |style) - |z $ %{} :Expr (:at 1699375793573) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.style) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style) + |t $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699375797940) (:by |rJG4IHzWf) (:text |memof.anchor) - |b $ %{} :Leaf (:at 1699375800090) (:by |rJG4IHzWf) (:text |:refer) - |h $ %{} :Expr (:at 1699375801949) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |memof.anchor) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1699375805959) (:by |rJG4IHzWf) (:text |anchor-state) - |b $ %{} :Leaf (:at 1699375808750) (:by |rJG4IHzWf) (:text |identity-path) - |respo-alerts.main $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |anchor-state) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |identity-path) + :examples $ [] + |respo-alerts.main $ %{} :FileEntry :defs $ {} |*reel $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1546400658917) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612709995748) (:by |rJG4IHzWf) (:text |defatom) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |*reel) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defatom) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |*reel) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |->) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |reel-schema/reel) - |r $ %{} :Expr (:at 1546400658917) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |assoc) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:base) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |schema/store) - |v $ %{} :Expr (:at 1546400658917) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |assoc) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:store) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |schema/store) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |->) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel-schema/reel) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:base) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |schema/store) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:store) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |schema/store) + :examples $ [] |dispatch! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1546400658917) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |defn) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |dispatch!) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |dispatch!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |op) - |x $ %{} :Expr (:at 1584782985139) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |op) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1584782985657) (:by |rJG4IHzWf) (:text |do) - |T $ %{} :Expr (:at 1584782954347) (:by |rJG4IHzWf) - :data $ {} - |L $ %{} :Leaf (:at 1584782959203) (:by |rJG4IHzWf) (:text |when) - |P $ %{} :Expr (:at 1584782966378) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1584782968505) (:by |rJG4IHzWf) (:text |and) - |T $ %{} :Leaf (:at 1584782959203) (:by |rJG4IHzWf) (:text |config/dev?) - |j $ %{} :Expr (:at 1584782969145) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584782969716) (:by |rJG4IHzWf) (:text |not=) - |j $ %{} :Leaf (:at 1584782972263) (:by |rJG4IHzWf) (:text |:states) - |r $ %{} :Leaf (:at 1584782973330) (:by |rJG4IHzWf) (:text |op) - |R $ %{} :Expr (:at 1584782959203) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1692509371300) (:by |rJG4IHzWf) (:text |js/console.log) - |j $ %{} :Leaf (:at 1584782959203) (:by |rJG4IHzWf) (:text "|\"Dispatch:") - |r $ %{} :Leaf (:at 1584782959203) (:by |rJG4IHzWf) (:text |op) - |j $ %{} :Expr (:at 1584782987021) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584782987021) (:by |rJG4IHzWf) (:text |reset!) - |j $ %{} :Leaf (:at 1584782987021) (:by |rJG4IHzWf) (:text |*reel) - |r $ %{} :Expr (:at 1584782987021) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1584782987021) (:by |rJG4IHzWf) (:text |reel-updater) - |j $ %{} :Leaf (:at 1584782987021) (:by |rJG4IHzWf) (:text |updater) - |r $ %{} :Leaf (:at 1584782987021) (:by |rJG4IHzWf) (:text |@*reel) - |v $ %{} :Leaf (:at 1584782987021) (:by |rJG4IHzWf) (:text |op) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |do) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |when) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |and) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |config/dev?) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |not=) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:states) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |op) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/console.log) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Dispatch:") + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |op) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reset!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |*reel) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel-updater) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |updater) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |@*reel) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |op) + :examples $ [] |main! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1546400658917) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |defn) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |main!) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |main!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |println) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text "|\"Running mode:") - |r $ %{} :Expr (:at 1546400658917) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |if) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |config/dev?) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text "|\"dev") - |v $ %{} :Leaf (:at 1546400658917) (:by |root) (:text "|\"release") - |w $ %{} :Expr (:at 1646937210138) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |println) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Running mode:") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |config/dev?) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"dev") + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"release") + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1646937210612) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Leaf (:at 1646937213183) (:by |rJG4IHzWf) (:text |config/dev?) - |h $ %{} :Expr (:at 1646937213739) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |config/dev?) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1646937218064) (:by |rJG4IHzWf) (:text |load-console-formatter!) - |y $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |load-console-formatter!) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |render-app!) - |yT $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |render-app!) + |f $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |add-watch) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |*reel) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:changes) - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |add-watch) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |*reel) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:changes) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |fn) - |j $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612710468744) (:by |rJG4IHzWf) (:text |reel) - |j $ %{} :Leaf (:at 1612710469812) (:by |rJG4IHzWf) (:text |prev) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |prev) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |render-app!) - |yj $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |render-app!) + |h $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |listen-devtools!) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text ||a) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |dispatch!) - |yr $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |listen-devtools!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text ||a) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |dispatch!) + |j $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |L $ %{} :Leaf (:at 1646937275101) (:by |rJG4IHzWf) (:text |;) - |j $ %{} :Leaf (:at 1644774695070) (:by |rJG4IHzWf) (:text |js/window.addEventListener) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text ||beforeunload) - |v $ %{} :Expr (:at 1612705006534) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |;) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/window.addEventListener) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text ||beforeunload) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1612705009092) (:by |rJG4IHzWf) (:text |fn) - |L $ %{} :Expr (:at 1612705009893) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705010566) (:by |rJG4IHzWf) (:text |event) - |T $ %{} :Expr (:at 1612705011810) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |event) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |persist-storage!) - |yv $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |persist-storage!) + |l $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1646937269822) (:by |rJG4IHzWf) (:text |;) - |T $ %{} :Leaf (:at 1646937173781) (:by |rJG4IHzWf) (:text |js/setInterval) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |persist-storage!) - |t $ %{} :Leaf (:at 1646937179694) (:by |rJG4IHzWf) (:text |60000) - |yx $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |;) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/setInterval) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |persist-storage!) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |60000) + |n $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1644854320752) (:by |rJG4IHzWf) (:text |;) - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |let) - |j $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |;) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |let) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |raw) - |j $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |raw) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1644774700173) (:by |rJG4IHzWf) (:text |js/localStorage.getItem) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/localStorage.getItem) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:storage-key) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |config/site) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:storage-key) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |config/site) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |when) - |j $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |when) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |some?) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |raw) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |raw) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |dispatch!) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:hydrate-storage) - |r $ %{} :Expr (:at 1612705040184) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |dispatch!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:hydrate-storage) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1646937266909) (:by |rJG4IHzWf) (:text |parse-cirru-edn) - |j $ %{} :Leaf (:at 1612705040184) (:by |rJG4IHzWf) (:text |raw) - |yy $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |parse-cirru-edn) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |raw) + |p $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |println) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text "||App started.") + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |println) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "||App started.") + :examples $ [] |mount-target $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1546400658917) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |def) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |mount-target) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |def) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |mount-target) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1644774747768) (:by |rJG4IHzWf) (:text |js/document.querySelector) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text ||.app) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/document.querySelector) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text ||.app) + :examples $ [] |persist-storage! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1546400658917) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |defn) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |persist-storage!) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |persist-storage!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1629739587158) (:by |rJG4IHzWf) (:text |?) - |j $ %{} :Leaf (:at 1629739587697) (:by |rJG4IHzWf) (:text |e) - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |?) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |e) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1644774710470) (:by |rJG4IHzWf) (:text |js/localStorage.setItem) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/localStorage.setItem) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:storage-key) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |config/site) - |v $ %{} :Expr (:at 1612705023534) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:storage-key) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |config/site) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1646937256341) (:by |rJG4IHzWf) (:text |format-cirru-edn) - |j $ %{} :Expr (:at 1612705023534) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |format-cirru-edn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1612705023534) (:by |rJG4IHzWf) (:text |:store) - |j $ %{} :Leaf (:at 1612705023534) (:by |rJG4IHzWf) (:text |@*reel) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:store) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |@*reel) + :examples $ [] |reload! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |reload!) - |r $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reload!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |v $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |nil?) - |j $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |build-errors) - |r $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |do) - |j $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |remove-watch) - |j $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |*reel) - |r $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |:changes) - |r $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |clear-cache!) - |v $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |add-watch) - |j $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |*reel) - |r $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |:changes) - |v $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |reel) - |j $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |prev) - |r $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |render-app!) - |x $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |reset!) - |j $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |*reel) - |r $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |refresh-reel) - |j $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |@*reel) - |r $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |schema/store) - |v $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |updater) - |y $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |hud!) - |j $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text "|\"ok~") - |r $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text "|\"Ok") - |v $ %{} :Expr (:at 1629738813245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |hud!) - |j $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text "|\"error") - |r $ %{} :Leaf (:at 1629738813245) (:by |rJG4IHzWf) (:text |build-errors) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |nil?) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |build-errors) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |do) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |remove-watch) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |*reel) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:changes) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |clear-cache!) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |add-watch) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |*reel) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:changes) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |fn) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |prev) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |render-app!) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reset!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |*reel) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |refresh-reel) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |@*reel) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |schema/store) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |updater) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |hud!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"ok~") + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"Ok") + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |hud!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"error") + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |build-errors) + :examples $ [] |render-app! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1546400658917) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |defn) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |render-app!) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |render-app!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1629739565769) (:by |rJG4IHzWf) (:text |render!) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |mount-target) - |r $ %{} :Expr (:at 1546400658917) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |comp-container) - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |@*reel) - |v $ %{} :Leaf (:at 1629739563347) (:by |rJG4IHzWf) (:text |dispatch!) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |render!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |mount-target) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-container) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |@*reel) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |dispatch!) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1546400658917) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |ns) - |j $ %{} :Leaf (:at 1546400788038) (:by |root) (:text |respo-alerts.main) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |ns) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.main) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:require) - |j $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:require) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |respo.core) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo.core) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |render!) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |clear-cache!) - |v $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |realize-ssr!) - |r $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |render!) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |clear-cache!) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |realize-ssr!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400790376) (:by |root) (:text |respo-alerts.comp.container) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.comp.container) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |comp-container) - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |comp-container) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400791976) (:by |root) (:text |respo-alerts.updater) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.updater) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |updater) - |x $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |updater) + |b $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400792755) (:by |root) (:text |respo-alerts.schema) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |schema) - |y $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.schema) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |schema) + |d $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |reel.util) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel.util) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |listen-devtools!) - |yT $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |listen-devtools!) + |f $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |reel.core) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel.core) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |reel-updater) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |refresh-reel) - |yj $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel-updater) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |refresh-reel) + |h $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |reel.schema) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |reel-schema) - |yv $ %{} :Expr (:at 1546400658917) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel.schema) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |reel-schema) + |j $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1546400795828) (:by |root) (:text |respo-alerts.config) - |r $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1546400658917) (:by |root) (:text |config) - |yx $ %{} :Expr (:at 1629738796487) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.config) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |config) + |l $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1629738796487) (:by |rJG4IHzWf) (:text "|\"./calcit.build-errors") - |j $ %{} :Leaf (:at 1629738796487) (:by |rJG4IHzWf) (:text |:default) - |r $ %{} :Leaf (:at 1629738796487) (:by |rJG4IHzWf) (:text |build-errors) - |yy $ %{} :Expr (:at 1629738796487) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"./calcit.build-errors") + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:default) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |build-errors) + |n $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1629738796487) (:by |rJG4IHzWf) (:text "|\"bottom-tip") - |j $ %{} :Leaf (:at 1629738796487) (:by |rJG4IHzWf) (:text |:default) - |r $ %{} :Leaf (:at 1629738796487) (:by |rJG4IHzWf) (:text |hud!) - |respo-alerts.schema $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"bottom-tip") + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:default) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |hud!) + :examples $ [] + |respo-alerts.schema $ %{} :FileEntry :defs $ {} |confirm-button-name $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1530373595209) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530373602736) (:by |root) (:text |def) - |j $ %{} :Leaf (:at 1530373595209) (:by |root) (:text |confirm-button-name) - |r $ %{} :Leaf (:at 1530373618016) (:by |root) (:text "|\"respo-confirm-button") + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |def) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |confirm-button-name) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"respo-confirm-button") + :examples $ [] |input-box-name $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1530373359229) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530373361035) (:by |root) (:text |def) - |j $ %{} :Leaf (:at 1530373359229) (:by |root) (:text |input-box-name) - |r $ %{} :Leaf (:at 1530373363861) (:by |root) (:text "|\"respo-prompt-input") + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |def) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |input-box-name) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"respo-prompt-input") + :examples $ [] |store $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1499755354983) (:by nil) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |def) - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |store) - |r $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |def) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |store) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{}) - |j $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:states) - |j $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:states) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{}) - |r $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1512359514709) (:by |rJG4IHzWf) (:text |:content) - |j $ %{} :Leaf (:at 1512359516026) (:by |rJG4IHzWf) (:text ||) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:content) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text ||) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1499755354983) (:by nil) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ns) - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo-alerts.schema) - |respo-alerts.style $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |ns) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.schema) + :examples $ [] + |respo-alerts.style $ %{} :FileEntry :defs $ {} |backdrop $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1528126320404) (:by |root) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528126335568) (:by |root) (:text |def) - |j $ %{} :Leaf (:at 1528126320404) (:by |root) (:text |backdrop) - |r $ %{} :Expr (:at 1528046505984) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |def) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |backdrop) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528046506324) (:by |root) (:text |{}) - |r $ %{} :Expr (:at 1528046514615) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1528046517159) (:by |root) (:text |:background-color) - |j $ %{} :Expr (:at 1528046519455) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1528046519782) (:by |root) (:text |hsl) - |j $ %{} :Leaf (:at 1528126356715) (:by |root) (:text |0) - |r $ %{} :Leaf (:at 1528126377369) (:by |root) (:text |30) - |v $ %{} :Leaf (:at 1528126370059) (:by |root) (:text |10) - |x $ %{} :Leaf (:at 1528126365814) (:by |root) (:text |0.6) - |v $ %{} :Expr (:at 1530457370742) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1530457372104) (:by |root) (:text |:position) - |j $ %{} :Leaf (:at 1530457412828) (:by |root) (:text |:fixed) - |x $ %{} :Expr (:at 1530457788210) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1530457790693) (:by |root) (:text |:z-index) - |j $ %{} :Leaf (:at 1530457792100) (:by |root) (:text |999) - |y $ %{} :Expr (:at 1534869284776) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1534869286056) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1534869290928) (:by |rJG4IHzWf) (:text |16) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:background-color) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |30) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |10) + |b $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0.6) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:position) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:fixed) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:z-index) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text ||999) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |16) + :examples $ [] |button $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1530812061903) (:by |root) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530812064488) (:by |root) (:text |def) - |j $ %{} :Leaf (:at 1530812061903) (:by |root) (:text |button) - |r $ %{} :Expr (:at 1530812061903) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |def) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |button) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530812067288) (:by |root) (:text |merge) - |j $ %{} :Leaf (:at 1530812069464) (:by |root) (:text |ui/button) - |r $ %{} :Expr (:at 1530812135686) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |merge) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |ui/button) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530812136081) (:by |root) (:text |{}) - |j $ %{} :Expr (:at 1530812136426) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530812167230) (:by |root) (:text |:border-radius) - |j $ %{} :Leaf (:at 1530812175337) (:by |root) (:text "|\"4px") - |n $ %{} :Expr (:at 1534869201164) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:border-radius) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"4px") + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1534869205582) (:by |rJG4IHzWf) (:text |:background-color) - |j $ %{} :Leaf (:at 1534869262513) (:by |rJG4IHzWf) (:text |:white) - |r $ %{} :Expr (:at 1530812186422) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:background-color) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:white) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530812189685) (:by |root) (:text |:border-color) - |j $ %{} :Expr (:at 1530812189932) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:border-color) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530812190272) (:by |root) (:text |hsl) - |j $ %{} :Leaf (:at 1530812191738) (:by |root) (:text |240) - |r $ %{} :Leaf (:at 1530812222853) (:by |root) (:text |60) - |v $ %{} :Leaf (:at 1530812213840) (:by |root) (:text |90) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |240) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |60) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |90) + :examples $ [] |card $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1528126244826) (:by |root) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528126263757) (:by |root) (:text |def) - |j $ %{} :Leaf (:at 1528126244826) (:by |root) (:text |card) - |r $ %{} :Expr (:at 1528046534966) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |def) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |card) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528046535289) (:by |root) (:text |{}) - |j $ %{} :Expr (:at 1528046535533) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1528046539017) (:by |root) (:text |:background-color) - |j $ %{} :Expr (:at 1528046539261) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1528046540288) (:by |root) (:text |hsl) - |j $ %{} :Leaf (:at 1528046540606) (:by |root) (:text |0) - |r $ %{} :Leaf (:at 1528046541755) (:by |root) (:text |0) - |v $ %{} :Leaf (:at 1528046542354) (:by |root) (:text |100) - |t $ %{} :Expr (:at 1528046803906) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1528046807279) (:by |root) (:text |:max-width) - |j $ %{} :Leaf (:at 1534869322693) (:by |rJG4IHzWf) (:text "|\"600px") - |tT $ %{} :Expr (:at 1534869314059) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1534869316126) (:by |rJG4IHzWf) (:text |:width) - |j $ %{} :Leaf (:at 1534869318985) (:by |rJG4IHzWf) (:text "|\"100%") - |u $ %{} :Expr (:at 1534183890127) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1534183893442) (:by |root) (:text |:max-height) - |j $ %{} :Leaf (:at 1534183896605) (:by |root) (:text "|\"80vh") - |uT $ %{} :Expr (:at 1534183897908) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1534183899483) (:by |root) (:text |:overflow) - |j $ %{} :Leaf (:at 1534183902252) (:by |root) (:text |:auto) - |x $ %{} :Expr (:at 1528046581576) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1528046583414) (:by |root) (:text |:border-radius) - |j $ %{} :Leaf (:at 1572796179306) (:by |rJG4IHzWf) (:text "|\"3px") - |y $ %{} :Expr (:at 1528046607577) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1528046608781) (:by |root) (:text |:color) - |j $ %{} :Expr (:at 1528046609163) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1528046610326) (:by |root) (:text |hsl) - |j $ %{} :Leaf (:at 1528046610609) (:by |root) (:text |0) - |r $ %{} :Leaf (:at 1528046610824) (:by |root) (:text |0) - |v $ %{} :Leaf (:at 1528046612139) (:by |root) (:text |0) - |yT $ %{} :Expr (:at 1534869355282) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1534869356241) (:by |rJG4IHzWf) (:text |:margin) - |j $ %{} :Leaf (:at 1534869357205) (:by |rJG4IHzWf) (:text |:auto) - |yj $ %{} :Expr (:at 1572796895260) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1572796896415) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1572796900944) (:by |rJG4IHzWf) (:text |16) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:background-color) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |100) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:max-width) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"600px") + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:width) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"100%") + |b $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:max-height) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"80vh") + |d $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:overflow) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:auto) + |f $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:border-radius) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"3px") + |h $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:color) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |0) + |j $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:margin) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:auto) + |l $ %{} :Expr (:at 1767546522350) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:padding) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |16) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1528126025984) (:by |root) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528126025984) (:by |root) (:text |ns) - |j $ %{} :Leaf (:at 1528126025984) (:by |root) (:text |respo-alerts.style) - |r $ %{} :Expr (:at 1528126267821) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |ns) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |respo-alerts.style) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1528126269249) (:by |root) (:text |:require) - |j $ %{} :Expr (:at 1528126269425) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:require) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1612705415405) (:by |rJG4IHzWf) (:text |respo.util.format) - |r $ %{} :Leaf (:at 1528126273479) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1528126273677) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |respo.util.format) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1528126275295) (:by |root) (:text |hsl) - |r $ %{} :Expr (:at 1530812113511) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |hsl) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1530812118685) (:by |root) (:text |respo-ui.core) - |r $ %{} :Leaf (:at 1530812125643) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1530812126092) (:by |root) (:text |ui) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |respo-ui.core) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:as) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |ui) + :examples $ [] |respo-alerts.trigger $ %{} :FileEntry :defs $ {} - |comp-trigger $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1702666178704) (:by |rJG4IHzWf) + |comp-trigger $ %{} :CodeEntry (:doc "||Trigger component. Wraps an element with visual feedback when active. Uses :trigger-style and :trigger-active-style from options.") + :code $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666181282) (:by |rJG4IHzWf) (:text |defcomp) - |b $ %{} :Leaf (:at 1702666178704) (:by |rJG4IHzWf) (:text |comp-trigger) - |h $ %{} :Expr (:at 1702666178704) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |defcomp) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |comp-trigger) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1702666382013) (:by |rJG4IHzWf) (:text |show?) - |T $ %{} :Leaf (:at 1702666202866) (:by |rJG4IHzWf) (:text |el) - |X $ %{} :Leaf (:at 1702667911776) (:by |rJG4IHzWf) (:text |?) - |b $ %{} :Leaf (:at 1702667910112) (:by |rJG4IHzWf) (:text |options) - |l $ %{} :Expr (:at 1702666210986) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |el) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |?) + |Z $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702666213694) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1702666214229) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702666214549) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1702666222580) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1702667835331) (:by |rJG4IHzWf) (:text |:class-name) - |P $ %{} :Leaf (:at 1702667841824) (:by |rJG4IHzWf) (:text |style-trigger-container) - |h $ %{} :Leaf (:at 1702666230865) (:by |rJG4IHzWf) (:text |el) - |l $ %{} :Expr (:at 1702666259075) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702666258862) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1702666261177) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702666261494) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1702666262169) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702666267757) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1702667855372) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667858077) (:by |rJG4IHzWf) (:text |str-spaced) - |b $ %{} :Leaf (:at 1702667861721) (:by |rJG4IHzWf) (:text |style-trigger) - |h $ %{} :Expr (:at 1702667873760) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667873760) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Leaf (:at 1702667873760) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Leaf (:at 1702667879524) (:by |rJG4IHzWf) (:text |style-trigger-active) - |h $ %{} :Expr (:at 1702667936991) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667937894) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1702667945398) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667946769) (:by |rJG4IHzWf) (:text |merge) - |b $ %{} :Expr (:at 1702667947673) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667948077) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1702667949643) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1702667955167) (:by |rJG4IHzWf) (:text |:trigger-style) - |h $ %{} :Expr (:at 1702667958731) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667958731) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Leaf (:at 1702667958731) (:by |rJG4IHzWf) (:text |show?) - |h $ %{} :Expr (:at 1702667960014) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667961900) (:by |rJG4IHzWf) (:text |get) - |b $ %{} :Leaf (:at 1702667962833) (:by |rJG4IHzWf) (:text |options) - |h $ %{} :Leaf (:at 1702667966243) (:by |rJG4IHzWf) (:text |:trigger-active-style) + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-trigger-container) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |el) + |Z $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |div) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:class-name) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |str-spaced) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-trigger) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |style-trigger-active) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:style) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |merge) + |V $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:trigger-style) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |if) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |show?) + |X $ %{} :Expr (:at 1767977273133) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |get) + |V $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |options) + |X $ %{} :Leaf (:at 1767977273133) (:by |sync) (:text |:trigger-active-style) + :examples $ [] + quote $ comp-trigger show? + button + {} $ :on-click on-click + <> "|Click me" + {} + :trigger-style $ {} (:color |blue) + :trigger-active-style $ {} (:color |red) |style-trigger $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1702667863452) (:by |rJG4IHzWf) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1702667864716) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1702667863452) (:by |rJG4IHzWf) (:text |style-trigger) - |h $ %{} :Expr (:at 1702667866104) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defstyle) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |style-trigger) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1702667866686) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1702667867130) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1702667868546) (:by |rJG4IHzWf) (:text "|\"&") - |T $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:border-radius) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text "|\"50%") - |h $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:position) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:absolute) - |l $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:transform) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text "|\"translate(-50%,-50%)") - |o $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:top) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text "|\"50%") - |q $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:left) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text "|\"50%") - |s $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |0) - |t $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:height) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |0) - |u $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:transition-duration) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text "|\"300ms") - |v $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:transition-delay) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text "|\"100ms") - |w $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:pointer-events) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:none) - |x $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:z-index) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |900) - |y $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:opacity) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |1) - |z $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |:background) - |b $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text "|\"radial-gradient(") - |h $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |70) - |o $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |0.8) - |l $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text "|\"0% ,") - |o $ %{} :Expr (:at 1702667865840) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |60) - |o $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text |0.0) - |q $ %{} :Leaf (:at 1702667865840) (:by |rJG4IHzWf) (:text "|\" 50%)") + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"&") + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |{}) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:border-radius) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"50%") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:position) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:absolute) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:transform) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"translate(-50%,-50%)") + |b $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:top) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"50%") + |d $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:left) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"50%") + |f $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:width) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |h $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:height) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |j $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:transition-duration) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"300ms") + |l $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:transition-delay) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"100ms") + |n $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:pointer-events) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:none) + |p $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:z-index) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text ||900) + |r $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:opacity) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |1) + |t $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |:background) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |str) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"radial-gradient(") + |X $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |70) + |b $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0.8) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\"0% ,") + |b $ %{} :Expr (:at 1767546522349) (:by |sync) + :data $ {} + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |hsl) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |X $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0) + |Z $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |60) + |b $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |0.0) + |d $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text "|\" 50%)") + :examples $ [] |style-trigger-active $ %{} :CodeEntry (:doc |) :code $ %{} :Expr (:at 1702667879923) (:by |rJG4IHzWf) :data $ {} @@ -6340,6 +6627,7 @@ :data $ {} |T $ %{} :Leaf (:at 1702667881517) (:by |rJG4IHzWf) (:text |:transition-delay) |b $ %{} :Leaf (:at 1702667881517) (:by |rJG4IHzWf) (:text "|\"0ms") + :examples $ [] |style-trigger-container $ %{} :CodeEntry (:doc |) :code $ %{} :Expr (:at 1702667843254) (:by |rJG4IHzWf) :data $ {} @@ -6362,6 +6650,7 @@ :data $ {} |T $ %{} :Leaf (:at 1702667847435) (:by |rJG4IHzWf) (:text |:position) |b $ %{} :Leaf (:at 1702667847435) (:by |rJG4IHzWf) (:text |:relative) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) :code $ %{} :Expr (:at 1702666172847) (:by |rJG4IHzWf) :data $ {} @@ -6407,149 +6696,155 @@ |h $ %{} :Expr (:at 1702667894969) (:by |rJG4IHzWf) :data $ {} |T $ %{} :Leaf (:at 1702667895946) (:by |rJG4IHzWf) (:text |defstyle) - |respo-alerts.updater $ {} + :examples $ [] + |respo-alerts.updater $ %{} :FileEntry :defs $ {} |updater $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1499755354983) (:by nil) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defn) - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |updater) - |r $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |updater) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |store) - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |op) - |v $ %{} :Leaf (:at 1519489491135) (:by |root) (:text |op-id) - |x $ %{} :Leaf (:at 1519489492110) (:by |root) (:text |op-time) - |v $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |store) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |op) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |op-id) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |op-time) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1687756365794) (:by |rJG4IHzWf) (:text |tag-match) - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |op) - |n $ %{} :Expr (:at 1507399852251) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |tag-match) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |op) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1687756374054) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1687867417825) (:by |rJG4IHzWf) (:text |:states) - |b $ %{} :Leaf (:at 1687756375699) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Leaf (:at 1687756376201) (:by |rJG4IHzWf) (:text |s) - |j $ %{} :Expr (:at 1584782021376) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:states) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |s) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |D $ %{} :Leaf (:at 1644774270303) (:by |rJG4IHzWf) (:text |update-states) - |F $ %{} :Leaf (:at 1644774277717) (:by |rJG4IHzWf) (:text |store) - |J $ %{} :Leaf (:at 1687756378576) (:by |rJG4IHzWf) (:text |cursor) - |T $ %{} :Leaf (:at 1687756378795) (:by |rJG4IHzWf) (:text |s) - |r $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |update-states) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |store) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |cursor) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |s) + |Z $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1687756380995) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1512359657160) (:by |rJG4IHzWf) (:text |:content) - |b $ %{} :Leaf (:at 1687756382029) (:by |rJG4IHzWf) (:text |c) - |j $ %{} :Expr (:at 1499755354983) (:by nil) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:content) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |c) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1512359666053) (:by |rJG4IHzWf) (:text |assoc) - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |store) - |r $ %{} :Leaf (:at 1512359660859) (:by |rJG4IHzWf) (:text |:content) - |v $ %{} :Leaf (:at 1687756383724) (:by |rJG4IHzWf) (:text |c) - |t $ %{} :Expr (:at 1518157547521) (:by |root) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |assoc) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |store) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:content) + |Z $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |c) + |b $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1687756390732) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1518157657108) (:by |root) (:text |:hydrate-storage) - |b $ %{} :Leaf (:at 1687756391807) (:by |rJG4IHzWf) (:text |d) - |j $ %{} :Leaf (:at 1687756385112) (:by |rJG4IHzWf) (:text |d) - |u $ %{} :Expr (:at 1687756369764) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:hydrate-storage) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |d) + |d $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1687756371229) (:by |rJG4IHzWf) (:text |_) - |b $ %{} :Expr (:at 1687756371768) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |_) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1687756371768) (:by |rJG4IHzWf) (:text |do) - |b $ %{} :Expr (:at 1687756371768) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |do) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1689696901480) (:by |rJG4IHzWf) (:text |js/console.warn) - |b $ %{} :Leaf (:at 1687756371768) (:by |rJG4IHzWf) (:text "|\"Unknown op:") - |h $ %{} :Leaf (:at 1687756371768) (:by |rJG4IHzWf) (:text |op) - |h $ %{} :Leaf (:at 1687756371768) (:by |rJG4IHzWf) (:text |store) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |js/console.warn) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text "|\"Unknown op:") + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |op) + |X $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |store) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1499755354983) (:by nil) + :code $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ns) - |j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo-alerts.updater) - |r $ %{} :Expr (:at 1644774255987) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |ns) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |respo-alerts.updater) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774257501) (:by |rJG4IHzWf) (:text |:require) - |j $ %{} :Expr (:at 1644774257724) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:require) + |V $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774261536) (:by |rJG4IHzWf) (:text |respo.cursor) - |j $ %{} :Leaf (:at 1644774263798) (:by |rJG4IHzWf) (:text |:refer) - |r $ %{} :Expr (:at 1644774264009) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |respo.cursor) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774266283) (:by |rJG4IHzWf) (:text |update-states) - |n $ %{} :Expr (:at 1687756328168) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |update-states) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1687756344705) (:by |rJG4IHzWf) (:text |respo-alerts.config) - |b $ %{} :Leaf (:at 1687756336295) (:by |rJG4IHzWf) (:text |:refer) - |h $ %{} :Expr (:at 1687756336515) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |respo-alerts.config) + |V $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |:refer) + |X $ %{} :Expr (:at 1767546522350) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1687756337375) (:by |rJG4IHzWf) (:text |dev?) - |respo-alerts.util $ {} + |T $ %{} :Leaf (:at 1767546522350) (:by |sync) (:text |dev?) + :examples $ [] + |respo-alerts.util $ %{} :FileEntry :defs $ {} |focus-element! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1530810893131) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530810893131) (:by |root) (:text |defn) - |j $ %{} :Leaf (:at 1530810893131) (:by |root) (:text |focus-element!) - |n $ %{} :Expr (:at 1530810901446) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |focus-element!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530810915631) (:by |root) (:text |query) - |r $ %{} :Expr (:at 1571768845607) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |query) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1704560144851) (:by |rJG4IHzWf) (:text |if-let) - |j $ %{} :Expr (:at 1571768845607) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |if-let) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768845607) (:by |rJG4IHzWf) (:text |target) - |j $ %{} :Expr (:at 1571768845607) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |target) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1644774167094) (:by |rJG4IHzWf) (:text |js/document.querySelector) - |r $ %{} :Leaf (:at 1571768845607) (:by |rJG4IHzWf) (:text |query) - |r $ %{} :Expr (:at 1571768845607) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/document.querySelector) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |query) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1696655491931) (:by |rJG4IHzWf) (:text |.!focus) - |j $ %{} :Leaf (:at 1571768845607) (:by |rJG4IHzWf) (:text |target) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.!focus) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |target) + :examples $ [] |select-element! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1542700302449) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1542700302449) (:by |root) (:text |defn) - |j $ %{} :Leaf (:at 1542700302449) (:by |root) (:text |select-element!) - |r $ %{} :Expr (:at 1542700304984) (:by |root) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |defn) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |select-element!) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1542700304984) (:by |root) (:text |query) - |v $ %{} :Expr (:at 1571768989790) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |query) + |Z $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768989790) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1571768989790) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |let) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Expr (:at 1571768989790) (:by |rJG4IHzWf) + |T $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768989790) (:by |rJG4IHzWf) (:text |target) - |j $ %{} :Expr (:at 1571768989790) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |target) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |j $ %{} :Leaf (:at 1644774761908) (:by |rJG4IHzWf) (:text |js/document.querySelector) - |r $ %{} :Leaf (:at 1571768989790) (:by |rJG4IHzWf) (:text |query) - |r $ %{} :Expr (:at 1571768989790) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |js/document.querySelector) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |query) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768989790) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1571768989790) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |if) + |V $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1571768989790) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1571768989790) (:by |rJG4IHzWf) (:text |target) - |r $ %{} :Expr (:at 1571768989790) (:by |rJG4IHzWf) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |some?) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |target) + |X $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1644774763589) (:by |rJG4IHzWf) (:text |.!select) - |j $ %{} :Leaf (:at 1571768989790) (:by |rJG4IHzWf) (:text |target) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |.!select) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |target) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1530810804216) (:by |root) + :code $ %{} :Expr (:at 1767546522349) (:by |sync) :data $ {} - |T $ %{} :Leaf (:at 1530810804216) (:by |root) (:text |ns) - |j $ %{} :Leaf (:at 1530810804216) (:by |root) (:text |respo-alerts.util) + |T $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |ns) + |V $ %{} :Leaf (:at 1767546522349) (:by |sync) (:text |respo-alerts.util) + :examples $ [] :users $ {} |rJG4IHzWf $ {} (:avatar nil) (:id |rJG4IHzWf) (:name |chen) (:nickname |chen) (:password |d41d8cd98f00b204e9800998ecf8427e) (:theme :star-trail) |root $ {} (:avatar nil) (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:theme :star-trail) diff --git a/compact.cirru b/compact.cirru index 9d4b075..9ce9287 100644 --- a/compact.cirru +++ b/compact.cirru @@ -1,6 +1,6 @@ -{} (:package |respo-alerts) - :configs $ {} (:init-fn |respo-alerts.main/main!) (:reload-fn |respo-alerts.main/reload!) (:version |0.10.2) +{} (:about "|file is generated - never edit directly; learn cr edit/tree workflows before changing") (:package |respo-alerts) + :configs $ {} (:init-fn |respo-alerts.main/main!) (:reload-fn |respo-alerts.main/reload!) (:version |0.10.4) :modules $ [] |lilac/ |memof/ |respo.calcit/ |respo-ui.calcit/ |reel.calcit/ :entries $ {} :files $ {} @@ -31,6 +31,7 @@ when dev? $ comp-inspect "\"states" states {} $ :bottom 0 when dev? $ comp-reel (>> states :reel) reel ({}) + :examples $ [] |comp-controlled-modals $ %{} :CodeEntry (:doc |) :code $ quote defcomp comp-controlled-modals (states) @@ -75,6 +76,7 @@ .render demo-modal .render demo-modal-menu .render demo-drawer + :examples $ [] |comp-demo-trigger $ %{} :CodeEntry (:doc |) :code $ quote defcomp comp-demo-trigger (states) @@ -89,6 +91,7 @@ button $ {} (:inner-text "\"Toggle") (:class-name css/button) :on-click $ fn (e d!) d! cursor $ update state :visible? not + :examples $ [] |comp-hooks-usages $ %{} :CodeEntry (:doc |) :code $ quote defcomp comp-hooks-usages (states) @@ -131,6 +134,15 @@ :on-click $ fn (e d!) .show confirm-plugin d! $ fn () (println "\"after confirmed") =< 8 nil + button $ {} (:inner-text "|show confirm with text") (:class-name css/button) + :on-click $ fn (e d!) + let + text $ js/prompt "|Input confirm text" + if + not $ blank? text + .show-with-text confirm-plugin d! (str "|Confirmed: " text) + fn () $ println "|after confirmed" + =< 8 nil button $ {} (:inner-text "\"show prompt") (:class-name css/button) :on-click $ fn (e d!) .show prompt-plugin d! $ fn (text) @@ -152,10 +164,12 @@ .render prompt-multilines-plugin .render prompt-validation-plugin .render alert-text-plugin + :examples $ [] |style-logo $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-logo $ {} "\"&" $ {} (:width 120) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) :code $ quote ns respo-alerts.comp.container $ :require (respo-ui.core :as ui) @@ -171,16 +185,20 @@ "\"@calcit/std" :refer $ rand-int respo-alerts.trigger :refer $ comp-trigger respo-alerts.trigger :refer $ comp-trigger + :examples $ [] |respo-alerts.config $ %{} :FileEntry :defs $ {} |dev? $ %{} :CodeEntry (:doc |) :code $ quote def dev? $ = "\"dev" (get-env "\"mode" "\"release") + :examples $ [] |site $ %{} :CodeEntry (:doc |) :code $ quote def site $ {} (:dev-ui "\"http://localhost:8100/main-fonts.css") (:release-ui "\"http://cdn.tiye.me/favored-fonts/main-fonts.css") (:cdn-url "\"http://cdn.tiye.me/calcit-workflow/") (:title "\"Alerts") (:icon "\"http://cdn.tiye.me/logo/respo.png") (:storage-key "\"respo-alerts") + :examples $ [] :ns $ %{} :CodeEntry (:doc |) :code $ quote (ns respo-alerts.config) + :examples $ [] |respo-alerts.core $ %{} :FileEntry :defs $ {} |%alert-actions $ %{} :CodeEntry (:doc |) @@ -204,6 +222,7 @@ tag-match self $ :plugin node cursor state :show? state + :examples $ [] |%confirm-actions $ %{} :CodeEntry (:doc |) :code $ quote defrecord! %confirm-actions @@ -215,7 +234,12 @@ tag-match self $ :plugin node cursor state *next-confirm-task do (.set! *next-confirm-task next-task) - d! cursor $ assoc state :show? true + d! cursor $ assoc state :show? true :text nil + :show-with-text $ fn (self d! text next-task) + tag-match self $ + :plugin node cursor state *next-confirm-task + do (.set! *next-confirm-task next-task) + d! cursor $ assoc state :show? true :text text :close $ fn (self d!) tag-match self $ :plugin node cursor state *next @@ -224,6 +248,7 @@ tag-match self $ :plugin node cursor state :show? state + :examples $ [] |%drawer-actions $ %{} :CodeEntry (:doc |) :code $ quote defrecord! %drawer-actions @@ -243,6 +268,7 @@ tag-match self $ :plugin node cursor state :show? state + :examples $ [] |%modal-actions $ %{} :CodeEntry (:doc |) :code $ quote defrecord! %modal-actions @@ -262,6 +288,7 @@ tag-match self $ :plugin node cursor state :show? state + :examples $ [] |%modal-menu-actions $ %{} :CodeEntry (:doc |) :code $ quote defrecord! %modal-menu-actions @@ -281,6 +308,7 @@ tag-match self $ :plugin node cursor state :show? state + :examples $ [] |%prompt-actions $ %{} :CodeEntry (:doc |) :code $ quote defrecord! %prompt-actions @@ -301,7 +329,8 @@ tag-match self $ :plugin node cursor state *next :show? state - |comp-alert-modal $ %{} :CodeEntry (:doc |) + :examples $ [] + |comp-alert-modal $ %{} :CodeEntry (:doc "||Alert modal component. Shows a simple message dialog with a confirm button. Used internally by use-alert hook.") :code $ quote defcomp comp-alert-modal (options show? on-read! on-close!) [] @@ -338,7 +367,11 @@ :on-click $ fn (e d!) (on-read! e d!) (on-close! d!) <> $ either (get options :confirm-text) "\"Read" comp-esc-listener show? on-close! - |comp-confirm-modal $ %{} :CodeEntry (:doc |) + :examples $ [] + quote $ comp-alert-modal + {} $ :text "|Hello World" + , show? on-read! on-close! + |comp-confirm-modal $ %{} :CodeEntry (:doc "||Confirm modal component. Shows a dialog with confirm and cancel buttons. Used internally by use-confirm hook.") :code $ quote defcomp comp-confirm-modal (options show? on-confirm! on-close!) [] @@ -369,7 +402,11 @@ :on-click $ fn (e d!) (on-confirm! e d!) (on-close! d!) <> $ either (:button-text options) "\"Confirm" comp-esc-listener show? on-close! - |comp-drawer $ %{} :CodeEntry (:doc |) + :examples $ [] + quote $ comp-confirm-modal + {} $ :text "|Are you sure?" + , show? on-confirm! on-close! + |comp-drawer $ %{} :CodeEntry (:doc "||Drawer component. Renders a sliding panel from the side with custom content via :render function in options.") :code $ quote defcomp comp-drawer (options show? on-close) [] (effect-slide show?) @@ -407,6 +444,12 @@ (:render-body options) on-close true "\"TODO render body" comp-esc-listener show? on-close + :examples $ [] + quote $ comp-drawer + {} (:title |Settings) + :render $ fn (on-close) + div ({}) (<> |Content) + , show? on-close |comp-esc-listener $ %{} :CodeEntry (:doc |) :code $ quote defcomp comp-esc-listener (show? on-close!) @@ -414,7 +457,8 @@ div $ {} :style $ {} (:position :absolute) :on-keydown $ fn (e d!) (on-close! d!) - |comp-modal $ %{} :CodeEntry (:doc |) + :examples $ [] + |comp-modal $ %{} :CodeEntry (:doc "||Modal component. Renders a modal dialog with custom content via :render function in options.") :code $ quote defcomp comp-modal (options show? on-close) [] (effect-fade show?) @@ -453,7 +497,13 @@ (:render-body options) on-close true "\"TODO render body" comp-esc-listener show? on-close - |comp-modal-menu $ %{} :CodeEntry (:doc |) + :examples $ [] + quote $ comp-modal + {} (:title |Dialog) + :render $ fn (on-close) + div ({}) (<> |Content) + , show? on-close + |comp-modal-menu $ %{} :CodeEntry (:doc "||Modal menu component. Shows a modal dialog with a list of selectable items. Define items via :items in options.") :code $ quote defcomp comp-modal-menu (options show? on-close! on-select!) [] (effect-fade show?) @@ -503,7 +553,12 @@ :on-click $ fn (e d!) (on-select! item d!) if (string? l) (<> l) l comp-esc-listener show? on-close! - |comp-prompt-modal $ %{} :CodeEntry (:doc |) + :examples $ [] + quote $ comp-modal-menu + {} (:title |Choose) + :items $ [] (:: :item |a |A) (:: :item |b |B) + , show? on-close! on-select! + |comp-prompt-modal $ %{} :CodeEntry (:doc "||Prompt modal component. Shows a dialog with text input field and validation. Used internally by use-prompt hook.") :code $ quote defcomp comp-prompt-modal (states options show? on-finish! on-close!) let @@ -590,6 +645,10 @@ :on-click $ fn (e d!) (check-submit! d!) <> $ either (:button-text options) "\"Finish" comp-esc-listener show? on-close! + :examples $ [] + quote $ comp-prompt-modal states + {} (:text "|Enter name") (:placeholder |name) + , show? on-finish! on-close! |effect-fade $ %{} :CodeEntry (:doc |) :code $ quote defeffect effect-fade (show?) (action el at-place?) @@ -627,11 +686,13 @@ set! (.-transform card-style) "\"scale(1) translate(0px,0px)" , 10 , nil + :examples $ [] |effect-focus $ %{} :CodeEntry (:doc |) :code $ quote defeffect effect-focus (query show?) (action el at-place?) case-default action nil $ :update when show? $ focus-element! query + :examples $ [] |effect-keydown $ %{} :CodeEntry (:doc |) :code $ quote defeffect effect-keydown () (action el at?) @@ -649,11 +710,13 @@ f $ aget el "\"_listener" js/window.removeEventListener "\"keydown" f aset el "\"_listener" nil + :examples $ [] |effect-select $ %{} :CodeEntry (:doc |) :code $ quote defeffect effect-select (query show?) (action el *local) case-default action nil $ :update when show? $ select-element! query + :examples $ [] |effect-slide $ %{} :CodeEntry (:doc |) :code $ quote defeffect effect-slide (show?) (action el at-place?) @@ -691,6 +754,7 @@ set! (.-transform card-style) "\"translate(0px,0px)" , 10 , nil + :examples $ [] |style-clear $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-clear $ {} @@ -698,16 +762,19 @@ :color $ hsl 270 80 70 :opacity 0.6 "\"&:hover" $ {} (:opacity 1) + :examples $ [] |style-drawer-backdrop $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-drawer-backdrop $ {} "\"&" $ merge style/backdrop {} $ :padding 0 + :examples $ [] |style-drawer-card $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-drawer-card $ {} - "\"&" $ merge style/card + "\"&" $ merge style/card {} (:line-height "\"32px") (:height "\"100%") (:max-height "\"100vh") (:margin-right 0) (:border-radius "\"0px") (:max-width "\"50vw") (:width "\"24vw") (:min-width 360) (:box-shadow "\"-2px 0px 24px 2px hsla(0,0%,0%,0.2)") (:transition-property "\"opacity,transform") + :examples $ [] |style-menu-item $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-menu-item $ {} @@ -719,19 +786,23 @@ :line-height "\"40px" "\"&:hover" $ {} :background-color $ hsl 0 0 97 + :examples $ [] |style-modal-backdrop $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-modal-backdrop $ {} ("\"&" style/backdrop) + :examples $ [] |style-modal-card $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-modal-card $ {} "\"&" $ merge style/card {} (:line-height "\"32px") (:box-shadow "\"0px 2px 24px 0px hsl(0,0%,0%,0.2)") (:transition-property "\"opacity,transform") + :examples $ [] |style-modal-title $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-modal-title $ {} "\"&" $ {} (:padding "\"8px") - |use-alert $ %{} :CodeEntry (:doc |) + :examples $ [] + |use-alert $ %{} :CodeEntry (:doc "||Alert dialog hook. Shows a simple message box. Returns a plugin object with .show method to display the alert.") :code $ quote defplugin use-alert (states options) let @@ -749,15 +820,27 @@ fn (d!) d! cursor $ assoc state :show? false %:: %alert-actions :plugin node cursor state - |use-confirm $ %{} :CodeEntry (:doc |) + :examples $ [] + quote $ let + alert-plugin $ use-alert (>> states :alert) + {} $ :text |demo + button + {} $ :on-click + fn (e d!) (.show alert-plugin d!) + <> |Show + |use-confirm $ %{} :CodeEntry (:doc "||Confirm dialog hook. Shows a dialog with confirm/cancel buttons. Returns a plugin object, call .show with a callback function that executes after confirmation.") :code $ quote defplugin use-confirm (states options) let cursor $ :cursor states state $ either (:data states) - {} $ :show? false + {} (:show? false) (:text nil) *next-confirm-task $ anchor-state (identity-path 'confirm) - node $ comp-confirm-modal options (:show? state) + node $ comp-confirm-modal + if + blank? $ :text state + , options $ assoc options :text (:text state) + :show? state fn (e d!) if (some? @*next-confirm-task) (@*next-confirm-task) .set! *next-confirm-task nil @@ -765,7 +848,24 @@ d! cursor $ assoc state :show? false .set! *next-confirm-task nil %:: %confirm-actions :plugin node cursor state *next-confirm-task - |use-drawer $ %{} :CodeEntry (:doc |) + :examples $ [] + quote $ let + confirm-plugin $ use-confirm (>> states :confirm) + {} $ :text "|确认删除?" + button + {} $ :on-click + fn (e d!) + .show confirm-plugin d! $ fn () (println |confirmed) + <> |Delete + quote $ let + confirm-plugin $ use-confirm (>> states :confirm) + {} $ :text "|Default text" + button + {} (:class-name css/button) + :on-click $ fn (e d!) + .show-with-text confirm-plugin d! "|Confirm with dynamic text?" $ fn () (println |Confirmed!) + <> "|Show with text" + |use-drawer $ %{} :CodeEntry (:doc "||Drawer hook. Shows a panel sliding from the side. Use :render function in options to customize content. Supports :style for width and other styles.") :code $ quote defn use-drawer (states options) let @@ -776,7 +876,18 @@ fn (d!) d! cursor $ assoc state :show? false %:: %drawer-actions :plugin node cursor state - |use-modal $ %{} :CodeEntry (:doc |) + :examples $ [] + quote $ let + drawer-plugin $ use-drawer (>> states :drawer) + {} (:title |Settings) + :style $ {} (:width 400) + :render $ fn (on-close) + div ({}) (<> "|Settings content") + button + {} $ :on-click + fn (e d!) (.show drawer-plugin d!) + <> "|Open Drawer" + |use-modal $ %{} :CodeEntry (:doc "||Modal dialog hook. Shows a modal with custom content. Use :render function in options to customize content. Returns a plugin object.") :code $ quote defn use-modal (states options) let @@ -787,7 +898,17 @@ fn (d!) d! cursor $ assoc state :show? false %:: %modal-actions :plugin node cursor state - |use-modal-menu $ %{} :CodeEntry (:doc |) + :examples $ [] + quote $ let + modal-plugin $ use-modal (>> states :modal) + {} (:title |Demo) + :render $ fn (on-close) + div ({}) (<> |Content) + button + {} $ :on-click + fn (e d!) (.show modal-plugin d!) + <> |Open + |use-modal-menu $ %{} :CodeEntry (:doc "||Modal menu hook. Shows a modal dialog with a list of options. Define options via :items and handle selection via :on-result in options.") :code $ quote defn use-modal-menu (states options) let @@ -802,7 +923,17 @@ , result d! d! cursor $ assoc state :show? false %:: %modal-menu-actions :plugin node cursor state - |use-prompt $ %{} :CodeEntry (:doc |) + :examples $ [] + quote $ let + menu-plugin $ use-modal-menu (>> states :menu) + {} (:title "|选择") + :items $ [] (:: :item |a |A) (:: :item |b |B) + :on-result $ fn (result d!) (println |selected: result) + button + {} $ :on-click + fn (e d!) (.show menu-plugin d!) + <> |Menu + |use-prompt $ %{} :CodeEntry (:doc "||Prompt dialog hook. Shows a dialog with text input. Returns a plugin object, call .show with a callback function to receive user input text.") :code $ quote defplugin use-prompt (states options) let @@ -819,6 +950,15 @@ d! cursor $ assoc state :show? false .set! *next-prompt-task nil %:: %prompt-actions :plugin node cursor state *next-prompt-task + :examples $ [] + quote $ let + prompt-plugin $ use-prompt (>> states :prompt) + {} (:text "|请输入名称") (:placeholder |name) + button + {} $ :on-click + fn (e d!) + .show prompt-plugin d! $ fn (text) (println |got: text) + <> |Input :ns $ %{} :CodeEntry (:doc |) :code $ quote ns respo-alerts.core $ :require @@ -835,11 +975,13 @@ respo-alerts.util :refer $ focus-element! select-element! respo-alerts.style :as style memof.anchor :refer $ anchor-state identity-path + :examples $ [] |respo-alerts.main $ %{} :FileEntry :defs $ {} |*reel $ %{} :CodeEntry (:doc |) :code $ quote defatom *reel $ -> reel-schema/reel (assoc :base schema/store) (assoc :store schema/store) + :examples $ [] |dispatch! $ %{} :CodeEntry (:doc |) :code $ quote defn dispatch! (op) @@ -848,6 +990,7 @@ and config/dev? $ not= :states op js/console.log "\"Dispatch:" op reset! *reel $ reel-updater updater @*reel op + :examples $ [] |main! $ %{} :CodeEntry (:doc |) :code $ quote defn main! () @@ -863,14 +1006,17 @@ when (some? raw) dispatch! :hydrate-storage $ parse-cirru-edn raw println "|App started." + :examples $ [] |mount-target $ %{} :CodeEntry (:doc |) :code $ quote def mount-target $ js/document.querySelector |.app + :examples $ [] |persist-storage! $ %{} :CodeEntry (:doc |) :code $ quote defn persist-storage! (? e) js/localStorage.setItem (:storage-key config/site) format-cirru-edn $ :store @*reel + :examples $ [] |reload! $ %{} :CodeEntry (:doc |) :code $ quote defn reload! () $ if (nil? build-errors) @@ -879,9 +1025,11 @@ reset! *reel $ refresh-reel @*reel schema/store updater hud! "\"ok~" "\"Ok" hud! "\"error" build-errors + :examples $ [] |render-app! $ %{} :CodeEntry (:doc |) :code $ quote defn render-app! () $ render! mount-target (comp-container @*reel) dispatch! + :examples $ [] :ns $ %{} :CodeEntry (:doc |) :code $ quote ns respo-alerts.main $ :require @@ -895,19 +1043,24 @@ respo-alerts.config :as config "\"./calcit.build-errors" :default build-errors "\"bottom-tip" :default hud! + :examples $ [] |respo-alerts.schema $ %{} :FileEntry :defs $ {} |confirm-button-name $ %{} :CodeEntry (:doc |) :code $ quote (def confirm-button-name "\"respo-confirm-button") + :examples $ [] |input-box-name $ %{} :CodeEntry (:doc |) :code $ quote (def input-box-name "\"respo-prompt-input") + :examples $ [] |store $ %{} :CodeEntry (:doc |) :code $ quote def store $ {} :states $ {} :content | + :examples $ [] :ns $ %{} :CodeEntry (:doc |) :code $ quote (ns respo-alerts.schema) + :examples $ [] |respo-alerts.style $ %{} :FileEntry :defs $ {} |backdrop $ %{} :CodeEntry (:doc |) @@ -915,13 +1068,15 @@ def backdrop $ {} :background-color $ hsl 0 30 10 0.6 :position :fixed - :z-index 999 + :z-index |999 :padding 16 + :examples $ [] |button $ %{} :CodeEntry (:doc |) :code $ quote def button $ merge ui/button {} (:border-radius "\"4px") (:background-color :white) :border-color $ hsl 240 60 90 + :examples $ [] |card $ %{} :CodeEntry (:doc |) :code $ quote def card $ {} @@ -934,14 +1089,16 @@ :color $ hsl 0 0 0 :margin :auto :padding 16 + :examples $ [] :ns $ %{} :CodeEntry (:doc |) :code $ quote ns respo-alerts.style $ :require respo.util.format :refer $ hsl respo-ui.core :as ui + :examples $ [] |respo-alerts.trigger $ %{} :FileEntry :defs $ {} - |comp-trigger $ %{} :CodeEntry (:doc |) + |comp-trigger $ %{} :CodeEntry (:doc "||Trigger component. Wraps an element with visual feedback when active. Uses :trigger-style and :trigger-active-style from options.") :code $ quote defcomp comp-trigger (show? el ? options) div @@ -951,19 +1108,30 @@ :class-name $ str-spaced style-trigger (if show? style-trigger-active) :style $ merge (get options :trigger-style) if show? $ get options :trigger-active-style + :examples $ [] + quote $ comp-trigger show? + button + {} $ :on-click on-click + <> "|Click me" + {} + :trigger-style $ {} (:color |blue) + :trigger-active-style $ {} (:color |red) |style-trigger $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-trigger $ {} - "\"&" $ {} (:border-radius "\"50%") (:position :absolute) (:transform "\"translate(-50%,-50%)") (:top "\"50%") (:left "\"50%") (:width 0) (:height 0) (:transition-duration "\"300ms") (:transition-delay "\"100ms") (:pointer-events :none) (:z-index 900) (:opacity 1) + "\"&" $ {} (:border-radius "\"50%") (:position :absolute) (:transform "\"translate(-50%,-50%)") (:top "\"50%") (:left "\"50%") (:width 0) (:height 0) (:transition-duration "\"300ms") (:transition-delay "\"100ms") (:pointer-events :none) (:z-index |900) (:opacity 1) :background $ str "\"radial-gradient(" (hsl 0 0 70 0.8) "\"0% ," (hsl 0 0 60 0.0) "\" 50%)" + :examples $ [] |style-trigger-active $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-trigger-active $ {} "\"&" $ {} (:width 2000) (:height 2000) (:opacity 0.3) (:transition-delay "\"0ms") + :examples $ [] |style-trigger-container $ %{} :CodeEntry (:doc |) :code $ quote defstyle style-trigger-container $ {} "\"&" $ {} (:display :inline-block) (:position :relative) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) :code $ quote ns respo-alerts.trigger $ :require @@ -971,6 +1139,7 @@ respo-ui.css :as css respo.util.format :refer $ hsl respo.css :refer $ defstyle + :examples $ [] |respo-alerts.updater $ %{} :FileEntry :defs $ {} |updater $ %{} :CodeEntry (:doc |) @@ -982,11 +1151,13 @@ (:content c) (assoc store :content c) (:hydrate-storage d) d _ $ do (js/console.warn "\"Unknown op:" op) store + :examples $ [] :ns $ %{} :CodeEntry (:doc |) :code $ quote ns respo-alerts.updater $ :require respo.cursor :refer $ update-states respo-alerts.config :refer $ dev? + :examples $ [] |respo-alerts.util $ %{} :FileEntry :defs $ {} |focus-element! $ %{} :CodeEntry (:doc |) @@ -995,11 +1166,14 @@ if-let target $ js/document.querySelector query .!focus target + :examples $ [] |select-element! $ %{} :CodeEntry (:doc |) :code $ quote defn select-element! (query) let target $ js/document.querySelector query if (some? target) (.!select target) + :examples $ [] :ns $ %{} :CodeEntry (:doc |) :code $ quote (ns respo-alerts.util) + :examples $ [] diff --git a/deps.cirru b/deps.cirru index 27284e2..9256cc1 100644 --- a/deps.cirru +++ b/deps.cirru @@ -1,8 +1,8 @@ -{} (:calcit-version |0.9.20) +{} (:calcit-version |0.10.4) :dependencies $ {} (|Respo/reel.calcit |main) |Respo/respo-markdown.calcit |0.4.11 |Respo/respo-ui.calcit |0.6.3 - |Respo/respo.calcit |0.16.21 + |Respo/respo.calcit |0.16.23 |calcit-lang/lilac |main - |calcit-lang/memof |main + |calcit-lang/memof |0.0.17 diff --git a/llms/Respo.md b/llms/Respo.md new file mode 100644 index 0000000..17e1c7c --- /dev/null +++ b/llms/Respo.md @@ -0,0 +1,920 @@ +# Respo Development Guide for LLM Agents + +**🤖 This guide is specifically designed for LLM agents to develop, debug, and maintain Respo applications.** + +📚 **Related Documentation**: + +- [← Back to README](../README.md) +- [Beginner Guide](./beginner-guide.md) +- [CLI Tools Reference](../Agents.md) +- [API Reference](./api.md) + +--- + +## Project Structure + +The Respo project is a virtual DOM library written in Calcit-js, containing: + +- **Main codebase**: `compact.cirru` (2314 lines) - serialized source code +- **Compiled source**: `calcit.cirru` (13806 lines) - full AST representation +- **Namespaces**: 33 total namespaces organized by functionality +- **Version**: 0.16.21 +- **Dependencies**: memof (memoization), lilac (UI utilities), calcit-test (testing) + +### Core Namespace Organization + +**User-facing APIs** (what you typically use): + +- `respo.core` - Core APIs: defcomp, div, render!, clear-cache!, etc. +- `respo.comp.space` - Utility component comp-space (=<) +- `respo.comp.inspect` - Debugging component comp-inspect +- `respo.render.html` - HTML generation: make-string, make-html + +**Application layer** (in example app): + +- `respo.app.core` - Main application logic (\*store, dispatch!, render-app!) +- `respo.app.schema` - Data structures and schemas +- `respo.app.updater` - State management and updates +- `respo.app.comp.*` - Application components (container, task, todolist, wrap, zero) +- `respo.app.style.widget` - Application styles + +**Rendering and internal** (low-level): + +- `respo.render.diff` - Find differences between virtual DOM trees +- `respo.render.dom` - DOM element creation and manipulation +- `respo.render.effect` - Component lifecycle effects +- `respo.render.patch` - Apply DOM patches +- `respo.controller.client` - Client-side state management (activate-instance!, patch-instance!) +- `respo.controller.resolve` - Event handling and resolution + +**Utilities**: + +- `respo.util.dom` - DOM utilities +- `respo.util.format` - Element formatting (purify-element, mute-element) +- `respo.util.list` - List utilities (map-val, map-with-idx) +- `respo.util.detect` - Type detection (component?, element?, effect?) +- `respo.css` - CSS utilities +- `respo.cursor` - Cursor management for nested states + +--- + +## Essential Calcit CLI Commands for Development + +### 1. Exploration and Discovery + +```bash +# List all namespaces in the project +cr query ns + +# Get details about a specific namespace (imports, definitions) +cr query ns respo.core +cr query ns respo.app.core + +# List all definitions in a namespace +cr query defs respo.core +cr query defs respo.app.updater + +# Quick peek at a definition (signature, parameters, docs) +cr query peek respo.core/defcomp +cr query peek respo.core/render! + +# Get complete definition as JSON syntax tree +cr query def respo.core/render! +cr query def respo.app.core/dispatch! + +# Search for a symbol across all namespaces +cr query find render! +cr query find *store + +# Find all usages of a specific definition +cr query usages respo.core/render! +cr query usages respo.app.core/dispatch! +``` + +### 2. Precise Code Navigation (tree pattern) + +When you need to understand or modify specific parts of a definition: + +```bash +# Step 1: Read the complete definition first +cr query def respo.app.updater/updater + +# Step 2: Use tree show to examine the structure (limit depth to reduce output) +cr tree show respo.app.updater/updater -p "" -d 1 # View root level + +# Step 3: Dive deeper into specific indices +cr tree show respo.app.updater/updater -p "2" -d 1 # Check 3rd element +cr tree show respo.app.updater/updater -p "2,1" -d 1 # Check 2nd child of 3rd element + +# Step 4: Confirm target location before editing +cr tree show respo.app.updater/updater -p "2,1,0" # Final confirmation + +# Step 5: Use tree commands for surgical modifications +# JSON inline (recommended) +cr tree replace respo.app.updater/updater -p "2,1,0" -j '"new-value"' +# Or from stdin +echo '"new-value"' | cr tree replace respo.app.updater/updater -p "2,1,0" -s -J +``` + +echo '["defn", "hello", [], ["println", "|Hello"]]' | cr edit def respo.app.core/hello -s -J + +### 3. Code Modification (Agent Optimized) + +**Best Practice: Use JSON AST** +For LLM Agents, **JSON inline (`-j`) is the most reliable method** for code generation. It avoids whitespace/indentation ambiguity inherent in Cirru. + +**Input Modes:** + +- `-j ''`: **Recommended.** Inline JSON string. Escape quotes carefully. +- `-e ''`: Inline Cirru one-liner. Good for short, simple expressions. +- `-f ` / `-s`: Read from file/stdin (defaults to Cirru). +- `-J`: Combine with `-f`/`-s` to indicate JSON input. + +**JSON AST Structure Guide:** + +- Function: `(defn f (x) x)` -> `["defn", "f", ["x"], "x"]` +- Map: `{:a 1}` -> `["{}", [":a", "1"]]` +- String: `"|hello"` -> `"|hello"` (in JSON string: `"\"|hello\""`) +- Keyword: `:key` -> `":key"` + +**Common Commands:** + +```bash +# 1. Add/Update Definition (JSON) +# (defn greet (name) (println "|Hello" name)) +cr edit def respo.demo/greet -j '["defn", "greet", ["name"], ["println", "\"|Hello\"", "name"]]' + +# 2. Add Definition (Cirru One-liner - risky for complex code) +cr edit def respo.demo/simple -e 'defn simple (x) (+ x 1)' + +# 3. Update Imports (JSON) +# (ns respo.demo (:require [respo.core :refer [div span]])) +cr edit imports respo.demo -j '[["respo.core", ":refer", ["div", "span"]]]' + +# 4. Remove Definition +cr edit rm-def respo.demo/old-fn + +# 5. Namespace Operations +cr edit add-ns respo.new-feature +cr edit rm-ns respo.deprecated +``` + +**💡 Pro Tip: Validation** +If unsure about the JSON structure, generate it from Cirru first: + +```bash +cr cirru parse -O 'defn f (x) (+ x 1)' +# Output: ["defn", "f", ["x"], ["+", "x", "1"]] +``` + +### 4. Project Configuration + +```bash +# Get project configuration (init-fn, reload-fn, version) +cr query config + +# Set project configuration +cr edit config version "0.16.22" +cr edit config init-fn "respo.main/main!" +cr edit config reload-fn "respo.main/reload!" +``` + +### 5. Workflow: Building From Scratch + +Follow this sequence to create a new feature cleanly: + +**Step 1: Create Namespace** + +```bash +cr edit add-ns respo.app.feature-x +``` + +**Step 2: Add Imports** +Define dependencies (e.g., `respo.core`). + +```bash +# Cirru: (:require [respo.core :refer [defcomp div span]]) +cr edit imports respo.app.feature-x -j '[["respo.core", ":refer", ["defcomp", "div", "span"]]]' +``` + +**Step 3: Create Component** +Define the component logic. + +```bash +# Cirru: (defcomp comp-x (data) (div {} (<> "Feature X"))) +cr edit def respo.app.feature-x/comp-x -j '["defcomp", "comp-x", ["data"], ["div", ["{}"], ["<>", "\"|Feature X\""]]]' +``` + +**Step 4: Verify** + +```bash +cr query def respo.app.feature-x/comp-x +cr --check-only +``` + +**Step 5: Integrate** +Mount or use it in `respo.app.comp.container`. + +```bash +# 1. Add import to container ns +cr edit require respo.app.comp.container respo.app.feature-x + +# 2. Add usage (using surgical edit) +# Find where to insert using `cr tree show ...` +# cr tree insert-child ... -j '["respo.app.feature-x/comp-x", "data"]' +``` + +### 6. Documentation and Language + +```bash +# Check for syntax errors and warnings +cr --check-only +cr js --check-only + +# Get language documentation +cr docs api render! +cr docs ref component +cr docs list-api # List all API docs +cr docs list-guide # List all guide docs + +# Parse Cirru code to JSON (for understanding syntax) +cr cirru parse '(div {} (<> "hello"))' + +# Format JSON to Cirru code +cr cirru format '["div", {}, ["<>", "hello"]]' + +# Parse EDN to JSON +cr cirru parse-edn '{:a 1 :b [2 3]}' + +# Show Cirru syntax guide (read before generating Cirru) +cr cirru show-guide +``` + +### 6. Library Management + +```bash +# List official libraries +cr libs + +# Search libraries by keyword +cr libs search router + +# Read library README from GitHub +cr libs readme respo + +# Install/update dependencies +caps +``` + +### 7. Code Analysis + +```bash +# Call graph analysis from init-fn (or custom root) +cr analyze call-graph +cr analyze call-graph --root app.main/main! --ns-prefix app. --include-core --max-depth 5 --format json + +# Call count statistics +cr analyze count-calls +cr analyze count-calls --root app.main/main! --ns-prefix app. --include-core --format json --sort count +``` + +--- + +## Development Workflow for LLM Agents + +### Step 1: Understand the Problem + +```bash +# Always start by exploring related code +cr query ns respo.app.updater # Understand state management +cr query find my-function-name # Find where it's defined/used +cr query usages respo.core/render! # See how render! is used +``` + +### Step 2: Implement the Solution + +Use the **precise editing pattern** for complex changes: + +```bash +# 1. Read the whole definition +cr query def namespace/function-name + +# 2. Map out the structure with tree show +cr tree show namespace/function-name -p "" -d 1 + +# 3. Navigate to target position +cr tree show namespace/function-name -p "2,1" -d 1 + +# 4. Make the change (JSON inline recommended) +cr tree replace namespace/function-name -p "2,1,0" -j '["new", "code"]' + +# Or from stdin (JSON format) +echo '["new", "code"]' | cr tree replace namespace/function-name -p "2,1,0" -s -J + +# 5. Verify +cr tree show namespace/function-name -p "2,1" +``` + +### Step 3: Test and Validate + +```bash +# Check syntax without running +cr --check-only + +# Compile to JavaScript and check for errors +cr js --check-only + +# Run the app once to test +cr -1 + +# Compile to JavaScript once +cr -1 js + +# Watch mode (will call reload! on code changes) +cr +``` + +### Step 4: Debug Issues + +```bash +# Check for error messages +cr query error + +# Read error stack traces +cat .calcit-error.cirru # (if it exists) + +# Search for the problematic code +cr query find problem-symbol +cr query usages namespace/definition + +# Review the definition in detail +cr query def namespace/definition +``` + +--- + +## Common Patterns and Best Practices + +### 1. Component Definition Pattern + +**Cirru (Read):** + +```cirru +; Standard component structure +defcomp comp-name (param1 param2 & options) + div $ {} + :class-name "|component-name" + :style $ comp-style + <> "|Content" +``` + +**JSON AST (Write - for `cr edit`):** + +```json +[ + "defcomp", + "comp-name", + ["param1", "param2", "&", "options"], + [ + "div", + ["{}", [":class-name", "|component-name"], [":style", "comp-style"]], + ["<>", "|Content"] + ] +] +``` + +### 2. State Management Pattern + +```cirru +; Define store atom at app.core level +defatom *store $ {} + :states $ {} + :data $ {} + +; Create dispatcher +defn dispatch! (op) + reset! *store (updater @*store op) + +; Updater function pattern +defn updater (store op) + tag-match op + (:action-name value) $ + assoc store :data (process-action (:data store) value) + (:nested-action id op2) $ + update-in store [:data :nested id] (process-nested op2) + _ store +``` + +### 3. Rendering Pattern + +```cirru +; Initial render +defn render-app! () + render! mount-point (comp-container @*store) dispatch! + +; Watch for store changes +add-watch *store :changes $ fn () + render-app! + +; Hot reload with cache clearing +defn reload! () + remove-watch *store :changes + add-watch *store :changes $ fn () + render-app! + clear-cache! + render-app! +``` + +### 4. DOM Element Creation + +```cirru +; Using predefined elements (defn wrappers for create-element) +div $ {} (<> "text") +button $ {} (<> "Click me") +input $ {:value "|default"} +span $ {:class-name "|style-name"} (<> "content") + +; Dynamic elements with create-element +create-element :custom-tag $ {:prop-name "|value"} + <> "|child" + +; List rendering with list-> +list-> $ {} + :style $ {} (:display "|flex") + , $ {} + :a $ comp-item item-1 + :b $ comp-item item-2 + :c $ comp-item item-3 +``` + +### 5. Styling Pattern + +```cirru +; Define styles as maps +def style-container $ {} + :display "|flex" + :padding "|10px" + :background-color "|#f0f0f0" + +; Conditional styles +defn style-for-state (state) + if (= state :active) + assoc style-container :background-color "|#3388ff" + style-container + +; Merge styles +let + base $ {} (:color "|black") + extended $ merge base $ {} (:font-size 14) + extended +``` + +### 6. Event Handling + +```cirru +; Simple click handler +div + {} + :on-click $ fn (e dispatch!) + dispatch! [:button-clicked] + +; Input with value tracking +input + {} + :value "|current-value" + :on-input $ fn (e dispatch!) + let + value (e.target.value) + dispatch! [:input-changed value] + +; Keyboard events +div + {} + :on-keydown $ fn (e dispatch!) + when (= (e.key) "|Enter") + dispatch! [:submit-form] +``` + +--- + +## Debugging Common Issues + +### Issue: Component not re-rendering + +**Diagnosis**: + +```bash +# Check if render-app! is being called +cr query find render-app! +cr query usages respo.main/render-app! + +# Verify store watcher is set up +cr query def respo.app.core/dispatch! +cr query def respo.main/main! +``` + +**Solution Pattern**: + +```cirru +; Ensure watch is on *store +add-watch *store :changes $ fn () + render-app! + +; Ensure clear-cache! is called on reload +defn reload! () + remove-watch *store :changes + clear-cache! + add-watch *store :changes $ fn () + render-app! + render-app! +``` + +### Issue: State not updating + +**Diagnosis**: + +```bash +# Check updater function logic +cr query def respo.app.updater/updater + +# Verify dispatch! is calling updater correctly +cr query def respo.app.core/dispatch! + +# Check the state path in component +cr query def respo.app.comp.container/comp-container +``` + +**Solution Pattern**: + +```cirru +; Verify tag-match pattern matches dispatched action +tag-match op + (:action-name params) $ + ; Make sure return value is updated store + assoc store :data new-value + _ store ; Default case needed! + +; Ensure dispatch! is called with correct tuple +dispatch! [:action-name actual-value] +``` + +### Issue: Component effects not triggering + +**Diagnosis**: + +```bash +# Check effect definition +cr query def respo.core/defeffect # macro documentation + +# Find effect in component +cr query find my-effect +cr query usages respo.app.comp.task/my-effect +``` + +**Solution Pattern**: + +```cirru +; Effects must be first in component body +defcomp comp-with-effect (props) + [] + effect-name param1 param2 ; First! + div $ {} ; Then render + <> "|content" + +; Effect must match action lifecycle +defeffect my-effect (initial-value) + (action element at-place?) + when (= action :mount) + do (println "|mounted") + when (= action :update) + do (println "|updated") +``` + +### Issue: Hot reload breaking state + +**Diagnosis**: + +```bash +# Check reload! function +cr query def respo.main/reload! + +# Verify clear-cache! is called +cr query usages respo.core/clear-cache! +``` + +**Solution Pattern**: + +```cirru +; clear-cache! must be called during reload +defn reload! () + remove-watch *store :changes + clear-cache! ; Critical! + add-watch *store :changes $ fn () + render-app! + render-app! +``` + +--- + +## Modification Strategy: Safe Editing Guide + +### Before any edit, follow this checklist: + +1. **Understand the context** + + ```bash + cr query ns namespace-name # See imports and doc + cr query peek namespace-name/def-name # See signature + ``` + +2. **Map the exact location** + + ```bash + cr tree show namespace-name/def-name -p "" -d 2 # Overview + cr tree show namespace-name/def-name -p "2" -d 2 # Check section + cr tree show namespace-name/def-name -p "2,1" -d 2 # Precise location + ``` + +3. **Make surgical change** + +```bash +# JSON inline (recommended) +cr tree replace namespace-name/def-name -p "2,1,0" -j '"new-value"' + +# Or from stdin (JSON format) +echo '"new-value"' | cr tree replace namespace-name/def-name -p "2,1,0" -s -J +``` + +4. **Verify immediately** + ```bash + cr tree show namespace-name/def-name -p "2,1" # Confirm change + cr --check-only # Verify syntax + ``` + +### Common edit operations: + +```bash +# Replace a value (JSON inline) +cr tree replace ns/def -p "2,1,0" -j '"new-value"' + +# Insert before a position (JSON) +cr tree insert-before ns/def -p "2,1" -j '["new", "element"]' + +# Insert after a position (JSON) +cr tree insert-after ns/def -p "2,1" -j '["new", "element"]' + +# Delete a node +cr tree delete ns/def -p "2,1,0" + +# Insert as child (first child) +cr tree insert-child ns/def -p "2,1" -j '"child-value"' + +# Append as child (last child, from stdin) +echo '"child-value"' | cr tree append-child ns/def -p "2,1" -s -J +``` + +--- + +## Testing and Validation + +### Basic validation + +```bash +# Syntax check only (no execution) +cr --check-only + +# Check JavaScript compilation +cr js --check-only + +# Run application once +cr -1 + +# Compile to JS once +cr -1 js +``` + +### Test-driven development + +```bash +# Look at test files +cr query defs respo.test.main +cr query def respo.test.main/test-fn + +# Run tests +cr -1 ; (if init-fn runs tests) +``` + +### Error diagnosis + +```bash +# View error file +cr query error +cat .calcit-error.cirru + +# Search for the problematic definition +cr query find problem-name + +# Check the full definition +cr query def namespace/problem-name + +# Validate dependencies +cr query ns namespace-name # Check imports +``` + +--- + +## Important Notes for LLM Agents + +### ⚠️ Critical Rules + +1. **NEVER directly edit `calcit.cirru` or `compact.cirru`** with text editors + + - Use `cr edit` commands instead + - These are serialized AST structures, not human-readable code + +2. **ALWAYS use relative paths for documentation links** + + - Use `../` and `../../` for navigation + - This allows easy file discovery for LLM tools + +3. **ALWAYS check syntax before assuming it's correct** + + ```bash + cr --check-only + ``` + +4. **ALWAYS verify modifications work** + + ```bash + cr tree show namespace/def -p "modified-path" # Confirm change + cr --check-only # Check syntax + cr -1 # Test run + ``` + +5. **Use peek before def** to reduce token consumption + ```bash + cr query peek ns/def # Light summary + cr query def ns/def # Full AST (use only if needed) + ``` + +### 🎯 Optimization Tips for Token Usage + +```bash +# Fast exploration with limited output +cr query peek respo.core/defcomp # 5-10 lines +cr query defs respo.app.updater # Quick list + +# Slower but comprehensive +cr query def respo.app.updater/updater # Full JSON AST + +# Use -d flag to limit JSON depth +cr tree show ns/def -p "2,1" -d 1 # Shallow +cr tree show ns/def -p "2,1" -d 3 # Medium +cr tree show ns/def -p "2,1" # Full (default) + +# Search before diving deep +cr query find my-function # Find location first +cr query usages ns/def # See usage patterns +``` + +### 📖 Documentation Strategy + +When stuck, use these resources in order: + +1. This file (Respo-Agent.md) - you are here +2. [README.md](../README.md) - Project overview and index +3. [Beginner Guide](./beginner-guide.md) - Conceptual introduction +4. [API Reference](./api.md) - Specific API documentation +5. [Guide docs](./guide/) - Detailed topics +6. `cr docs api ` - Language documentation +7. Project code itself: `cr query ns ` + +--- + +## Quick Reference + +### Most Used Commands + +```bash +# Exploration (read-only, no changes) +cr query ns # List namespaces +cr query ns respo.core # Read namespace details +cr query defs respo.app.core # List definitions +cr query peek respo.core/render! # Quick peek +cr query def respo.core/render! # Full definition +cr query find render! # Search globally +cr query usages respo.core/render! # Find usages + +# Navigation (precise editing) +cr tree show ns/def -p "" -d 1 # View structure +cr tree show ns/def -p "2,1" -d 1 # Drill down +cr tree show ns/def -p "2,1,0" # Confirm target + +# Modification (careful!) +cr edit def ns/def -j '["defn", "func", [], "body"]' +cr tree replace ns/def -p "2,1,0" -j '"value"' +cr edit rm-def ns/def + +# Validation +cr --check-only # Check syntax +cr query error # View errors +cr -1 # Test run +``` + +### File Paths in Documentation + +When referring to files from within `docs/`: + +- `./` - same directory +- `../` - parent (docs/ to root) +- `../../` - grandparent (docs/apis/ to root) + +Example from `docs/apis/defcomp.md`: + +```markdown +- [Back to README](../../README.md) +- [API Overview](../api.md) +- [Another API](./render!.md) +``` + +--- + +This guide evolves as the project grows. Last updated: 2025-12-22 + +# Calcit & Respo 开发避坑指南 + +本文档总结了在 Calcit 和 Respo 开发过程中遇到的常见问题和最佳实践。 + +## 1. 字符串语法 (String Syntax) + +Calcit 使用 `|` 前缀来表示字符串字面量。 + +- **正确**: `|Hello` (编译为 `"Hello"`) +- **正确**: `"Hello"` (标准 Cirru 字符串,编译为 `"Hello"`) +- **错误**: `Hello` (会被解析为 Symbol) + +**CLI 操作注意**: +在使用 `cr tree replace` 修改字符串时,推荐使用 `|` 前缀或 `--json-leaf` 确保类型正确。 + +```bash +# 推荐:使用 | 前缀 +cr tree replace ... -e "|Get Started" + +# 推荐:使用 --json-leaf 明确指定为叶子节点 +cr tree replace ... -e '"Get Started"' --json-leaf +``` + +如果直接使用 `-e '"Get Started"'` 且不加 `--json-leaf`,可能会被解析为包含引号的字符串 `"\"Get Started\""`,导致显示多余引号。 + +## 2. Respo 文本渲染 (Text Rendering) + +Respo 的 HTML 标签(如 `div`, `span`, `button`)**不能直接接受原始字符串作为子节点**。 + +**错误写法** (会导致 `Invalid data in elements tree`): + +```cirru +div ({}) + |SomeText +``` + +**正确写法 1: 使用 `:inner-text` 属性** (推荐用于纯文本标签) + +```cirru +div $ {} (:inner-text |SomeText) +``` + +**正确写法 2: 使用 `<>` 组件** (推荐用于混合内容) + +```cirru +div ({}) + <> |SomeText + span $ {} (:inner-text |Other) +``` + +## 3. 样式定义 (Styles) + +在 `defstyle` 中定义样式时: + +- **数值属性**: 像 `font-weight` 这样的属性,如果使用数字(如 `700`),确保它是数字类型而不是字符串。 + - 错误: `(:font-weight |bold)` (如果库不支持) + - 正确: `(:font-weight 700)` + +## 4. CLI 调试技巧 + +- **检查代码**: `cr js --check-only` + + - 这是一个非常快速的检查命令,能发现未定义的变量 (Warnings) 和语法错误,而不会生成 JS 文件。 + - **务必关注 Warnings**: 很多运行时错误(如 `unknown head`)都是因为使用了未定义的 Symbol(可能是忘记加 `|` 前缀的字符串)。 + +- **查看节点结构**: `cr tree show -p ` + + - 在修改前,先查看目标节点的结构(是 `list` 还是 `leaf`),确认路径是否正确。 + +- **精确修改**: `cr tree replace` + - 配合 `-p` 路径参数进行精确修改,避免破坏周围结构。 + +## 5. 命名空间 (Namespaces) + +- **修改 Imports**: 使用 `cr edit imports -j '...'` + - 这是修改 `:require` 最安全的方式。 + - 如果遇到 `invalid ns form` 错误,通常是因为 `ns` 定义格式被破坏,可以尝试清空 imports 再重新添加。 diff --git a/package.json b/package.json index ffc1c96..f5a42ed 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,9 @@ "devDependencies": { "@calcit/std": "^0.0.3", "bottom-tip": "^0.1.5", - "vite": "^7.1.10" + "vite": "^7.3.0" }, "dependencies": { - "@calcit/procs": "^0.9.20" + "@calcit/procs": "^0.10.4" } } diff --git a/yarn.lock b/yarn.lock index 57fb8ca..e37a46b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,10 +2,10 @@ # yarn lockfile v1 -"@calcit/procs@^0.9.20": - version "0.9.20" - resolved "https://registry.yarnpkg.com/@calcit/procs/-/procs-0.9.20.tgz#f7a3d9dfbcf1ec1d227e076000ccf9724adf35a9" - integrity sha512-vKX7lWRb+Vi9qJA/awvj9tD7oWCZ/MMxJq1Daslj8j4gwUCB511NB55eKrLsh8FFtzkYpChS2njYcB0S92jcnA== +"@calcit/procs@^0.10.4": + version "0.10.4" + resolved "https://registry.yarnpkg.com/@calcit/procs/-/procs-0.10.4.tgz#bcb58256a450b6ec891a64d150c959f229408ae7" + integrity sha512-JljJactqBWQYI3Wcg4a//eRZmry/Pb2gwgHN8OZeMld27krImDoWUYdhtW9wc27lxsBmO0mGW6ubyIwK1c5xhg== dependencies: "@calcit/ternary-tree" "0.0.25" "@cirru/parser.ts" "^0.0.6" @@ -31,245 +31,245 @@ resolved "https://registry.yarnpkg.com/@cirru/writer.ts/-/writer.ts-0.1.5.tgz#890d96cd4a69609f1682932dad5d2d467abb327e" integrity sha512-QQVFJAOIdUtVJZwT23THZOzumSDXCLMQ0yFz5DzIGlWGXPNBuB7BwUvGtRuiQrzM2XV7ALOWmNsVC7vEOjObQQ== -"@esbuild/aix-ppc64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz#ee6b7163a13528e099ecf562b972f2bcebe0aa97" - integrity sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw== - -"@esbuild/android-arm64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz#115fc76631e82dd06811bfaf2db0d4979c16e2cb" - integrity sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg== - -"@esbuild/android-arm@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz#8d5811912da77f615398611e5bbc1333fe321aa9" - integrity sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w== - -"@esbuild/android-x64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz#e3e96516b2d50d74105bb92594c473e30ddc16b1" - integrity sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg== - -"@esbuild/darwin-arm64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz#6af6bb1d05887dac515de1b162b59dc71212ed76" - integrity sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA== - -"@esbuild/darwin-x64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz#99ae82347fbd336fc2d28ffd4f05694e6e5b723d" - integrity sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg== - -"@esbuild/freebsd-arm64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz#0c6d5558a6322b0bdb17f7025c19bd7d2359437d" - integrity sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg== - -"@esbuild/freebsd-x64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz#8c35873fab8c0857a75300a3dcce4324ca0b9844" - integrity sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA== - -"@esbuild/linux-arm64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz#3edc2f87b889a15b4cedaf65f498c2bed7b16b90" - integrity sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ== - -"@esbuild/linux-arm@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz#86501cfdfb3d110176d80c41b27ed4611471cde7" - integrity sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg== - -"@esbuild/linux-ia32@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz#e6589877876142537c6864680cd5d26a622b9d97" - integrity sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ== - -"@esbuild/linux-loong64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz#11119e18781f136d8083ea10eb6be73db7532de8" - integrity sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg== - -"@esbuild/linux-mips64el@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz#3052f5436b0c0c67a25658d5fc87f045e7def9e6" - integrity sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA== - -"@esbuild/linux-ppc64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz#2f098920ee5be2ce799f35e367b28709925a8744" - integrity sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA== - -"@esbuild/linux-riscv64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz#fa51d7fd0a22a62b51b4b94b405a3198cf7405dd" - integrity sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA== - -"@esbuild/linux-s390x@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz#a27642e36fc282748fdb38954bd3ef4f85791e8a" - integrity sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew== - -"@esbuild/linux-x64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz#9d9b09c0033d17529570ced6d813f98315dfe4e9" - integrity sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA== - -"@esbuild/netbsd-arm64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz#25c09a659c97e8af19e3f2afd1c9190435802151" - integrity sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A== - -"@esbuild/netbsd-x64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz#7fa5f6ffc19be3a0f6f5fd32c90df3dc2506937a" - integrity sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig== - -"@esbuild/openbsd-arm64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz#8faa6aa1afca0c6d024398321d6cb1c18e72a1c3" - integrity sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw== - -"@esbuild/openbsd-x64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz#a42979b016f29559a8453d32440d3c8cd420af5e" - integrity sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw== - -"@esbuild/openharmony-arm64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz#fd87bfeadd7eeb3aa384bbba907459ffa3197cb1" - integrity sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag== - -"@esbuild/sunos-x64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz#3a18f590e36cb78ae7397976b760b2b8c74407f4" - integrity sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ== - -"@esbuild/win32-arm64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz#e71741a251e3fd971408827a529d2325551f530c" - integrity sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw== - -"@esbuild/win32-ia32@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz#c6f010b5d3b943d8901a0c87ea55f93b8b54bf94" - integrity sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw== - -"@esbuild/win32-x64@0.25.10": - version "0.25.10" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz#e4b3e255a1b4aea84f6e1d2ae0b73f826c3785bd" - integrity sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw== - -"@rollup/rollup-android-arm-eabi@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.4.tgz#59e7478d310f7e6a7c72453978f562483828112f" - integrity sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA== - -"@rollup/rollup-android-arm64@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.4.tgz#a825192a0b1b2f27a5c950c439e7e37a33c5d056" - integrity sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w== - -"@rollup/rollup-darwin-arm64@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz#4ee37078bccd725ae3c5f30ef92efc8e1bf886f3" - integrity sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg== - -"@rollup/rollup-darwin-x64@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.4.tgz#43cc08bd05bf9f388f125e7210a544e62d368d90" - integrity sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw== - -"@rollup/rollup-freebsd-arm64@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.4.tgz#bc8e640e28abe52450baf3fc80d9b26d9bb6587d" - integrity sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ== - -"@rollup/rollup-freebsd-x64@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.4.tgz#e981a22e057cc8c65bb523019d344d3a66b15bbc" - integrity sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw== - -"@rollup/rollup-linux-arm-gnueabihf@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.4.tgz#4036b68904f392a20f3499d63b33e055b67eb274" - integrity sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ== - -"@rollup/rollup-linux-arm-musleabihf@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.4.tgz#d3b1b9589606e0ff916801c855b1ace9e733427a" - integrity sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q== - -"@rollup/rollup-linux-arm64-gnu@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.4.tgz#cbf0943c477e3b96340136dd3448eaf144378cf2" - integrity sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg== - -"@rollup/rollup-linux-arm64-musl@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.4.tgz#837f5a428020d5dce1c3b4cc049876075402cf78" - integrity sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g== - -"@rollup/rollup-linux-loong64-gnu@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.4.tgz#532c214ababb32ab4bc21b4054278b9a8979e516" - integrity sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ== - -"@rollup/rollup-linux-ppc64-gnu@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.4.tgz#93900163b61b49cee666d10ee38257a8b1dd161a" - integrity sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g== - -"@rollup/rollup-linux-riscv64-gnu@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.4.tgz#f0ffdcc7066ca04bc972370c74289f35c7a7dc42" - integrity sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg== - -"@rollup/rollup-linux-riscv64-musl@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.4.tgz#361695c39dbe96773509745d77a870a32a9f8e48" - integrity sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA== - -"@rollup/rollup-linux-s390x-gnu@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.4.tgz#09fc6cc2e266a2324e366486ae5d1bca48c43a6a" - integrity sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA== - -"@rollup/rollup-linux-x64-gnu@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz#aa9d5b307c08f05d3454225bb0a2b4cc87eeb2e1" - integrity sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg== - -"@rollup/rollup-linux-x64-musl@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.4.tgz#26949e5b4645502a61daba2f7a8416bd17cb5382" - integrity sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw== - -"@rollup/rollup-openharmony-arm64@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.4.tgz#ef493c072f9dac7e0edb6c72d63366846b6ffcd9" - integrity sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA== - -"@rollup/rollup-win32-arm64-msvc@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.4.tgz#56e1aaa6a630d2202ee7ec0adddd05cf384ffd44" - integrity sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ== - -"@rollup/rollup-win32-ia32-msvc@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.4.tgz#0a44bbf933a9651c7da2b8569fa448dec0de7480" - integrity sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw== - -"@rollup/rollup-win32-x64-gnu@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.4.tgz#730e12f0b60b234a7c02d5d3179ca3ec7972033d" - integrity sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ== - -"@rollup/rollup-win32-x64-msvc@4.52.4": - version "4.52.4" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.4.tgz#5b2dd648a960b8fa00d76f2cc4eea2f03daa80f4" - integrity sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w== +"@esbuild/aix-ppc64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz#521cbd968dcf362094034947f76fa1b18d2d403c" + integrity sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw== + +"@esbuild/android-arm64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz#61ea550962d8aa12a9b33194394e007657a6df57" + integrity sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA== + +"@esbuild/android-arm@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.27.2.tgz#554887821e009dd6d853f972fde6c5143f1de142" + integrity sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA== + +"@esbuild/android-x64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.27.2.tgz#a7ce9d0721825fc578f9292a76d9e53334480ba2" + integrity sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A== + +"@esbuild/darwin-arm64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz#2cb7659bd5d109803c593cfc414450d5430c8256" + integrity sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg== + +"@esbuild/darwin-x64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz#e741fa6b1abb0cd0364126ba34ca17fd5e7bf509" + integrity sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA== + +"@esbuild/freebsd-arm64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz#2b64e7116865ca172d4ce034114c21f3c93e397c" + integrity sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g== + +"@esbuild/freebsd-x64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz#e5252551e66f499e4934efb611812f3820e990bb" + integrity sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA== + +"@esbuild/linux-arm64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz#dc4acf235531cd6984f5d6c3b13dbfb7ddb303cb" + integrity sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw== + +"@esbuild/linux-arm@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz#56a900e39240d7d5d1d273bc053daa295c92e322" + integrity sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw== + +"@esbuild/linux-ia32@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz#d4a36d473360f6870efcd19d52bbfff59a2ed1cc" + integrity sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w== + +"@esbuild/linux-loong64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz#fcf0ab8c3eaaf45891d0195d4961cb18b579716a" + integrity sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg== + +"@esbuild/linux-mips64el@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz#598b67d34048bb7ee1901cb12e2a0a434c381c10" + integrity sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw== + +"@esbuild/linux-ppc64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz#3846c5df6b2016dab9bc95dde26c40f11e43b4c0" + integrity sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ== + +"@esbuild/linux-riscv64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz#173d4475b37c8d2c3e1707e068c174bb3f53d07d" + integrity sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA== + +"@esbuild/linux-s390x@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz#f7a4790105edcab8a5a31df26fbfac1aa3dacfab" + integrity sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w== + +"@esbuild/linux-x64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz#2ecc1284b1904aeb41e54c9ddc7fcd349b18f650" + integrity sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA== + +"@esbuild/netbsd-arm64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz#e2863c2cd1501845995cb11adf26f7fe4be527b0" + integrity sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw== + +"@esbuild/netbsd-x64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz#93f7609e2885d1c0b5a1417885fba8d1fcc41272" + integrity sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA== + +"@esbuild/openbsd-arm64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz#a1985604a203cdc325fd47542e106fafd698f02e" + integrity sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA== + +"@esbuild/openbsd-x64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz#8209e46c42f1ffbe6e4ef77a32e1f47d404ad42a" + integrity sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg== + +"@esbuild/openharmony-arm64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz#8fade4441893d9cc44cbd7dcf3776f508ab6fb2f" + integrity sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag== + +"@esbuild/sunos-x64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz#980d4b9703a16f0f07016632424fc6d9a789dfc2" + integrity sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg== + +"@esbuild/win32-arm64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz#1c09a3633c949ead3d808ba37276883e71f6111a" + integrity sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg== + +"@esbuild/win32-ia32@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz#1b1e3a63ad4bef82200fef4e369e0fff7009eee5" + integrity sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ== + +"@esbuild/win32-x64@0.27.2": + version "0.27.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz#9e585ab6086bef994c6e8a5b3a0481219ada862b" + integrity sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ== + +"@rollup/rollup-android-arm-eabi@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.54.0.tgz#f3ff5dbde305c4fa994d49aeb0a5db5305eff03b" + integrity sha512-OywsdRHrFvCdvsewAInDKCNyR3laPA2mc9bRYJ6LBp5IyvF3fvXbbNR0bSzHlZVFtn6E0xw2oZlyjg4rKCVcng== + +"@rollup/rollup-android-arm64@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.54.0.tgz#c97d6ee47846a7ab1cd38e968adce25444a90a19" + integrity sha512-Skx39Uv+u7H224Af+bDgNinitlmHyQX1K/atIA32JP3JQw6hVODX5tkbi2zof/E69M1qH2UoN3Xdxgs90mmNYw== + +"@rollup/rollup-darwin-arm64@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.54.0.tgz#a13fc2d82e01eaf8ac823634a3f5f76fd9d0f938" + integrity sha512-k43D4qta/+6Fq+nCDhhv9yP2HdeKeP56QrUUTW7E6PhZP1US6NDqpJj4MY0jBHlJivVJD5P8NxrjuobZBJTCRw== + +"@rollup/rollup-darwin-x64@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.54.0.tgz#db4fa8b2b76d86f7e9b68ce4661fafe9767adf9b" + integrity sha512-cOo7biqwkpawslEfox5Vs8/qj83M/aZCSSNIWpVzfU2CYHa2G3P1UN5WF01RdTHSgCkri7XOlTdtk17BezlV3A== + +"@rollup/rollup-freebsd-arm64@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.54.0.tgz#b2c6039de4b75efd3f29417fcb1a795c75a4e3ee" + integrity sha512-miSvuFkmvFbgJ1BevMa4CPCFt5MPGw094knM64W9I0giUIMMmRYcGW/JWZDriaw/k1kOBtsWh1z6nIFV1vPNtA== + +"@rollup/rollup-freebsd-x64@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.54.0.tgz#9ae2a216c94f87912a596a3b3a2ec5199a689ba5" + integrity sha512-KGXIs55+b/ZfZsq9aR026tmr/+7tq6VG6MsnrvF4H8VhwflTIuYh+LFUlIsRdQSgrgmtM3fVATzEAj4hBQlaqQ== + +"@rollup/rollup-linux-arm-gnueabihf@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.54.0.tgz#69d5de7f781132f138514f2b900c523e38e2461f" + integrity sha512-EHMUcDwhtdRGlXZsGSIuXSYwD5kOT9NVnx9sqzYiwAc91wfYOE1g1djOEDseZJKKqtHAHGwnGPQu3kytmfaXLQ== + +"@rollup/rollup-linux-arm-musleabihf@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.54.0.tgz#b6431e5699747f285306ffe8c1194d7af74f801f" + integrity sha512-+pBrqEjaakN2ySv5RVrj/qLytYhPKEUwk+e3SFU5jTLHIcAtqh2rLrd/OkbNuHJpsBgxsD8ccJt5ga/SeG0JmA== + +"@rollup/rollup-linux-arm64-gnu@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.54.0.tgz#a32931baec8a0fa7b3288afb72d400ae735112c2" + integrity sha512-NSqc7rE9wuUaRBsBp5ckQ5CVz5aIRKCwsoa6WMF7G01sX3/qHUw/z4pv+D+ahL1EIKy6Enpcnz1RY8pf7bjwng== + +"@rollup/rollup-linux-arm64-musl@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.54.0.tgz#0ad72572b01eb946c0b1a7a6f17ab3be6689a963" + integrity sha512-gr5vDbg3Bakga5kbdpqx81m2n9IX8M6gIMlQQIXiLTNeQW6CucvuInJ91EuCJ/JYvc+rcLLsDFcfAD1K7fMofg== + +"@rollup/rollup-linux-loong64-gnu@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.54.0.tgz#05681f000310906512279944b5bef38c0cd4d326" + integrity sha512-gsrtB1NA3ZYj2vq0Rzkylo9ylCtW/PhpLEivlgWe0bpgtX5+9j9EZa0wtZiCjgu6zmSeZWyI/e2YRX1URozpIw== + +"@rollup/rollup-linux-ppc64-gnu@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.54.0.tgz#9847a8c9dd76d687c3bdbe38d7f5f32c6b2743c8" + integrity sha512-y3qNOfTBStmFNq+t4s7Tmc9hW2ENtPg8FeUD/VShI7rKxNW7O4fFeaYbMsd3tpFlIg1Q8IapFgy7Q9i2BqeBvA== + +"@rollup/rollup-linux-riscv64-gnu@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.54.0.tgz#173f20c278ac770ae3e969663a27d172a4545e87" + integrity sha512-89sepv7h2lIVPsFma8iwmccN7Yjjtgz0Rj/Ou6fEqg3HDhpCa+Et+YSufy27i6b0Wav69Qv4WBNl3Rs6pwhebQ== + +"@rollup/rollup-linux-riscv64-musl@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.54.0.tgz#db70c2377ae1ef61ef8673354d107ecb3fa7ffed" + integrity sha512-ZcU77ieh0M2Q8Ur7D5X7KvK+UxbXeDHwiOt/CPSBTI1fBmeDMivW0dPkdqkT4rOgDjrDDBUed9x4EgraIKoR2A== + +"@rollup/rollup-linux-s390x-gnu@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.54.0.tgz#b2c461778add1c2ee70ec07d1788611548647962" + integrity sha512-2AdWy5RdDF5+4YfG/YesGDDtbyJlC9LHmL6rZw6FurBJ5n4vFGupsOBGfwMRjBYH7qRQowT8D/U4LoSvVwOhSQ== + +"@rollup/rollup-linux-x64-gnu@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.54.0.tgz#ab140b356569601f57ab8727bd7306463841894f" + integrity sha512-WGt5J8Ij/rvyqpFexxk3ffKqqbLf9AqrTBbWDk7ApGUzaIs6V+s2s84kAxklFwmMF/vBNGrVdYgbblCOFFezMQ== + +"@rollup/rollup-linux-x64-musl@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.54.0.tgz#810134b4a9d0d88576938f2eed38999a653814a1" + integrity sha512-JzQmb38ATzHjxlPHuTH6tE7ojnMKM2kYNzt44LO/jJi8BpceEC8QuXYA908n8r3CNuG/B3BV8VR3Hi1rYtmPiw== + +"@rollup/rollup-openharmony-arm64@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.54.0.tgz#0182bae7a54e748be806acef7a7f726f6949213c" + integrity sha512-huT3fd0iC7jigGh7n3q/+lfPcXxBi+om/Rs3yiFxjvSxbSB6aohDFXbWvlspaqjeOh+hx7DDHS+5Es5qRkWkZg== + +"@rollup/rollup-win32-arm64-msvc@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.54.0.tgz#1f19349bd1c5e454d03e4508a9277b6354985b9d" + integrity sha512-c2V0W1bsKIKfbLMBu/WGBz6Yci8nJ/ZJdheE0EwB73N3MvHYKiKGs3mVilX4Gs70eGeDaMqEob25Tw2Gb9Nqyw== + +"@rollup/rollup-win32-ia32-msvc@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.54.0.tgz#234ff739993539f64efac6c2e59704a691a309c2" + integrity sha512-woEHgqQqDCkAzrDhvDipnSirm5vxUXtSKDYTVpZG3nUdW/VVB5VdCYA2iReSj/u3yCZzXID4kuKG7OynPnB3WQ== + +"@rollup/rollup-win32-x64-gnu@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.54.0.tgz#a4df0507c3be09c152a795cfc0c4f0c225765c5c" + integrity sha512-dzAc53LOuFvHwbCEOS0rPbXp6SIhAf2txMP5p6mGyOXXw5mWY8NGGbPMPrs4P1WItkfApDathBj/NzMLUZ9rtQ== + +"@rollup/rollup-win32-x64-msvc@4.54.0": + version "4.54.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.54.0.tgz#beacb356412eef5dc0164e9edfee51c563732054" + integrity sha512-hYT5d3YNdSh3mbCU1gwQyPgQd3T2ne0A3KG8KSBdav5TiBg6eInVmV+TeR5uHufiIgSFg0XsOWGW5/RhNcSvPg== "@types/estree@1.0.8": version "1.0.8" @@ -308,37 +308,37 @@ error@^4.3.0: string-template "~0.2.0" xtend "~4.0.0" -esbuild@^0.25.0: - version "0.25.10" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.10.tgz#37f5aa5cd14500f141be121c01b096ca83ac34a9" - integrity sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ== +esbuild@^0.27.0: + version "0.27.2" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.27.2.tgz#d83ed2154d5813a5367376bb2292a9296fc83717" + integrity sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw== optionalDependencies: - "@esbuild/aix-ppc64" "0.25.10" - "@esbuild/android-arm" "0.25.10" - "@esbuild/android-arm64" "0.25.10" - "@esbuild/android-x64" "0.25.10" - "@esbuild/darwin-arm64" "0.25.10" - "@esbuild/darwin-x64" "0.25.10" - "@esbuild/freebsd-arm64" "0.25.10" - "@esbuild/freebsd-x64" "0.25.10" - "@esbuild/linux-arm" "0.25.10" - "@esbuild/linux-arm64" "0.25.10" - "@esbuild/linux-ia32" "0.25.10" - "@esbuild/linux-loong64" "0.25.10" - "@esbuild/linux-mips64el" "0.25.10" - "@esbuild/linux-ppc64" "0.25.10" - "@esbuild/linux-riscv64" "0.25.10" - "@esbuild/linux-s390x" "0.25.10" - "@esbuild/linux-x64" "0.25.10" - "@esbuild/netbsd-arm64" "0.25.10" - "@esbuild/netbsd-x64" "0.25.10" - "@esbuild/openbsd-arm64" "0.25.10" - "@esbuild/openbsd-x64" "0.25.10" - "@esbuild/openharmony-arm64" "0.25.10" - "@esbuild/sunos-x64" "0.25.10" - "@esbuild/win32-arm64" "0.25.10" - "@esbuild/win32-ia32" "0.25.10" - "@esbuild/win32-x64" "0.25.10" + "@esbuild/aix-ppc64" "0.27.2" + "@esbuild/android-arm" "0.27.2" + "@esbuild/android-arm64" "0.27.2" + "@esbuild/android-x64" "0.27.2" + "@esbuild/darwin-arm64" "0.27.2" + "@esbuild/darwin-x64" "0.27.2" + "@esbuild/freebsd-arm64" "0.27.2" + "@esbuild/freebsd-x64" "0.27.2" + "@esbuild/linux-arm" "0.27.2" + "@esbuild/linux-arm64" "0.27.2" + "@esbuild/linux-ia32" "0.27.2" + "@esbuild/linux-loong64" "0.27.2" + "@esbuild/linux-mips64el" "0.27.2" + "@esbuild/linux-ppc64" "0.27.2" + "@esbuild/linux-riscv64" "0.27.2" + "@esbuild/linux-s390x" "0.27.2" + "@esbuild/linux-x64" "0.27.2" + "@esbuild/netbsd-arm64" "0.27.2" + "@esbuild/netbsd-x64" "0.27.2" + "@esbuild/openbsd-arm64" "0.27.2" + "@esbuild/openbsd-x64" "0.27.2" + "@esbuild/openharmony-arm64" "0.27.2" + "@esbuild/sunos-x64" "0.27.2" + "@esbuild/win32-arm64" "0.27.2" + "@esbuild/win32-ia32" "0.27.2" + "@esbuild/win32-x64" "0.27.2" ev-store@^7.0.0: version "7.0.0" @@ -376,9 +376,9 @@ is-object@^1.0.1: integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA== min-document@^2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" - integrity sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ== + version "2.19.2" + resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.2.tgz#f95db44639eaae3ac8ea85ae6809ae85ff7e3b81" + integrity sha512-8S5I8db/uZN8r9HSLFVWPdJCvYOejMcEC82VIzNUc6Zkklf/d1gg2psfE79/vyhWOj4+J8MtwmoOz3TmvaGu5A== dependencies: dom-walk "^0.1.0" @@ -422,34 +422,34 @@ process@^0.11.10: integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== rollup@^4.43.0: - version "4.52.4" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.52.4.tgz#71e64cce96a865fcbaa6bb62c6e82807f4e378a1" - integrity sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ== + version "4.54.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.54.0.tgz#930f4dfc41ff94d720006f9f62503612a6c319b8" + integrity sha512-3nk8Y3a9Ea8szgKhinMlGMhGMw89mqule3KWczxhIzqudyHdCIOHw8WJlj/r329fACjKLEh13ZSk7oE22kyeIw== dependencies: "@types/estree" "1.0.8" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.52.4" - "@rollup/rollup-android-arm64" "4.52.4" - "@rollup/rollup-darwin-arm64" "4.52.4" - "@rollup/rollup-darwin-x64" "4.52.4" - "@rollup/rollup-freebsd-arm64" "4.52.4" - "@rollup/rollup-freebsd-x64" "4.52.4" - "@rollup/rollup-linux-arm-gnueabihf" "4.52.4" - "@rollup/rollup-linux-arm-musleabihf" "4.52.4" - "@rollup/rollup-linux-arm64-gnu" "4.52.4" - "@rollup/rollup-linux-arm64-musl" "4.52.4" - "@rollup/rollup-linux-loong64-gnu" "4.52.4" - "@rollup/rollup-linux-ppc64-gnu" "4.52.4" - "@rollup/rollup-linux-riscv64-gnu" "4.52.4" - "@rollup/rollup-linux-riscv64-musl" "4.52.4" - "@rollup/rollup-linux-s390x-gnu" "4.52.4" - "@rollup/rollup-linux-x64-gnu" "4.52.4" - "@rollup/rollup-linux-x64-musl" "4.52.4" - "@rollup/rollup-openharmony-arm64" "4.52.4" - "@rollup/rollup-win32-arm64-msvc" "4.52.4" - "@rollup/rollup-win32-ia32-msvc" "4.52.4" - "@rollup/rollup-win32-x64-gnu" "4.52.4" - "@rollup/rollup-win32-x64-msvc" "4.52.4" + "@rollup/rollup-android-arm-eabi" "4.54.0" + "@rollup/rollup-android-arm64" "4.54.0" + "@rollup/rollup-darwin-arm64" "4.54.0" + "@rollup/rollup-darwin-x64" "4.54.0" + "@rollup/rollup-freebsd-arm64" "4.54.0" + "@rollup/rollup-freebsd-x64" "4.54.0" + "@rollup/rollup-linux-arm-gnueabihf" "4.54.0" + "@rollup/rollup-linux-arm-musleabihf" "4.54.0" + "@rollup/rollup-linux-arm64-gnu" "4.54.0" + "@rollup/rollup-linux-arm64-musl" "4.54.0" + "@rollup/rollup-linux-loong64-gnu" "4.54.0" + "@rollup/rollup-linux-ppc64-gnu" "4.54.0" + "@rollup/rollup-linux-riscv64-gnu" "4.54.0" + "@rollup/rollup-linux-riscv64-musl" "4.54.0" + "@rollup/rollup-linux-s390x-gnu" "4.54.0" + "@rollup/rollup-linux-x64-gnu" "4.54.0" + "@rollup/rollup-linux-x64-musl" "4.54.0" + "@rollup/rollup-openharmony-arm64" "4.54.0" + "@rollup/rollup-win32-arm64-msvc" "4.54.0" + "@rollup/rollup-win32-ia32-msvc" "4.54.0" + "@rollup/rollup-win32-x64-gnu" "4.54.0" + "@rollup/rollup-win32-x64-msvc" "4.54.0" fsevents "~2.3.2" source-map-js@^1.2.1: @@ -484,12 +484,12 @@ virtual-dom@^2.1.1: x-is-array "0.1.0" x-is-string "0.1.0" -vite@^7.1.10: - version "7.1.10" - resolved "https://registry.yarnpkg.com/vite/-/vite-7.1.10.tgz#47c9970f3b0fe9057bfbcfeff8cd370edd7bd41b" - integrity sha512-CmuvUBzVJ/e3HGxhg6cYk88NGgTnBoOo7ogtfJJ0fefUWAxN/WDSUa50o+oVBxuIhO8FoEZW0j2eW7sfjs5EtA== +vite@^7.3.0: + version "7.3.0" + resolved "https://registry.yarnpkg.com/vite/-/vite-7.3.0.tgz#066c7a835993a66e82004eac3e185d0d157fd658" + integrity sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg== dependencies: - esbuild "^0.25.0" + esbuild "^0.27.0" fdir "^6.5.0" picomatch "^4.0.3" postcss "^8.5.6"