@alfadocs/ui-kit 0.98.0 → 0.98.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ import { useTranslation as $ } from "react-i18next";
4
4
  import { a as p, T as b, A as be, d as ne, D as P, e as ge } from "./actions-cell-renderer-DaL80uqL.js";
5
5
  import { S as Ce } from "./select-BW5ecXlX.js";
6
6
  import { u as ve } from "./registry-DvAUVLHh.js";
7
- import { I as Ne, L as we, b as L, a as _, c as U, N as H, d as F, S as R, T as ie, D as K, C as Te, g as Fe, f as Re, U as Ie, e as ye } from "./link-cell-renderer-flfZh2qY.js";
7
+ import { I as Ne, L as we, b as L, a as _, c as U, N as H, d as F, S as R, T as ie, D as K, C as Te, g as Fe, f as Re, U as Ie, e as ye } from "./link-cell-renderer-Bt-mXeQY.js";
8
8
  import { B as ae } from "./badge-DCOqV9mI.js";
9
9
  import { c as Pe } from "./index-D2ZczOXr.js";
10
10
  import { T as We } from "./timestamp-BV2lC-wV.js";
@@ -1097,4 +1097,4 @@ export {
1097
1097
  q as g,
1098
1098
  tt as u
1099
1099
  };
1100
- //# sourceMappingURL=patient-table-CvZTIM2R.js.map
1100
+ //# sourceMappingURL=patient-table-QEVsFvwq.js.map
@@ -168,7 +168,9 @@ const g = se("desktop"), ie = C(
168
168
  // Position the Viewport flush below the pill / nav row. Radix sets
169
169
  // `--radix-navigation-menu-viewport-width` and `…-height` so the
170
170
  // panel sizes itself to whichever Content is currently active.
171
- "ds:absolute ds:top-full ds:start-1/2 ds:-translate-x-1/2",
171
+ // Logical inset + physical translate: flip the shift in RTL, where
172
+ // `start-1/2` resolves to `right: 50%` (same idiom as CommandPalette).
173
+ "ds:absolute ds:top-full ds:start-1/2 ds:-translate-x-1/2 ds:rtl:translate-x-1/2",
172
174
  "ds:mt-[var(--spacing-sm)]",
173
175
  "ds:w-[var(--radix-navigation-menu-viewport-width)]",
174
176
  "ds:h-[var(--radix-navigation-menu-viewport-height)]",
@@ -598,4 +600,4 @@ export {
598
600
  Le as P,
599
601
  Pe as p
600
602
  };
601
- //# sourceMappingURL=public-header.agent-rX_VA6hd.js.map
603
+ //# sourceMappingURL=public-header.agent-_8W9biCO.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "packageVersion": "0.98.0",
3
+ "packageVersion": "0.98.1",
4
4
  "components": [
5
5
  {
6
6
  "kind": "component",
@@ -13299,6 +13299,193 @@
13299
13299
  }
13300
13300
  ]
13301
13301
  },
