@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
@@ -1,3 +0,0 @@
1
- export * from "./ButtonSizeStyle";
2
- export * from "./ButtonStyle";
3
- export * from "./ButtonVariantStyle";
package/tsconfig.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.json",
3
- "compilerOptions": {
4
- "rootDir": "./src",
5
- "outDir": "./dist/src"
6
- },
7
- "include": ["src/**/*.ts", "**/*.mjs", "**/*.js"],
8
- "exclude": []
9
- }