@loadsmart/miranda-react 1.7.0 → 1.7.1

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.
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import type { HTMLAttributes, ReactNode } from 'react';
3
- import { Button as WCButton, type ButtonProps as WCButtonProps } from '@loadsmart/miranda-wc';
3
+ import type { Button as WCButton, ButtonProps as WCButtonProps } from '@loadsmart/miranda-wc';
4
4
  export interface ButtonProps extends Omit<HTMLAttributes<WCButton>, 'onClick'>, WCButtonProps {
5
5
  leading?: ReactNode;
6
6
  trailing?: ReactNode;
@@ -1,5 +1,5 @@
1
1
  import React, { type HTMLAttributes } from 'react';
2
- import { Text as WCText, type TextProps as WCTextProps } from '@loadsmart/miranda-wc';
2
+ import type { Text as WCText, TextProps as WCTextProps } from '@loadsmart/miranda-wc';
3
3
  export declare type TextProps = React.HTMLAttributes<HTMLSpanElement> & WCTextProps;
4
4
  declare global {
5
5
  namespace JSX {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loadsmart/miranda-react",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "React component library based on Miranda Web Components",
5
5
  "main": "dist",
6
6
  "files": [
@@ -13,7 +13,8 @@
13
13
  "test": "jest --verbose",
14
14
  "test:watch": "yarn test --watchAll",
15
15
  "build": "rollup -c --environment BUILD:prod",
16
- "release": "semantic-release"
16
+ "release": "semantic-release",
17
+ "typecheck": "tsc"
17
18
  },
18
19
  "author": "Loadsmart",
19
20
  "license": "UNLICENSED",