13302
+ {
13303
+ "kind": "pattern",
13304
+ "id": "anamnesis",
13305
+ "composes": [
13306
+ {
13307
+ "component": "tabs",
13308
+ "as": "recordViews"
13309
+ },
13310
+ {
13311
+ "component": "accordion",
13312
+ "as": "intakeSections"
13313
+ },
13314
+ {
13315
+ "component": "progress",
13316
+ "as": "intakeProgress"
13317
+ },
13318
+ {
13319
+ "component": "form-field",
13320
+ "as": "field",
13321
+ "entity": "answer"
13322
+ },
13323
+ {
13324
+ "component": "radio-group",
13325
+ "as": "yesNoAnswer"
13326
+ },
13327
+ {
13328
+ "component": "text-input",
13329
+ "as": "textAnswer"
13330
+ },
13331
+ {
13332
+ "component": "text-area",
13333
+ "as": "freeText"
13334
+ },
13335
+ {
13336
+ "component": "number-input",
13337
+ "as": "measurement",
13338
+ "entity": "parameter"
13339
+ },
13340
+ {
13341
+ "component": "time-picker",
13342
+ "as": "mealTime",
13343
+ "entity": "meal"
13344
+ },
13345
+ {
13346
+ "component": "select",
13347
+ "as": "picker"
13348
+ },
13349
+ {
13350
+ "component": "multi-select",
13351
+ "as": "pathologies",
13352
+ "entity": "pathology"
13353
+ },
13354
+ {
13355
+ "component": "collapsible",
13356
+ "as": "intakeReview"
13357
+ },
13358
+ {
13359
+ "component": "sparkline",
13360
+ "as": "trend",
13361
+ "entity": "parameter"
13362
+ },
13363
+ {
13364
+ "component": "description-list",
13365
+ "as": "readOnlyValues"
13366
+ },
13367
+ {
13368
+ "component": "card",
13369
+ "as": "block"
13370
+ },
13371
+ {
13372
+ "component": "badge",
13373
+ "as": "status"
13374
+ },
13375
+ {
13376
+ "component": "button",
13377
+ "as": "action"
13378
+ },
13379
+ {
13380
+ "component": "icon-button",
13381
+ "as": "removeAction"
13382
+ },
13383
+ {
13384
+ "component": "timestamp",
13385
+ "as": "visitDate"
13386
+ }
13387
+ ],
13388
+ "workflows": [
13389
+ {
13390
+ "name": "start_intake",
13391
+ "safety": "phi",
13392
+ "description": "Open a fresh pre-visit questionnaire for the patient to begin the intake interview.",
13393
+ "descriptionKey": "ui.agent.anamnesis.workflows.startIntake",
13394
+ "uiActions": [],
13395
+ "apiActions": [
13396
+ "anamnesis.create"
13397
+ ]
13398
+ },
13399
+ {
13400
+ "name": "navigate_section",
13401
+ "safety": "read",
13402
+ "description": "Move between questionnaire sections in the intake, reading the current section index.",
13403
+ "descriptionKey": "ui.agent.anamnesis.workflows.navigateSection",
13404
+ "uiActions": [
13405
+ "accordion.expand"
13406
+ ],
13407
+ "stateReads": [
13408
+ "accordion.openItems"
13409
+ ],
13410
+ "apiActions": []
13411
+ },
13412
+ {
13413
+ "name": "save_intake",
13414
+ "safety": "phi",
13415
+ "description": "Persist the patient's questionnaire answers. Writes patient-identifiable clinical history.",
13416
+ "descriptionKey": "ui.agent.anamnesis.workflows.saveIntake",
13417
+ "uiActions": [],
13418
+ "apiActions": [
13419
+ "anamnesis.updateAnswers"
13420
+ ]
13421
+ },
13422
+ {
13423
+ "name": "select_view",
13424
+ "safety": "read",
13425
+ "description": "Switch the diagnostic workspace between the current-visit compile view and the across-visits evolution view.",
13426
+ "descriptionKey": "ui.agent.anamnesis.workflows.selectView",
13427
+ "uiActions": [
13428
+ "tabs.select_tab"
13429
+ ],
13430
+ "stateReads": [
13431
+ "tabs.activeTab"
13432
+ ],
13433
+ "apiActions": []
13434
+ },
13435
+ {
13436
+ "name": "record_measurement",
13437
+ "safety": "phi",
13438
+ "description": "Record or correct an anthropometric or blood-test value for the current visit. Writes patient clinical data.",
13439
+ "descriptionKey": "ui.agent.anamnesis.workflows.recordMeasurement",
13440
+ "uiActions": [
13441
+ "number-input.set_value"
13442
+ ],
13443
+ "apiActions": [
13444
+ "anamnesis.updateVisit"
13445
+ ]
13446
+ },
13447
+ {
13448
+ "name": "assign_pathologies",
13449
+ "safety": "phi",
13450
+ "description": "Assign or remove coded pathologies for the current visit via the multi-select, reading the current assignments.",
13451
+ "descriptionKey": "ui.agent.anamnesis.workflows.assignPathologies",
13452
+ "uiActions": [
13453
+ "multi-select.set_selection"
13454
+ ],
13455
+ "stateReads": [
13456
+ "multi-select.selection"
13457
+ ],
13458
+ "apiActions": [
13459
+ "anamnesis.updatePathologies"
13460
+ ]
13461
+ },
13462
+ {
13463
+ "name": "compare_visits",
13464
+ "safety": "read",
13465
+ "description": "Pick two visits to compare, reading the selected visit ids, so the grid marks exactly what changed.",
13466
+ "descriptionKey": "ui.agent.anamnesis.workflows.compareVisits",
13467
+ "uiActions": [
13468
+ "select.set_value"
13469
+ ],
13470
+ "stateReads": [
13471
+ "select.value"
13472
+ ],
13473
+ "apiActions": []
13474
+ },
13475
+ {
13476
+ "name": "review_record",
13477
+ "safety": "read",
13478
+ "description": "Review a completed anamnesis in the care plan: expand the intake answers and read the record. No mutation.",
13479
+ "descriptionKey": "ui.agent.anamnesis.workflows.reviewRecord",
13480
+ "uiActions": [
13481
+ "collapsible.toggle"
13482
+ ],
13483
+ "apiActions": [
13484
+ "anamnesis.get"
13485
+ ]
13486
+ }
13487
+ ]
13488
+ },
13302
13489
  {
13303
13490
  "kind": "pattern",
13304
13491
  "id": "appointments",
@@ -13983,6 +14170,109 @@
13983
14170
  }
