@nextelco/common-ui 1.4.22 → 1.4.23
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.
@@ -12,4 +12,6 @@ export declare const Nome_operadora_01: Story;
|
|
12
12
|
export declare const Titulo_operadora_nova: Story;
|
13
13
|
export declare const Opcoes_principais: Story;
|
14
14
|
export declare const Historico_titulo: Story;
|
15
|
+
export declare const Operadoras_titulo: Story;
|
16
|
+
export declare const Operadoras_texto: Story;
|
15
17
|
export declare const Historico_texto: Story;
|
@@ -7,6 +7,7 @@ type StoryProps = ComponentProps<typeof Stack> & {
|
|
7
7
|
declare const meta: Meta<StoryProps>;
|
8
8
|
export default meta;
|
9
9
|
type Story = StoryObj<typeof meta>;
|
10
|
+
declare const Tabulador_operadoras: StoryObj;
|
10
11
|
export declare const Horizontal: Story;
|
11
12
|
export declare const Vertical: Story;
|
12
13
|
export declare const Wrapped: Story;
|
@@ -17,3 +18,4 @@ export declare const Tabulador_filtros_operadora_componentes: Story;
|
|
17
18
|
export declare const Tabulador_filtros_projetos_ficheiros: Story;
|
18
19
|
export declare const Tabulador_filtros_proj_BoM: Story;
|
19
20
|
export declare const Tabulador_historico_modos: Story;
|
21
|
+
export { Tabulador_operadoras };
|
@@ -7,7 +7,9 @@ type Props = {
|
|
7
7
|
placeholder?: string;
|
8
8
|
disabled?: boolean;
|
9
9
|
readOnly?: boolean;
|
10
|
-
mode
|
10
|
+
mode?: "nt_add_logo";
|
11
|
+
selected?: boolean;
|
12
|
+
onSelect?: () => void;
|
11
13
|
};
|
12
|
-
declare const Operators: ({ label, name, type, placeholder, disabled, readOnly, mode, }: Props) => React.JSX.Element;
|
14
|
+
declare const Operators: ({ label, name, type, placeholder, disabled, readOnly, mode, selected, onSelect, }: Props) => React.JSX.Element;
|
13
15
|
export default Operators;
|