@nordhealth/components 1.0.0-alpha.52 → 1.0.0-alpha.55
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 +1 -1
- package/custom-elements.json +981 -972
- package/lib/Button.js +1 -1
- package/lib/Button.js.map +1 -1
- package/lib/CommandMenu.js +1 -1
- package/lib/CommandMenu.js.map +1 -1
- package/lib/SelectEvent.js +2 -0
- package/lib/SelectEvent.js.map +1 -0
- package/lib/Tooltip.js +1 -1
- package/lib/Tooltip.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/src/command-menu/CommandMenu.d.ts +1 -1
- package/lib/src/command-menu/{events.d.ts → SelectEvent.d.ts} +1 -0
- package/package.json +11 -9
- package/lib/events.js +0 -2
- package/lib/events.js.map +0 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ The following are the most commonly used commands during development:
|
|
|
9
9
|
- `npm start` - Compile components, start watching for changes, start local development server on port 3333.
|
|
10
10
|
- `npm run build` - Builds the project.
|
|
11
11
|
- `npm test` - Run all tests once.
|
|
12
|
-
- `npm test -- [path/glob for test file]` - Run specific tests file.
|
|
12
|
+
- `npm test -- [path/glob for test file]` - Run specific tests file. e.g. `npm test -- **/Button.test.ts`
|
|
13
13
|
- `npm run test:watch` - Run all tests and watch for changes.
|
|
14
14
|
- `INCLUDE_VISUAL_REGRESSION=true npm test` - Run all tests and including visual regression.
|
|
15
15
|
- `INCLUDE_VISUAL_REGRESSION=true npm test -- --update-visual-baseline` - Updates all failing screenshot snapshots. I sure hope you know what you’re doing. ;-)
|