13984
14171
  ]
13985
14172
  },
14173
+ {
14174
+ "kind": "pattern",
14175
+ "id": "care-plan-editor-dietitian",
14176
+ "composes": [
14177
+ {
14178
+ "component": "care-plan-header",
14179
+ "as": "planHeader"
14180
+ },
14181
+ {
14182
+ "component": "data-table",
14183
+ "as": "servicesGrid",
14184
+ "entity": "treatment"
14185
+ },
14186
+ {
14187
+ "component": "control-room-rail",
14188
+ "as": "toolRail"
14189
+ },
14190
+ {
14191
+ "component": "entity-summary",
14192
+ "as": "planSummary"
14193
+ }
14194
+ ],
14195
+ "workflows": [
14196
+ {
14197
+ "name": "select_plan",
14198
+ "safety": "read",
14199
+ "description": "Open one of the patient's nutrition / weight-management care plans from the plan list.",
14200
+ "descriptionKey": "ui.agent.dietitianCarePlanEditor.workflows.selectPlan",
14201
+ "uiActions": [],
14202
+ "apiActions": [
14203
+ "carePlan.get"
14204
+ ]
14205
+ },
14206
+ {
14207
+ "name": "add_plan",
14208
+ "safety": "write",
14209
+ "description": "Create a new nutrition care plan for the patient.",
14210
+ "descriptionKey": "ui.agent.dietitianCarePlanEditor.workflows.addPlan",
14211
+ "uiActions": [],
14212
+ "apiActions": [
14213
+ "carePlan.create"
14214
+ ]
14215
+ },
14216
+ {
14217
+ "name": "mark_service_done",
14218
+ "safety": "write",
14219
+ "description": "Mark a planned service as delivered from its row action in the services grid.",
14220
+ "descriptionKey": "ui.agent.dietitianCarePlanEditor.workflows.markServiceDone",
14221
+ "uiActions": [],
14222
+ "stateReads": [
14223
+ "data-table.selection"
14224
+ ],
14225
+ "apiActions": [
14226
+ "carePlanTreatment.update"
14227
+ ]
14228
+ },
14229
+ {
14230
+ "name": "add_service",
14231
+ "safety": "write",
14232
+ "description": "Add a service row (consultation, meal plan, supplement, …) to the plan.",
14233
+ "descriptionKey": "ui.agent.dietitianCarePlanEditor.workflows.addService",
14234
+ "uiActions": [],
14235
+ "apiActions": [
14236
+ "carePlanTreatment.create"
14237
+ ]
14238
+ },
14239
+ {
14240
+ "name": "remove_service",
14241
+ "safety": "destructive",
14242
+ "description": "Remove the selected service(s) from the plan (read data-table.selection for the targets).",
14243
+ "descriptionKey": "ui.agent.dietitianCarePlanEditor.workflows.removeService",
14244
+ "uiActions": [],
14245
+ "stateReads": [
14246
+ "data-table.selection"
14247
+ ],
14248
+ "apiActions": [
14249
+ "carePlanTreatment.delete"
14250
+ ]
14251
+ },
14252
+ {
14253
+ "name": "save_plan",
14254
+ "safety": "write",
14255
+ "description": "Persist the current edits to the nutrition care plan.",
14256
+ "descriptionKey": "ui.agent.dietitianCarePlanEditor.workflows.savePlan",
14257
+ "uiActions": [],
14258
+ "apiActions": [
14259
+ "carePlan.update"
14260
+ ]
14261
+ },
14262
+ {
14263
+ "name": "regenerate_summary",
14264
+ "safety": "write",
14265
+ "description": "Regenerate the AI plan summary in the docked Plan summary tool.",
14266
+ "descriptionKey": "ui.agent.dietitianCarePlanEditor.workflows.regenerateSummary",
14267
+ "uiActions": [
14268
+ "entity-summary.regenerate"
14269
+ ],
14270
+ "apiActions": [
14271
+ "alia.summarise"
14272
+ ]
14273
+ }
14274
+ ]
14275
+ },
13986
14276
  {
13987
14277
  "kind": "pattern",
13988
14278
  "id": "care-plan-editor-ophthalmology",
@@ -1353,6 +1353,18 @@
1353
1353
  "reviewUsage": "Read the assistant usage meter; when the quota is full the composer locks behind an upgrade CTA."
1354
1354
  }
