@khaos-systems/helm 0.2.2 → 0.3.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.
Files changed (30) hide show
  1. package/README.md +11 -4
  2. package/dist/MtIconSelect-CfmehFw5.js +7859 -0
  3. package/dist/MtIconSelect-D3hqMI_b.cjs +46 -0
  4. package/dist/components/matter/MtButton.d.ts +2 -2
  5. package/dist/components/matter/MtDropdown.d.ts +1 -1
  6. package/dist/components/matter/MtFilter.d.ts +6 -0
  7. package/dist/components/matter/MtIcon.d.ts +3 -0
  8. package/dist/components/matter/MtIconSelect.d.ts +19 -0
  9. package/dist/components/matter/MtInput.d.ts +1 -1
  10. package/dist/components/matter/MtSearch.d.ts +1 -1
  11. package/dist/components/matter/MtSelect.d.ts +1 -1
  12. package/dist/components/matter/MtToast.d.ts +31 -0
  13. package/dist/components/matter/experimental/collection/MtCollection.d.ts +41 -1
  14. package/dist/components/matter/experimental/collection/MtCollectionContext.d.ts +26 -3
  15. package/dist/components/matter/experimental/collection/MtCollectionEntryControls.d.ts +21 -5
  16. package/dist/components/matter/experimental/collection/MtCollectionEntryUtils.d.ts +24 -0
  17. package/dist/components/matter/experimental/collection/MtCollectionSelectionToolbar.d.ts +8 -0
  18. package/dist/components/matter/experimental/collection/MtCollectionTaskListEntry.d.ts +32 -1
  19. package/dist/components/matter/experimental/collection/MtCollectionToast.d.ts +10 -0
  20. package/dist/components/matter/experimental/collection/index.d.ts +2 -1
  21. package/dist/components/matter/experimental/collection/layouts/MtCollectionBoardLayout.d.ts +33 -0
  22. package/dist/components/matter/experimental/collection/layouts/MtCollectionPlanLayout.d.ts +2 -0
  23. package/dist/components/matter/experimental/collection/layouts/useBoardDnd.d.ts +40 -0
  24. package/dist/experimental.cjs +6 -2
  25. package/dist/experimental.js +6464 -1720
  26. package/dist/lib.d.ts +4 -1
  27. package/dist/matter.cjs +2 -2
  28. package/dist/matter.js +262 -275
  29. package/dist/styles.css +1 -1
  30. package/package.json +6 -1
package/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  https://www.npmjs.com/package/@khaos-systems/helm
4
4
 
5
- This package contains the Matter design system and Storybook site extracted from `anchor`.
5
+ This package contains the Matter design system and Storybook site extracted from `anchor`.
6
6
 
7
- ## Commands
7
+ ## Command Cheat Sheet
8
8
 
9
9
  - `npm install`
10
10
  - `npm run storybook` - run Storybook locally
@@ -12,11 +12,18 @@ This package contains the Matter design system and Storybook site extracted from
12
12
  - `npm run build` - build library output to `dist/`
13
13
  - `npm run gen:tokens` - regenerate `src/tokens.css` from `tokens/tokens.dark.json`
14
14
 
15
+ **To publish a new version:**
16
+ ```
17
+ npm version patch # or minor/major
18
+ npm run prepare
19
+ npm run publish
20
+ ```
21
+
15
22
  ## Usage in another app
16
23
 
17
24
  Install from workspace and import:
18
25
 
19
26
  ```ts
20
- import { MtButton } from '@khaos/matter';
21
- import '@khaos/matter/styles.css';
27
+ import { MtButton } from '@khaos-systems/helm';
28
+ import '@khaos-systems/helm/styles.css';
22
29
  ```