@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.
- package/README.md +11 -4
- package/dist/MtIconSelect-CfmehFw5.js +7859 -0
- package/dist/MtIconSelect-D3hqMI_b.cjs +46 -0
- package/dist/components/matter/MtButton.d.ts +2 -2
- package/dist/components/matter/MtDropdown.d.ts +1 -1
- package/dist/components/matter/MtFilter.d.ts +6 -0
- package/dist/components/matter/MtIcon.d.ts +3 -0
- package/dist/components/matter/MtIconSelect.d.ts +19 -0
- package/dist/components/matter/MtInput.d.ts +1 -1
- package/dist/components/matter/MtSearch.d.ts +1 -1
- package/dist/components/matter/MtSelect.d.ts +1 -1
- package/dist/components/matter/MtToast.d.ts +31 -0
- package/dist/components/matter/experimental/collection/MtCollection.d.ts +41 -1
- package/dist/components/matter/experimental/collection/MtCollectionContext.d.ts +26 -3
- package/dist/components/matter/experimental/collection/MtCollectionEntryControls.d.ts +21 -5
- package/dist/components/matter/experimental/collection/MtCollectionEntryUtils.d.ts +24 -0
- package/dist/components/matter/experimental/collection/MtCollectionSelectionToolbar.d.ts +8 -0
- package/dist/components/matter/experimental/collection/MtCollectionTaskListEntry.d.ts +32 -1
- package/dist/components/matter/experimental/collection/MtCollectionToast.d.ts +10 -0
- package/dist/components/matter/experimental/collection/index.d.ts +2 -1
- package/dist/components/matter/experimental/collection/layouts/MtCollectionBoardLayout.d.ts +33 -0
- package/dist/components/matter/experimental/collection/layouts/MtCollectionPlanLayout.d.ts +2 -0
- package/dist/components/matter/experimental/collection/layouts/useBoardDnd.d.ts +40 -0
- package/dist/experimental.cjs +6 -2
- package/dist/experimental.js +6464 -1720
- package/dist/lib.d.ts +4 -1
- package/dist/matter.cjs +2 -2
- package/dist/matter.js +262 -275
- package/dist/styles.css +1 -1
- 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
|
-
##
|
|
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/
|
|
21
|
-
import '@khaos/
|
|
27
|
+
import { MtButton } from '@khaos-systems/helm';
|
|
28
|
+
import '@khaos-systems/helm/styles.css';
|
|
22
29
|
```
|