1355
1355
  },
1356
+ "anamnesis": {
1357
+ "workflows": {
1358
+ "startIntake": "Open a fresh pre-visit questionnaire for the patient to begin the intake interview.",
1359
+ "navigateSection": "Move between questionnaire sections in the intake, reading the current section index.",
1360
+ "saveIntake": "Persist the patient's questionnaire answers. Writes patient-identifiable clinical history.",
1361
+ "selectView": "Switch the diagnostic workspace between the current-visit compile view and the across-visits evolution view.",
1362
+ "recordMeasurement": "Record or correct an anthropometric or blood-test value for the current visit. Writes patient clinical data.",
1363
+ "assignPathologies": "Assign or remove coded pathologies for the current visit via the multi-select, reading the current assignments.",
1364
+ "compareVisits": "Pick two visits to compare, reading the selected visit ids, so the grid marks exactly what changed.",
1365
+ "reviewRecord": "Review a completed anamnesis in the care plan: expand the intake answers and read the record. No mutation."
1366
+ }
1367
+ },
1356
1368
  "appointments": {
1357
1369
  "workflows": {
1358
1370
  "filterAppointments": "Narrow the agenda by date range, patient, operator, chair, type, or status using the per-column filters.",
@@ -1396,6 +1408,17 @@
1396
1408
  "regenerateSummary": "Regenerate the AI plan summary in the docked Plan summary tool."
1397
1409
  }
1398
1410
  },
