@m3e/button 1.0.0-rc.1 → 1.0.0-rc.2

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 (46) hide show
  1. package/README.md +1 -2
  2. package/dist/custom-elements.json +2915 -12
  3. package/dist/html-custom-data.json +3 -3
  4. package/dist/index.js +2 -1
  5. package/dist/index.js.map +1 -1
  6. package/dist/index.min.js +1 -1
  7. package/dist/index.min.js.map +1 -1
  8. package/package.json +3 -3
  9. package/cem.config.mjs +0 -16
  10. package/demo/index.html +0 -105
  11. package/dist/src/ButtonElement.d.ts +0 -429
  12. package/dist/src/ButtonElement.d.ts.map +0 -1
  13. package/dist/src/ButtonShape.d.ts +0 -3
  14. package/dist/src/ButtonShape.d.ts.map +0 -1
  15. package/dist/src/ButtonSize.d.ts +0 -3
  16. package/dist/src/ButtonSize.d.ts.map +0 -1
  17. package/dist/src/ButtonVariant.d.ts +0 -3
  18. package/dist/src/ButtonVariant.d.ts.map +0 -1
  19. package/dist/src/index.d.ts +0 -5
  20. package/dist/src/index.d.ts.map +0 -1
  21. package/dist/src/styles/ButtonSizeStyle.d.ts +0 -7
  22. package/dist/src/styles/ButtonSizeStyle.d.ts.map +0 -1
  23. package/dist/src/styles/ButtonSizeToken.d.ts +0 -27
  24. package/dist/src/styles/ButtonSizeToken.d.ts.map +0 -1
  25. package/dist/src/styles/ButtonStyle.d.ts +0 -7
  26. package/dist/src/styles/ButtonStyle.d.ts.map +0 -1
  27. package/dist/src/styles/ButtonVariantStyle.d.ts +0 -7
  28. package/dist/src/styles/ButtonVariantStyle.d.ts.map +0 -1
  29. package/dist/src/styles/ButtonVariantToken.d.ts +0 -75
  30. package/dist/src/styles/ButtonVariantToken.d.ts.map +0 -1
  31. package/dist/src/styles/index.d.ts +0 -4
  32. package/dist/src/styles/index.d.ts.map +0 -1
  33. package/eslint.config.mjs +0 -13
  34. package/rollup.config.js +0 -32
  35. package/src/ButtonElement.ts +0 -629
  36. package/src/ButtonShape.ts +0 -2
  37. package/src/ButtonSize.ts +0 -2
  38. package/src/ButtonVariant.ts +0 -2
  39. package/src/index.ts +0 -4
  40. package/src/styles/ButtonSizeStyle.ts +0 -102
  41. package/src/styles/ButtonSizeToken.ts +0 -180
  42. package/src/styles/ButtonStyle.ts +0 -191
  43. package/src/styles/ButtonVariantStyle.ts +0 -170
  44. package/src/styles/ButtonVariantToken.ts +0 -1165
  45. package/src/styles/index.ts +0 -3
  46. package/tsconfig.json +0 -9
package/README.md CHANGED
@@ -6,8 +6,7 @@ The component is accessible by default, with ARIA roles, contrast-safe color tok
6
6
 
7
7
  Native disabled `<button>` elements cannot receive focus. This can be problematic in some cases because it can prevent you from telling the user why the button is disabled. You can use the `disabled-interactive` attribute to style a `m3e-button` as disabled but allow for it to receive focus. The button will have `aria-disabled="true"` for assistive technology.
8
8
 
9
- > **Part of the [M3E](../../README.md) monorepo**
10
- > This package is maintained within the unified M3E repository, which provides a suite of Material 3 web components.
9
+ > **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.
11
10
 
12
11
  ## 📦 Installation
13
12