@integrigo/integrigo-ui 1.3.4 → 1.3.7

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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "registry": "https://npm.pkg.github.com/integrigo"
5
5
  },
6
- "version": "1.3.4",
6
+ "version": "1.3.7",
7
7
  "main": "lib/index.js",
8
8
  "module": "lib/index.esm.js",
9
9
  "types": "lib/index.d.ts",
@@ -29,6 +29,7 @@
29
29
  "rollup-plugin-peer-deps-external": "^2.2.4",
30
30
  "rollup-plugin-postcss": "^4.0.2",
31
31
  "rollup-plugin-typescript2": "^0.31.2",
32
+ "rollup-plugin-uglify": "^6.0.4",
32
33
  "styled-components": "^5.3.3",
33
34
  "typescript": "^4.5.5"
34
35
  },
package/rollup.config.js CHANGED
@@ -3,6 +3,7 @@ import resolve from "@rollup/plugin-node-resolve";
3
3
  import commonjs from "@rollup/plugin-commonjs";
4
4
  import typescript from "rollup-plugin-typescript2";
5
5
  import postcss from "rollup-plugin-postcss";
6
+ import { uglify } from "rollup-plugin-uglify";
6
7
 
7
8
  const packageJson = require("./package.json");
8
9
 
@@ -12,13 +13,13 @@ export default {
12
13
  {
13
14
  file: packageJson.main,
14
15
  format: "cjs",
15
- sourcemap: true
16
+ sourcemap: true,
16
17
  },
17
18
  {
18
19
  file: packageJson.module,
19
20
  format: "esm",
20
- sourcemap: true
21
- }
21
+ sourcemap: true,
22
+ },
22
23
  ],