1411
+ "dietitianCarePlanEditor": {
1412
+ "workflows": {
1413
+ "selectPlan": "Open one of the patient's nutrition / weight-management care plans from the plan list.",
1414
+ "addPlan": "Create a new nutrition care plan for the patient.",
1415
+ "markServiceDone": "Mark a planned service as delivered from its row action in the services grid.",
1416
+ "addService": "Add a service row (consultation, meal plan, supplement, …) to the plan.",
1417
+ "removeService": "Remove the selected service(s) from the plan (read data-table.selection for the targets).",
1418
+ "savePlan": "Persist the current edits to the nutrition care plan.",
1419
+ "regenerateSummary": "Regenerate the AI plan summary in the docked Plan summary tool."
1420
+ }
1421
+ },
1399
1422
  "ophthalmologyCarePlanEditor": {
1400
1423
  "workflows": {
1401
1424
  "selectPlan": "Open one of the patient's optical / glasses care plans from the plan list.",
@@ -1,4 +1,4 @@
1
- import { B as A, C as R, O as a, b as s } from "../../_chunks/booking-BSpSMmJ2.js";
1
+ import { B as A, C as R, O as a, b as s } from "../../_chunks/booking-Bhbvef95.js";
2
2
  export {
3
3
  A as Booking,
4
4
  R as CONFIRMATION_CHANNEL_ORDER,
@@ -1,6 +1,6 @@
1
1
  import { A as r, D as l, T as t, a as s, b as n, c as o, d, e as i, f as C } from "../../_chunks/actions-cell-renderer-DaL80uqL.js";
2
2
  import { B as T, C as F, E as g, a as b, R as u, T as c, b as m, r as f, u as x } from "../../_chunks/editable-currency-cell-renderer-Dus_sBvX.js";
3
- import { C as p, D as h, a as y, b as E, I as S, L as A, N as L, c as N, S as B, d as I, e as P, T as U, f as W, g as k, U as v } from "../../_chunks/link-cell-renderer-flfZh2qY.js";
3
+ import { C as p, D as h, a as y, b as E, I as S, L as A, N as L, c as N, S as B, d as I, e as P, T as U, f as W, g as k, U as v } from "../../_chunks/link-cell-renderer-Bt-mXeQY.js";
4
4
  export {
5
5
  r as ActionsCellRenderer,
6
6
  T as BalanceCellRenderer,
@@ -1,4 +1,4 @@
1
- import { M as a, m as l, a as i } from "../../_chunks/multi-select-D5QLBJM1.js";
1
+ import { M as a, m as l, a as i } from "../../_chunks/multi-select-CC52Qws6.js";
2
2
  export {
3
3
  a as MultiSelect,
4
4
  l as multiSelectAgent,
@@ -1,4 +1,4 @@
1
- import { B as s, C as l, N as t, P as n, a as C, b as i, g as o, u } from "../../_chunks/patient-table-CvZTIM2R.js";
1
+ import { B as s, C as l, N as t, P as n, a as C, b as i, g as o, u } from "../../_chunks/patient-table-QEVsFvwq.js";
2
2
  export {
3
3
  s as BalanceBadgeCell,
4
4
  l as CarePlanStatusCell,
@@ -1,4 +1,4 @@
1
- import { P as r, p } from "../../_chunks/public-header.agent-rX_VA6hd.js";
1
+ import { P as r, p } from "../../_chunks/public-header.agent-_8W9biCO.js";
2
2
  export {
3
3
  r as PublicHeader,
4
4
  p as publicHeaderAgent
@@ -196,7 +196,7 @@
196
196
 
197
197
  /* ───────────────────────────────────────────────────────────────────────
198
198
  SECTION B — non-token declarations. ORIGINAL LAYER PRESERVED.
199
- 121 declarations across 117 rules.
199
+ 123 declarations across 119 rules.
200
200
 
201
201
  Kit-authored arbitrary-value utilities (`ds:w-[20rem]`) and the
202
202
  vendored AG Grid rules. These set real properties on real elements,
@@ -397,12 +397,18 @@
397
397
  .ds\:max-w-\[42rem\] {
398
398
  max-width:672px;
399
399
  }
400
+ .ds\:max-w-\[48rem\] {
401
+ max-width:768px;
402
+ }
400
403
  .ds\:max-w-\[56rem\] {
401
404
  max-width:896px;
402
405
  }
403
406
  .ds\:max-w-\[64rem\] {
404
407
  max-width:1024px;
405
408
  }
409
+ .ds\:max-w-\[76rem\] {
410
+ max-width:1216px;
411
+ }
406
412
  .ds\:max-w-\[80rem\] {
407
413
  max-width:1280px;
408
414
  }
package/dist/index.js CHANGED
@@ -44,7 +44,7 @@ import { T as or, t as ir } from "./_chunks/token-insert-menu-BYv6yoZI.js";
44
44
  import { F as lr, b as dr, f as mr } from "./_chunks/file-upload-CwxdqkMK.js";
45
45
  import { F as cr } from "./_chunks/form-field-M5UpX65Z.js";
46
46
  import { F as gr, u as Ar } from "./_chunks/form-field-context-B3APVHKx.js";
47
- import { M as xr, m as Cr, a as Sr } from "./_chunks/multi-select-D5QLBJM1.js";
47
+ import { M as xr, m as Cr, a as Sr } from "./_chunks/multi-select-CC52Qws6.js";
48
48
  import { N as Ir, u as Pr } from "./_chunks/number-input-DjWzmlEY.js";
49
49
  import { O as Nr } from "./_chunks/otp-input-DzBQ-CpE.js";
50
50
  import { P as Er, u as Rr } from "./_chunks/use-password-requirements-Bwtqx1qN.js";
@@ -77,7 +77,7 @@ import { C as so } from "./_chunks/contact-card-0hnFJwrz.js";
77
77
  import { C as to } from "./_chunks/counter-dRlTNC_y.js";
78
78
  import { A as io, D as no, T as lo, a as mo, b as po, c as co, d as fo, e as go, f as Ao } from "./_chunks/actions-cell-renderer-DaL80uqL.js";
79
79
  import { B as xo, C as Co, E as So, a as To, R as Io, T as Po, b as ho, r as No, u as bo } from "./_chunks/editable-currency-cell-renderer-Dus_sBvX.js";
80
- import { C as Ro, D as _o, a as yo, b as vo, I as Do, L as Fo, N as Mo, c as Lo, S as Oo, d as ko, e as Bo, T as wo, f as Ho, g as Go, U as Vo } from "./_chunks/link-cell-renderer-flfZh2qY.js";
80
+ import { C as Ro, D as _o, a as yo, b as vo, I as Do, L as Fo, N as Mo, c as Lo, S as Oo, d as ko, e as Bo, T as wo, f as Ho, g as Go, U as Vo } from "./_chunks/link-cell-renderer-Bt-mXeQY.js";
81
81
  import { D as Wo, d as zo, a as Ko, b as Yo } from "./_chunks/data-table-tabs-BEUXiRlu.js";
82
82
  import { C as Xo, c as qo } from "./_chunks/clinical-note-card-C7F_24IC.js";
83
83
  import { D as $o } from "./_chunks/description-list-ClNLdRMy.js";
@@ -108,7 +108,7 @@ import { N as Ln, n as On, t as kn } from "./_chunks/nav-grid-gRudLsPX.js";
108
108
  import { L as wn } from "./_chunks/link-CPb_pZPr.js";
109
109
  import { P as Gn, a as Vn, b as Un, c as Wn, d as zn, e as Kn, f as Yn, g as jn, p as Xn } from "./_chunks/pagination-EkD5SiCK.js";
110
110
  import { D as Qn, a as $n, P as Jn, S as Zn, c as al, p as el } from "./_chunks/public-footer.agent-BKkK3T3V.js";
111
- import { P as rl, p as tl } from "./_chunks/public-header.agent-rX_VA6hd.js";
111
+ import { P as rl, p as tl } from "./_chunks/public-header.agent-_8W9biCO.js";
112
112
  import { S as il, f as nl, s as ll } from "./_chunks/search-bar-CJj6sI9m.js";
113
113
  import { S as ml, a as pl, b as cl, c as fl, d as gl, e as Al, f as ul, g as xl, h as Cl, i as Sl, j as Tl, k as Il, l as Pl, m as hl, n as Nl, o as bl, p as El, q as Rl, s as _l, u as yl } from "./_chunks/sidebar-C-Gr2LL-.js";
114
114
  import { S as Dl } from "./_chunks/stepper-accordion-BeVMZPuG.js";
@@ -181,7 +181,7 @@ import { T as uc } from "./_chunks/typing-indicator-DHeVN4ob.js";
181
181
  import { A as Cc } from "./_chunks/anamnesis-card-CJ5MNbkc.js";
182
182
  import { D as Tc, F as Ic, a as Pc, M as hc, b as Nc, e as bc, f as Ec, g as Rc, c as _c, m as yc, r as vc, v as Dc } from "./_chunks/muscle-scheme-kgCX5qfO.js";
183
183
  import { A as Mc, a as Lc, b as Oc, c as kc, d as Bc, e as wc, C as Hc, f as Gc, g as Vc, D as Uc, h as Wc, E as zc, L as Kc, O as Yc, P as jc, i as Xc, j as qc, k as Qc, l as $c, R as Jc, S as Zc, m as af, n as ef, o as sf, p as rf, q as tf, r as of, s as nf, t as lf, u as df, v as mf, w as pf, x as cf, y as ff, z as gf, B as Af, F as uf } from "./_chunks/optical-prescription-BEjYQjiO.js";
184
- import { B as Cf, C as Sf, O as Tf, b as If } from "./_chunks/booking-BSpSMmJ2.js";
184
+ import { B as Cf, C as Sf, O as Tf, b as If } from "./_chunks/booking-Bhbvef95.js";
185
185
  import { C as hf, c as Nf, r as bf } from "./_chunks/calendar-4dXTvsCz.js";
186
186
  import { C as Rf } from "./_chunks/calendar-event-card-C6qGtywL.js";
187
187
  import { C as yf, c as vf } from "./_chunks/care-plan-card-BrwhyIJI.js";
@@ -191,7 +191,7 @@ import { O as wf, o as Hf } from "./_chunks/operator-hero-DVy0RGoD.js";
191
191
  import { P as Vf, p as Uf } from "./_chunks/patient-details-DrhlTrLf.js";
192
192
  import { P as zf, p as Kf } from "./_chunks/patient-search-vtRTSdf6.js";
193
193
  import { P as jf, p as Xf } from "./_chunks/patient-summary-card-C-iVDo53.js";
194
- import { B as Qf, C as $f, N as Jf, P as Zf, a as ag, b as eg, g as sg, u as rg } from "./_chunks/patient-table-CvZTIM2R.js";
194
+ import { B as Qf, C as $f, N as Jf, P as Zf, a as ag, b as eg, g as sg, u as rg } from "./_chunks/patient-table-QEVsFvwq.js";
195
195
  import { B as og, M as ig, P as ng, a as lg, b as dg, c as mg, d as pg, S as cg, e as fg, f as gg, g as Ag, h as ug, p as xg, i as Cg, j as Sg, k as Tg, s as Ig, t as Pg, l as hg } from "./_chunks/periodontal-chart-CYBhr9vc.js";
196
196
  import { P as bg, a as Eg, p as Rg } from "./_chunks/periodontal-chart-card-WVjJAheq.js";
197
197
  import { D as yg, P as vg, a as Dg, b as Fg, c as Mg, S as Lg, e as Og, i as kg, p as Bg } from "./_chunks/periodontal-diagnosis-cco40xTa.js";