@herdingbits/trailhead-cloudscape 0.0.3 → 0.0.5

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/README.md CHANGED
@@ -58,7 +58,7 @@ This adapter supports React 18 and React 19. Peer dependencies specify `^19.0.0`
58
58
 
59
59
  ## Documentation
60
60
 
61
- See the [main Trailhead documentation](https://github.com/herdingbits/trailhead) for more information.
61
+ See the [main Trailhead documentation](https://github.com/quicken/trailhead) for more information.
62
62
 
63
63
  ## License
64
64
 
package/dist/shell-app.js CHANGED
@@ -142,5 +142,5 @@ export function ShellApp({ shell }) {
142
142
  padding: '24px',
143
143
  borderRadius: '8px',
144
144
  textAlign: 'center',
145
- }, children: [_jsx(Spinner, { size: "large" }), _jsx("div", { style: { marginTop: '16px' }, children: busyMessage })] }) })), _jsx(Modal, { visible: dialogState.visible, onDismiss: handleDialogDismiss, header: dialogState.title, footer: _jsx(Box, { float: "right", children: _jsx(SpaceBetween, { direction: "horizontal", size: "xs", children: dialogState.buttons.map((btn, idx) => (_jsx(Button, { variant: btn.variant === 'primary' ? 'primary' : 'normal', onClick: () => handleDialogButton(btn.value), children: btn.label }, idx))) }) }), children: dialogState.message }), _jsx(ShellLayout, { navigation: navigation, currentPath: currentPath, basePath: shell.basePath, onNavigate: handleNavigate, children: _jsx("div", { ref: contentRef }) })] }));
145
+ }, children: [_jsx(Spinner, { size: "large" }), _jsx("div", { style: { marginTop: '16px' }, children: busyMessage })] }) })), _jsx(Modal, { visible: dialogState.visible, onDismiss: handleDialogDismiss, header: dialogState.title, footer: _jsx(Box, { float: "right", children: _jsx(SpaceBetween, { direction: "horizontal", size: "xs", children: dialogState.buttons.map((btn, idx) => (_jsx(Button, { variant: btn.variant === 'primary' ? 'primary' : 'normal', onClick: () => handleDialogButton(btn.value), children: btn.label }, idx))) }) }), children: dialogState.message }), _jsx(ShellLayout, { navigation: navigation, currentPath: currentPath, basePath: shell.basePath, onNavigate: handleNavigate, children: _jsx("div", { id: "shell-content", ref: contentRef }) })] }));
146
146
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@herdingbits/trailhead-cloudscape",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "AWS CloudScape adapter for Trailhead. React-based shell with CloudScape components. Supports React 19.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -21,15 +21,15 @@
21
21
  "build": "npm run clean && tsc && cp src/shell.css dist/"
22
22
  },
23
23
  "peerDependencies": {
24
- "@herdingbits/trailhead-core": "^0.0.4",
24
+ "@herdingbits/trailhead-core": "^0.0.9",
25
25
  "@cloudscape-design/components": "^3.0.0",
26
26
  "@cloudscape-design/global-styles": "^1.0.0",
27
27
  "react": "^19.0.0",
28
28
  "react-dom": "^19.0.0"
29
29
  },
30
30
  "devDependencies": {
31
- "@herdingbits/trailhead-types": "^0.0.5",
32
- "@cloudscape-design/components": "^3.0.1202",
31
+ "@herdingbits/trailhead-types": "^0.0.7",
32
+ "@cloudscape-design/components": "^3.0.1203",
33
33
  "@cloudscape-design/global-styles": "^1.0.50",
34
34
  "@types/react": "^19.2.14",
35
35
  "@types/react-dom": "^19.2.3",
@@ -51,7 +51,7 @@
51
51
  },
52
52
  "repository": {
53
53
  "type": "git",
54
- "url": "https://github.com/herdingbits/trailhead.git",
54
+ "url": "https://github.com/quicken/trailhead.git",
55
55
  "directory": "packages/cloudscape"
56
56
  }
57
57
  }