@photonhealth/elements 0.2.7 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +321 -277
- package/dist/index.mjs +9390 -9430
- package/dist/photon-med-search/components/MedicationConceptDropdown.d.ts +6 -0
- package/dist/photon-med-search/components/MedicationFilterDropdown.d.ts +23 -0
- package/dist/photon-multirx-form/components/DraftPrescriptionCard.d.ts +2 -0
- package/package.json +1 -1
- package/dist/photon-form/index.d.ts +0 -1
- package/dist/photon-med-search/components/MedicationFormDropdown.d.ts +0 -4
- package/dist/photon-med-search/components/MedicationNameDropdown.d.ts +0 -1
- package/dist/photon-med-search/components/MedicationRouteDropdown.d.ts +0 -4
- package/dist/photon-med-search/components/MedicationStrengthDropdown.d.ts +0 -4
- package/dist/photon-prescribe-form/index.d.ts +0 -5
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const filters: {
|
|
2
|
+
STRENGTH: {
|
|
3
|
+
query: import("@apollo/client").DocumentNode;
|
|
4
|
+
key: string;
|
|
5
|
+
};
|
|
6
|
+
ROUTE: {
|
|
7
|
+
query: import("@apollo/client").DocumentNode;
|
|
8
|
+
key: string;
|
|
9
|
+
};
|
|
10
|
+
FORM: {
|
|
11
|
+
query: import("@apollo/client").DocumentNode;
|
|
12
|
+
key: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
type filterType = keyof typeof filters;
|
|
16
|
+
type MedicationFormDropdownProps = {
|
|
17
|
+
filterType: filterType;
|
|
18
|
+
conceptId?: string;
|
|
19
|
+
medicationId?: string;
|
|
20
|
+
setMedicationId: (id: string) => void;
|
|
21
|
+
};
|
|
22
|
+
export declare const MedicationFilterDropdown: (props: MedicationFormDropdownProps) => import("solid-js").JSX.Element;
|
|
23
|
+
export {};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import type { TemplateOverrides } from '@photonhealth/components';
|
|
1
2
|
export declare const DraftPrescriptionCard: (props: {
|
|
2
3
|
templateIds: string[];
|
|
4
|
+
templateOverrides: TemplateOverrides;
|
|
3
5
|
prescriptionIds: string[];
|
|
4
6
|
prescriptionRef: HTMLDivElement | undefined;
|
|
5
7
|
actions: Record<string, (...args: any) => any>;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const MedicationNameDropdown: () => import("solid-js").JSX.Element;
|