@npm_leadtech/legal-lib-components 2.9.2 → 2.10.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.
@@ -1,5 +1,6 @@
1
1
  import { type FC } from 'react';
2
2
  import { type AddButtonProps } from './AddButtonProps.types';
3
+ import '../../../globalStyles/themes.scss';
3
4
  import './AddButton.scss';
4
5
  declare const AddButton: FC<AddButtonProps>;
5
6
  export default AddButton;
@@ -2,6 +2,7 @@ import React, { type FC } from 'react';
2
2
  import './WideInfoBar.scss';
3
3
  interface WideInfoBarProps {
4
4
  children?: React.ReactElement<any>;
5
+ color?: 'green';
5
6
  }
6
7
  declare const WideInfoBar: FC<WideInfoBarProps>;
7
8
  export default WideInfoBar;
@@ -4,3 +4,4 @@ declare const meta: Meta<typeof WideInfoBar>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof WideInfoBar>;
6
6
  export declare const Default: Story;
7
+ export declare const Green: Story;
package/dist/index.d.ts CHANGED
@@ -396,6 +396,7 @@ declare const TopBarMobile: React$1.FC<TopBarMobileProps>;
396
396
 
397
397
  interface WideInfoBarProps {
398
398
  children?: React$1.ReactElement<any>;
399
+ color?: 'green';
399
400
  }
400
401
  declare const WideInfoBar: FC<WideInfoBarProps>;
401
402
 
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-lib-components",
3
- "version": "2.9.2",
3
+ "version": "2.10.0",
4
4
  "dependencies": {
5
5
  "@testing-library/jest-dom": "^5.16.5",
6
6
  "@tippyjs/react": "4.2.6",
7
+ "node-fetch": "^3.3.2",
7
8
  "postcss-url": "^10.1.3",
8
9
  "react-datepicker": "^4.12.0",
9
10
  "react-input-mask": "^2.0.4",
@@ -117,6 +118,7 @@
117
118
  },
118
119
  "scripts": {
119
120
  "start": "storybook dev -p 6006",
121
+ "figma": "node src/figma/index.js",
120
122
  "build": "rm -rf dist && rollup -c",
121
123
  "reinstall-force": "rm -Rf node_modules && yarn",
122
124
  "prepare-upgrade": "yarn reinstall-force && yarn build && git add . && git commit -m \"$MSG\" --allow-empty && npm config set tag-version-prefix ''",