@m3e/chips 1.0.0-rc.1 → 1.0.0-rc.3

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 (39) hide show
  1. package/README.md +1 -2
  2. package/dist/custom-elements.json +4884 -608
  3. package/dist/html-custom-data.json +10 -10
  4. package/dist/index.js +69 -30
  5. package/dist/index.js.map +1 -1
  6. package/dist/index.min.js +87 -76
  7. package/dist/index.min.js.map +1 -1
  8. package/dist/src/AssistChipElement.d.ts +2 -1
  9. package/dist/src/AssistChipElement.d.ts.map +1 -1
  10. package/dist/src/ChipElement.d.ts +1 -4
  11. package/dist/src/ChipElement.d.ts.map +1 -1
  12. package/dist/src/ChipSetElement.d.ts +1 -2
  13. package/dist/src/ChipSetElement.d.ts.map +1 -1
  14. package/dist/src/FilterChipElement.d.ts +13 -1
  15. package/dist/src/FilterChipElement.d.ts.map +1 -1
  16. package/dist/src/FilterChipSetElement.d.ts +0 -1
  17. package/dist/src/FilterChipSetElement.d.ts.map +1 -1
  18. package/dist/src/InputChipElement.d.ts +14 -1
  19. package/dist/src/InputChipElement.d.ts.map +1 -1
  20. package/dist/src/InputChipSetElement.d.ts +1 -2
  21. package/dist/src/InputChipSetElement.d.ts.map +1 -1
  22. package/dist/src/SuggestionChipElement.d.ts +2 -1
  23. package/dist/src/SuggestionChipElement.d.ts.map +1 -1
  24. package/package.json +5 -5
  25. package/cem.config.mjs +0 -16
  26. package/demo/index.html +0 -183
  27. package/eslint.config.mjs +0 -13
  28. package/rollup.config.js +0 -32
  29. package/src/AssistChipElement.ts +0 -103
  30. package/src/ChipElement.ts +0 -336
  31. package/src/ChipSetElement.ts +0 -60
  32. package/src/ChipVariant.ts +0 -2
  33. package/src/FilterChipElement.ts +0 -254
  34. package/src/FilterChipSetElement.ts +0 -161
  35. package/src/InputChipElement.ts +0 -287
  36. package/src/InputChipSetElement.ts +0 -360
  37. package/src/SuggestionChipElement.ts +0 -104
  38. package/src/index.ts +0 -9
  39. package/tsconfig.json +0 -9
package/README.md CHANGED
@@ -2,8 +2,7 @@
2
2
 
3
3
  The `@m3e/chips` package provides expressive, accessible chip components for actions, input, filtering, and suggestions, each supporting two appearance variants—`outlined` and `elevated`. Use `outlined` for lightweight, unobtrusive chips such as tags or filters, and `elevated` for chips that require stronger visual affordance, like assist actions or selected states. These variants help convey interaction weight, visual hierarchy, and contextual emphasis across static and interactive use cases.
4
4
 
5
- > **Part of the [M3E](../../README.md) monorepo**
6
- > This package is maintained within the unified M3E repository, which provides a suite of Material 3 web components.
5
+ > **This package is part of [M3E](https://github.com/matraic/m3e) monorepo**, a unified suite of Material 3 web components. [Explore the docs](https://matraic.github.io/m3e) to see them in action.
7
6
 
8
7
  ## 📦 Installation
9
8