@medplum/react 0.9.21 → 0.9.22

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.
@@ -1511,6 +1511,64 @@ div.medplum-nav-menu-container {
1511
1511
  margin: 0;
1512
1512
  }
1513
1513
 
1514
+ .medplum-calendar-table {
1515
+ width: 350px;
1516
+ }
1517
+
1518
+ .medplum-calendar-table th {
1519
+ font-weight: normal;
1520
+ font-size: 11px;
1521
+ padding: 8px;
1522
+ text-align: center;
1523
+ }
1524
+
1525
+ .medplum-calendar-table td {
1526
+ padding: 2px 4px;
1527
+ }
1528
+
1529
+ .medplum-calendar-table button {
1530
+ width: 44px;
1531
+ height: 44px;
1532
+ color: #0060e6;
1533
+ font-size: 16px;
1534
+ font-weight: bold;
1535
+ text-align: center;
1536
+ padding: 0;
1537
+ background-color: #eef5ff;
1538
+ border: 0;
1539
+ border-radius: 50%;
1540
+ cursor: pointer;
1541
+ }
1542
+
1543
+ .medplum-calendar-table button:hover {
1544
+ background-color: #d9e9ff;
1545
+ }
1546
+
1547
+ .medplum-calendar-table button:disabled {
1548
+ background-color: white;
1549
+ cursor: default;
1550
+ color: #666;
1551
+ font-weight: normal;
1552
+ }
1553
+
1554
+ .medplum-calendar-container {
1555
+ display: flex;
1556
+ min-height: 400px;
1557
+ }
1558
+
1559
+ .medplum-calendar-info-pane {
1560
+ min-width: 300px;
1561
+ padding: 20px;
1562
+ border-right: 1px solid #ddd;
1563
+ }
1564
+
1565
+ .medplum-calendar-selection-pane {
1566
+ min-width: 300px;
1567
+ padding: 20px;
1568
+ }
1569
+
1570
+ .grecaptcha-badge { visibility: hidden; }
1571
+
1514
1572
  .medplum-signin {
1515
1573
  max-width: 400px;
1516
1574
  }
@@ -61,6 +61,7 @@ export * from './ResourcePropertyDisplay';
61
61
  export * from './ResourcePropertyInput';
62
62
  export * from './ResourceTable';
63
63
  export * from './ResourceTimeline';
64
+ export * from './Scheduler';
64
65
  export * from './Scrollable';
65
66
  export * from './SearchControl';
66
67
  export * from './SearchFieldEditor';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/react",
3
- "version": "0.9.21",
3
+ "version": "0.9.22",
4
4
  "description": "Medplum React Component Library",
5
5
  "author": "Medplum <hello@medplum.com>",
6
6
  "license": "Apache-2.0",
@@ -19,26 +19,26 @@
19
19
  "storybook": "build-storybook"
20
20
  },
21
21
  "devDependencies": {
22
- "@medplum/core": "0.9.21",
23
- "@medplum/fhirtypes": "0.9.21",
24
- "@medplum/mock": "0.9.21",
22
+ "@medplum/core": "0.9.22",
23
+ "@medplum/fhirtypes": "0.9.22",
24
+ "@medplum/mock": "0.9.22",
25
25
  "@storybook/addon-actions": "6.5.9",
26
26
  "@storybook/addon-essentials": "6.5.9",
27
27
  "@storybook/addon-links": "6.5.9",
28
28
  "@storybook/builder-webpack5": "6.5.9",
29
29
  "@storybook/manager-webpack5": "6.5.9",
30
30
  "@storybook/react": "6.5.9",
31
- "@testing-library/dom": "8.14.0",
31
+ "@testing-library/dom": "8.16.0",
32
32
  "@testing-library/jest-dom": "5.16.4",
33
33
  "@testing-library/react": "13.3.0",
34
- "@types/jest": "28.1.3",
35
- "@types/node": "18.0.0",
36
- "@types/react": "18.0.14",
37
- "@types/react-dom": "18.0.5",
34
+ "@types/jest": "28.1.4",
35
+ "@types/node": "18.0.3",
36
+ "@types/react": "18.0.15",
37
+ "@types/react-dom": "18.0.6",
38
38
  "@types/react-router-dom": "5.3.3",
39
- "dotenv-webpack": "7.1.1",
39
+ "dotenv-webpack": "8.0.0",
40
40
  "identity-obj-proxy": "3.0.0",
41
- "jest": "28.1.1",
41
+ "jest": "28.1.2",
42
42
  "jest-each": "28.1.1",
43
43
  "html-webpack-plugin": "5.5.0",
44
44
  "react": "18.2.0",
@@ -48,7 +48,7 @@
48
48
  "typescript": "4.7.4"
49
49
  },
50
50
  "peerDependencies": {
51
- "@medplum/core": "0.9.21",
51
+ "@medplum/core": "0.9.22",
52
52
  "react": "^17.0.2 || ^18.0.0",
53
53
  "react-dom": "^17.0.2 || ^18.0.0",
54
54
  "react-router-dom": "^6.2.2"