pge-front-common 7.0.0 → 7.0.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.
- package/lib/components/ButtonUser/{index.d.ts → ButtonUser.d.ts} +0 -1
- package/lib/components/DropDown/{index.d.ts → Dropdown.d.ts} +0 -1
- package/lib/components/Footer/{index.d.ts → Footer.d.ts} +0 -1
- package/lib/components/Footer/Footer.stories.d.ts +1 -1
- package/lib/components/FooterAutocomposicao/FooterAutocomposicao.d.ts +1 -2
- package/lib/components/FooterAutocomposicao/FooterAutocomposicao.stories.d.ts +3 -3
- package/lib/components/Header/{index.d.ts → Header.d.ts} +1 -2
- package/lib/components/Header/Header.stories.d.ts +1 -1
- package/lib/components/Input/Input.d.ts +4 -0
- package/lib/components/Input/Input.stories.d.ts +1 -1
- package/lib/components/Menu/index.d.ts +1 -1
- package/lib/components/Modal/ModalConfirm/ModalConfirm.stories.d.ts +1 -1
- package/lib/components/Select/{index.d.ts → Select.d.ts} +1 -2
- package/lib/components/Select/Select.stories.d.ts +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.esm.js +93 -1005
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +92 -1004
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/lib/components/Input/index.d.ts +0 -6
- package/lib/components/Input/styles.d.ts +0 -18
- package/lib/components/Modal/ModalConfirm/styles.d.ts +0 -1
- package/lib/components/Modal/styles.d.ts +0 -8
- /package/lib/components/Input/{index.types.d.ts → input.types.d.ts} +0 -0
- /package/lib/components/Modal/ModalConfirm/{index.d.ts → ModalConfirm.d.ts} +0 -0
- /package/lib/components/Select/{index.types.d.ts → select.types.d.ts} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from "@storybook/react";
|
|
2
|
-
import
|
|
3
|
-
declare const meta: Meta<typeof
|
|
2
|
+
import FooterAutocomposicao from "./FooterAutocomposicao";
|
|
3
|
+
declare const meta: Meta<typeof FooterAutocomposicao>;
|
|
4
4
|
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof
|
|
5
|
+
type Story = StoryObj<typeof FooterAutocomposicao>;
|
|
6
6
|
export declare const Default: Story;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { IFuncoesMenuHorizontal } from "../DropDown";
|
|
2
|
+
import { IFuncoesMenuHorizontal } from "../DropDown/Dropdown";
|
|
3
3
|
export interface MenuProps {
|
|
4
4
|
options: IFuncoesMenuHorizontal[];
|
|
5
5
|
optionSelection: (name: string, id: number) => void;
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import type { StoryObj } from "@storybook/react";
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: React.FC<import("./
|
|
5
|
+
component: React.FC<import("./ModalConfirm").ModalConfirmProps>;
|
|
6
6
|
parameters: {
|
|
7
7
|
layout: string;
|
|
8
8
|
};
|
package/lib/index.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ declare const Header: React.FC<HeaderProps>;
|
|
|
99
99
|
|
|
100
100
|
declare function FooterComponent(): React.JSX.Element;
|
|
101
101
|
|
|
102
|
-
declare function
|
|
102
|
+
declare function FooterAutocomposicao(): React.JSX.Element;
|
|
103
103
|
|
|
104
104
|
declare const IconDownload: (props?: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
105
105
|
|
|
@@ -147,4 +147,4 @@ declare const IconSwap: (props?: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
|
147
147
|
|
|
148
148
|
declare const IconAddCell: (props?: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
149
149
|
|
|
150
|
-
export { Button, type ButtonProps, type DropdownProps, FooterComponent as Footer,
|
|
150
|
+
export { Button, type ButtonProps, type DropdownProps, FooterComponent as Footer, FooterAutocomposicao, Header, IconAdd, IconAddCell, IconArrowExpland, IconArrowRecall, IconCLose, IconCalendar, IconCheckCircle, IconCircleExpland, IconCircleRecall, IconDelete, IconDownload, IconEdit, IconEventAvaliable, IconLogout, IconNewTab, IconProfile, IconRemove, IconSwap, IconTriangleExpand, IconTriangleRecall, IconUpload, IconVisibillity, IconWarning, InputBase, type InputBaseProps, Modal, ModalConfirm, type ModalConfirmProps, type ModalProps, type OptionsProps, Select };
|