carbon-react 114.10.1 → 114.12.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 (40) hide show
  1. package/esm/__internal__/form-field/form-field.component.d.ts +1 -1
  2. package/esm/__spec_helper__/test-utils.d.ts +1 -1
  3. package/esm/__spec_helper__/test-utils.js +1 -1
  4. package/esm/components/button/button-types.style.js +2 -2
  5. package/esm/components/button/button.component.js +1 -1
  6. package/esm/components/button/button.style.js +3 -2
  7. package/esm/components/button-minor/button-minor.component.d.ts +7 -0
  8. package/esm/components/button-minor/button-minor.component.js +355 -0
  9. package/esm/components/button-minor/button-minor.style.d.ts +3 -0
  10. package/esm/components/button-minor/button-minor.style.js +75 -0
  11. package/esm/components/button-minor/index.d.ts +2 -0
  12. package/esm/components/button-minor/index.js +1 -0
  13. package/esm/components/image/image.component.d.ts +1 -1
  14. package/esm/components/image/image.component.js +4 -1
  15. package/esm/components/image/image.style.d.ts +2 -0
  16. package/esm/components/link/link.component.d.ts +1 -1
  17. package/esm/components/menu/menu-item/menu-item.d.ts +1 -1
  18. package/esm/style/design-tokens/carbon-scoped-tokens-provider/carbon-scoped-tokens-provider.component.d.ts +1 -1
  19. package/esm/style/utils/color.d.ts +1 -1
  20. package/lib/__internal__/form-field/form-field.component.d.ts +1 -1
  21. package/lib/__spec_helper__/test-utils.d.ts +1 -1
  22. package/lib/__spec_helper__/test-utils.js +1 -1
  23. package/lib/components/button/button-types.style.js +2 -2
  24. package/lib/components/button/button.component.js +1 -1
  25. package/lib/components/button/button.style.js +3 -2
  26. package/lib/components/button-minor/button-minor.component.d.ts +7 -0
  27. package/lib/components/button-minor/button-minor.component.js +367 -0
  28. package/lib/components/button-minor/button-minor.style.d.ts +3 -0
  29. package/lib/components/button-minor/button-minor.style.js +92 -0
  30. package/lib/components/button-minor/index.d.ts +2 -0
  31. package/lib/components/button-minor/index.js +15 -0
  32. package/lib/components/button-minor/package.json +6 -0
  33. package/lib/components/image/image.component.d.ts +1 -1
  34. package/lib/components/image/image.component.js +4 -1
  35. package/lib/components/image/image.style.d.ts +2 -0
  36. package/lib/components/link/link.component.d.ts +1 -1
  37. package/lib/components/menu/menu-item/menu-item.d.ts +1 -1
  38. package/lib/style/design-tokens/carbon-scoped-tokens-provider/carbon-scoped-tokens-provider.component.d.ts +1 -1
  39. package/lib/style/utils/color.d.ts +1 -1
  40. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { ThemeObject } from "style/themes/base";
1
+ import { ThemeObject } from "../../themes/base";
2
2
  /**
3
3
  *
4
4
  * Converts theme properties to css variables form and set them locally for
@@ -1,4 +1,4 @@
1
- import { ThemeObject } from "style/themes/base";
1
+ import { ThemeObject } from "../themes/base";
2
2
  export declare const toColor: (theme: ThemeObject, color: string) => string;
3
3
  declare const _default: ({ color, bg, backgroundColor, ...rest }: Record<string, unknown>) => any;
4
4
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-react",
3
- "version": "114.10.1",
3
+ "version": "114.12.0",
4
4
  "description": "A library of reusable React components for easily building user interfaces.",
5
5
  "files": [
6
6
  "lib",