@nextelco/common-ui 1.5.69 → 1.5.72
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/dist/bundle.js +1 -1
- package/dist/types/components/atoms/Button/Button.stories.d.ts +425 -41
- package/dist/types/components/atoms/Select/Select.stories.d.ts +1 -10
- package/dist/types/components/atoms/Stack/Stack.d.ts +1 -1
- package/dist/types/components/atoms/Stack/Stack.stories.d.ts +1 -11
- package/dist/types/components/layout/Header/Header.d.ts +2 -3
- package/dist/types/components/layout/Header/Header.stories.d.ts +40 -6
- package/dist/types/components/organisms/LazyLoading/LazyLoading.d.ts +75 -13
- package/dist/types/components/organisms/Profile/Profile.stories.d.ts +5 -6
- package/dist/types/index.d.ts +1 -1
- package/dist/types/types/ButtonTheme.d.ts +2 -2
- package/package.json +2 -2
- package/dist/types/components/moleculas/Operators/Operators.d.ts +0 -15
- package/dist/types/components/moleculas/Operators/Operators.stories.d.ts +0 -8
package/dist/types/index.d.ts
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
export { default as Label } from './components/atoms/Label/Label';
|
2
2
|
export { default as BreadCrumb } from './components/atoms/BreadCrumb/BreadCrumb';
|
3
3
|
export { default as CustomSwitch } from './components/atoms/Switch/CustomSwitch';
|
4
|
-
export { default as Operators } from './components/moleculas/Operators/Operators';
|
5
4
|
export { default as Field } from './components/atoms/Field/Field';
|
6
5
|
export { default as Card1 } from './components/atoms/Card/Card1';
|
7
6
|
export { default as Card2 } from './components/atoms/Card/Card2';
|
@@ -25,6 +24,7 @@ export { default as Error } from './components/layout/Error/Error';
|
|
25
24
|
export { default as Spinner } from './components/layout/Spinner/Spinner';
|
26
25
|
export { default as LoadingPage } from './pages/Loading/Loading';
|
27
26
|
export { default as ErrorPage } from './pages/Error/ErrorPage';
|
27
|
+
export { default as NotFoundPage } from './pages/NotFound/NotFound';
|
28
28
|
export { useAuth, AuthProvider } from './contexts/authContext';
|
29
29
|
export { ApiProvider } from './contexts/apiContext';
|
30
30
|
export { useApi } from './hooks/useApi';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nextelco/common-ui",
|
3
|
-
"version": "1.5.
|
3
|
+
"version": "1.5.72",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/bundle.js",
|
6
6
|
"types": "dist/types/index.d.ts",
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"@fortawesome/react-fontawesome": "^0.2.2",
|
58
58
|
"axios": "^1.8.1",
|
59
59
|
"js-cookie": "^3.0.5",
|
60
|
-
"keycloak-js": "^25.0.
|
60
|
+
"keycloak-js": "^25.0.0",
|
61
61
|
"react-infinite-scroll-component": "^6.1.0",
|
62
62
|
"react-switch": "^7.1.0",
|
63
63
|
"react-tooltip": "^5.28.0",
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import "./Operators.scss";
|
2
|
-
import React from "react";
|
3
|
-
type Props = {
|
4
|
-
label: string;
|
5
|
-
name: string;
|
6
|
-
type: "cui-choose_operator_title" | "cui-add_operator_title";
|
7
|
-
placeholder?: string;
|
8
|
-
disabled?: boolean;
|
9
|
-
readOnly?: boolean;
|
10
|
-
mode?: "cui-add_logo";
|
11
|
-
selected?: boolean;
|
12
|
-
onSelect?: () => void;
|
13
|
-
};
|
14
|
-
declare const Operators: ({ label, name, type, placeholder, disabled, readOnly, mode, selected, onSelect, }: Props) => React.JSX.Element;
|
15
|
-
export default Operators;
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import { Meta, StoryObj } from "@storybook/react";
|
2
|
-
import Operators from "./Operators";
|
3
|
-
declare const meta: Meta<typeof Operators>;
|
4
|
-
export default meta;
|
5
|
-
type Story = StoryObj<typeof meta>;
|
6
|
-
export declare const Operadora_01: Story;
|
7
|
-
export declare const Operadora_02: Story;
|
8
|
-
export declare const Nova_operadora: Story;
|