@nordhealth/components 1.7.0 → 1.8.0
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 +1236 -1216
- package/lib/Dropdown.js.map +1 -1
- package/lib/DropdownGroup.js.map +1 -1
- package/lib/DropdownItem.js.map +1 -1
- package/lib/EmptyState.js.map +1 -1
- package/lib/Layout.js +1 -1
- package/lib/Layout.js.map +1 -1
- package/lib/Popout.js.map +1 -1
- package/lib/TabGroup.js +1 -1
- package/lib/TabGroup.js.map +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.js.map +1 -1
- package/lib/src/dropdown/Dropdown.d.ts +1 -1
- package/lib/src/dropdown-group/DropdownGroup.d.ts +1 -1
- package/lib/src/dropdown-item/DropdownItem.d.ts +1 -1
- package/lib/src/empty-state/EmptyState.d.ts +1 -1
- package/lib/src/layout/Layout.d.ts +5 -0
- package/lib/src/layout/Layout.test.d.ts +3 -0
- package/lib/src/popout/Popout.d.ts +1 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ The following are the most commonly used commands during development:
|
|
|
40
40
|
- `npm test -- [path/glob for test file]` - Run specific tests file. e.g. `npm test -- **/Button.test.ts`
|
|
41
41
|
- `npm run test:watch` - Run all tests and watch for changes.
|
|
42
42
|
- `INCLUDE_VISUAL_REGRESSION=true npm test` - Run all tests and including visual regression.
|
|
43
|
-
- `
|
|
43
|
+
- `npm run test:capture` - Updates screenshot snapshots.
|
|
44
44
|
|
|
45
45
|
The local development server started by `npm start` serves a file located at `/packages/components/demo/index.html`. Any local changes or new components are available on this page, so this can be used as a testing ground when developing. Component usage examples are available from the dev server using the URL structure `http://localhost:3333/[component]/[example]/` e.g. `/button/kitchen-sink/`. These pages get reloaded on any change.
|
|
46
46
|
|