23
24
  plugins: [
24
25
  peerDepsExternal(),
@@ -26,7 +27,8 @@ export default {
26
27
  commonjs(),
27
28
  typescript({ useTsconfigDeclarationDir: true }),
28
29
  postcss({
29
- extensions: ['.css']
30
- })
31
- ]
32
- };
30
+ extensions: [".css"],
31
+ }),
32
+ uglify(),
33
+ ],
34
+ };
@@ -1,6 +0,0 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- declare const _default: ComponentMeta<import("styled-components").StyledComponent<"button", any, Omit<import("./Button").ButtonProps, "label">, never>>;
3
- export default _default;
4
- export declare const Primary: ComponentStory<import("styled-components").StyledComponent<"button", any, Omit<import("./Button").ButtonProps, "label">, never>>;
5
- export declare const Secondary: ComponentStory<import("styled-components").StyledComponent<"button", any, Omit<import("./Button").ButtonProps, "label">, never>>;
6
- export declare const Ghost: ComponentStory<import("styled-components").StyledComponent<"button", any, Omit<import("./Button").ButtonProps, "label">, never>>;
@@ -1,11 +0,0 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- declare const _default: ComponentMeta<import("styled-components").StyledComponent<"div", any, {
3
- inverse?: boolean | undefined;
4
- }, never>>;
5
- export default _default;
6
- export declare const Basic: ComponentStory<import("styled-components").StyledComponent<"div", any, {
7
- inverse?: boolean | undefined;
8
- }, never>>;
9
- export declare const Inversed: ComponentStory<import("styled-components").StyledComponent<"div", any, {
10
- inverse?: boolean | undefined;
11
- }, never>>;
@@ -1,24 +0,0 @@
1
- import React from "react";
2
- import { ComponentStory, ComponentMeta } from "@storybook/react";
3
- declare const _default: ComponentMeta<React.FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon"> & {
4
- icon: string;
5
- }>>;
6
- export default _default;
7
- export declare const Bars: ComponentStory<React.FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon"> & {
8
- icon: string;
9
- }>>;
10
- export declare const Plus: ComponentStory<React.FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon"> & {
11
- icon: string;
12
- }>>;
13
- export declare const Minus: ComponentStory<React.FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon"> & {
14
- icon: string;
15
- }>>;
16
- export declare const Facebook: ComponentStory<React.FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon"> & {
17
- icon: string;
18
- }>>;
19
- export declare const Instagram: ComponentStory<React.FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon"> & {
20
- icon: string;
21
- }>>;
22
- export declare const Linkedin: ComponentStory<React.FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon"> & {
23
- icon: string;
24
- }>>;
@@ -1,4 +0,0 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- declare const _default: ComponentMeta<import("styled-components").StyledComponent<"input", any, {}, never>>;
3
- export default _default;
4
- export declare const Basic: ComponentStory<import("styled-components").StyledComponent<"input", any, {}, never>>;
@@ -1,5 +0,0 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- declare const _default: ComponentMeta<import("styled-components").StyledComponent<"nav", any, import("./Nav").NavProps, never>>;
3
- export default _default;
4
- export declare const Basic: ComponentStory<import("styled-components").StyledComponent<"nav", any, import("./Nav").NavProps, never>>;
5
- export declare const Active: ComponentStory<import("styled-components").StyledComponent<"nav", any, import("./Nav").NavProps, never>>;
@@ -1,8 +0,0 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- declare const _default: ComponentMeta<import("styled-components").StyledComponent<"p", any, import("./Body").BodyProps, never>>;
3
- export default _default;
4
- export declare const XXL: ComponentStory<import("styled-components").StyledComponent<"p", any, import("./Body").BodyProps, never>>;
5
- export declare const XL: ComponentStory<import("styled-components").StyledComponent<"p", any, import("./Body").BodyProps, never>>;
6
- export declare const L: ComponentStory<import("styled-components").StyledComponent<"p", any, import("./Body").BodyProps, never>>;
7
- export declare const M: ComponentStory<import("styled-components").StyledComponent<"p", any, import("./Body").BodyProps, never>>;
8
- export declare const S: ComponentStory<import("styled-components").StyledComponent<"p", any, import("./Body").BodyProps, never>>;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
- import { ComponentStory, ComponentMeta } from '@storybook/react';
3
- declare const _default: ComponentMeta<React.FC<import("./Hero").HeroProps>>;
4
- export default _default;
5
- export declare const XXL: ComponentStory<React.FC<import("./Hero").HeroProps>>;
6
- export declare const XL: ComponentStory<React.FC<import("./Hero").HeroProps>>;
7
- export declare const L: ComponentStory<React.FC<import("./Hero").HeroProps>>;
8
- export declare const M: ComponentStory<React.FC<import("./Hero").HeroProps>>;
9
- export declare const S: ComponentStory<React.FC<import("./Hero").HeroProps>>;
@@ -1,8 +0,0 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- declare const _default: ComponentMeta<import("styled-components").StyledComponent<"span", any, import("./Label").LabelProps, never>>;
3
- export default _default;
4
- export declare const XXL: ComponentStory<import("styled-components").StyledComponent<"span", any, import("./Label").LabelProps, never>>;
5
- export declare const XL: ComponentStory<import("styled-components").StyledComponent<"span", any, import("./Label").LabelProps, never>>;
6
- export declare const L: ComponentStory<import("styled-components").StyledComponent<"span", any, import("./Label").LabelProps, never>>;
7
- export declare const M: ComponentStory<import("styled-components").StyledComponent<"span", any, import("./Label").LabelProps, never>>;
8
- export declare const S: ComponentStory<import("styled-components").StyledComponent<"span", any, import("./Label").LabelProps, never>>;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import { ComponentStory, ComponentMeta } from '@storybook/react';
3
- declare const _default: ComponentMeta<React.FC<import("./InfoCard").InfoCardProps>>;
4
- export default _default;
5
- export declare const Basic: ComponentStory<React.FC<import("./InfoCard").InfoCardProps>>;
6
- export declare const WithBackground: ComponentStory<React.FC<import("./InfoCard").InfoCardProps>>;
7
- export declare const Inversed: ComponentStory<React.FC<import("./InfoCard").InfoCardProps>>;