@archbase/components 3.0.25 → 4.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/dist/buttons/ArchbaseSpeedDial.d.ts +59 -0
- package/dist/buttons/index.d.ts +2 -0
- package/dist/charts/ArchbaseArcGauge.d.ts +55 -0
- package/dist/charts/ArchbaseGantt.d.ts +70 -0
- package/dist/charts/ArchbaseLinearGauge.d.ts +55 -0
- package/dist/charts/ArchbaseResourceTimeline.d.ts +61 -0
- package/dist/charts/ArchbaseSparkline.d.ts +45 -0
- package/dist/charts/index.d.ts +10 -0
- package/dist/containers/ArchbaseExpansionPanel.d.ts +60 -0
- package/dist/containers/ArchbaseFloatingPanel.d.ts +91 -0
- package/dist/containers/index.d.ts +4 -0
- package/dist/datagrid/export/ArchbaseDataGridExcelExport.d.ts +67 -0
- package/dist/datagrid/export/index.d.ts +2 -0
- package/dist/datagrid/index.d.ts +1 -0
- package/dist/display/ArchbaseAnimationWrapper.d.ts +73 -0
- package/dist/display/ArchbaseBarcodeGenerator.d.ts +50 -0
- package/dist/display/ArchbaseCarousel.d.ts +100 -0
- package/dist/display/ArchbaseCodeViewer.d.ts +63 -0
- package/dist/display/ArchbaseDiffViewer.d.ts +41 -0
- package/dist/display/ArchbaseJsonTree.d.ts +34 -0
- package/dist/display/ArchbaseLightbox.d.ts +89 -0
- package/dist/display/ArchbaseMarquee.d.ts +46 -0
- package/dist/display/ArchbasePhotoAlbum.d.ts +58 -0
- package/dist/display/ArchbaseQRCode.d.ts +44 -0
- package/dist/display/ArchbaseTooltipRich.d.ts +82 -0
- package/dist/display/ArchbaseVirtualList.d.ts +116 -0
- package/dist/display/index.d.ts +24 -0
- package/dist/editors/ArchbaseAIPromptInput.d.ts +69 -0
- package/dist/editors/ArchbaseAsyncMultiSelect.d.ts +1 -1
- package/dist/editors/ArchbaseAsyncSelect.d.ts +1 -1
- package/dist/editors/ArchbaseBarcodeScanner.d.ts +63 -0
- package/dist/editors/ArchbaseCepInput.d.ts +26 -0
- package/dist/editors/ArchbaseColorGradientPicker.d.ts +80 -0
- package/dist/editors/ArchbaseCpfCnpjInput.d.ts +21 -0
- package/dist/editors/ArchbaseCurrencyInput.d.ts +25 -0
- package/dist/editors/ArchbaseDualListbox.d.ts +61 -0
- package/dist/editors/ArchbaseInPlaceEditor.d.ts +67 -0
- package/dist/editors/ArchbaseLightGrid.d.ts +56 -0
- package/dist/editors/ArchbaseMentionInput.d.ts +75 -0
- package/dist/editors/ArchbaseMultiEmail.d.ts +53 -0
- package/dist/editors/ArchbaseMultiViewCalendar.d.ts +47 -0
- package/dist/editors/ArchbaseNumberStepper.d.ts +66 -0
- package/dist/editors/ArchbaseOTPInput.d.ts +27 -0
- package/dist/editors/ArchbasePhoneInput.d.ts +52 -0
- package/dist/editors/ArchbaseRangeSlider.d.ts +22 -0
- package/dist/editors/ArchbaseSignaturePad.d.ts +60 -0
- package/dist/editors/ArchbaseSpeechToTextInput.d.ts +106 -0
- package/dist/editors/ArchbaseSpreadsheet.d.ts +56 -0
- package/dist/editors/ArchbaseTagInput.d.ts +55 -0
- package/dist/editors/index.d.ts +40 -0
- package/dist/feedback/ArchbaseChunkProgressBar.d.ts +35 -0
- package/dist/feedback/ArchbaseRipple.d.ts +43 -0
- package/dist/feedback/ArchbaseSkeleton.d.ts +115 -0
- package/dist/feedback/index.d.ts +6 -0
- package/dist/filters/ArchbaseColumnSelector.d.ts +38 -0
- package/dist/filters/index.d.ts +2 -0
- package/dist/forms/ArchbaseFieldArray.d.ts +80 -0
- package/dist/forms/ArchbaseFormWizard.d.ts +73 -0
- package/dist/forms/ArchbaseStepper.d.ts +51 -0
- package/dist/forms/index.d.ts +8 -0
- package/dist/forms/useArchbaseFormWizard.d.ts +74 -0
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/useArchbaseConfirm.d.ts +59 -0
- package/dist/image/editor/index.d.ts +43 -4
- package/dist/image/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +22510 -13820
- package/dist/list/ArchbaseTreeList.d.ts +76 -0
- package/dist/list/index.d.ts +2 -0
- package/dist/navigation/ArchbaseActionSheet.d.ts +70 -0
- package/dist/navigation/ArchbaseAppBar.d.ts +63 -0
- package/dist/navigation/ArchbaseBottomNavigation.d.ts +61 -0
- package/dist/navigation/ArchbaseContextMenu.d.ts +76 -0
- package/dist/navigation/ArchbaseKeyboardShortcuts.d.ts +85 -0
- package/dist/navigation/ArchbaseSpotlight.d.ts +69 -0
- package/dist/navigation/index.d.ts +12 -0
- package/dist/notification/ArchbaseNotificationCenter.d.ts +56 -0
- package/dist/notification/index.d.ts +2 -0
- package/dist/onboarding/ArchbaseOnboardingTour.d.ts +27 -76
- package/dist/viewers/ArchbaseDocViewer.d.ts +40 -0
- package/dist/viewers/ArchbasePdfBuilder.d.ts +53 -0
- package/dist/viewers/ArchbaseXmlViewer.d.ts +36 -0
- package/dist/viewers/index.d.ts +6 -0
- package/package.json +41 -18
- package/src/buttons/ArchbaseSpeedDial.tsx +282 -0
- package/src/buttons/index.ts +3 -0
- package/src/charts/ArchbaseArcGauge.tsx +325 -0
- package/src/charts/ArchbaseGantt.tsx +494 -0
- package/src/charts/ArchbaseLinearGauge.tsx +288 -0
- package/src/charts/ArchbaseResourceTimeline.tsx +433 -0
- package/src/charts/ArchbaseSparkline.tsx +193 -0
- package/src/charts/index.ts +20 -1
- package/src/containers/ArchbaseExpansionPanel.tsx +208 -0
- package/src/containers/ArchbaseFloatingPanel.tsx +448 -0
- package/src/containers/index.ts +17 -0
- package/src/datagrid/components/pagination/grid-pagination.tsx +2 -2
- package/src/datagrid/export/ArchbaseDataGridExcelExport.tsx +293 -0
- package/src/datagrid/export/index.ts +8 -0
- package/src/datagrid/index.tsx +2 -0
- package/src/display/ArchbaseAnimationWrapper.tsx +272 -0
- package/src/display/ArchbaseBarcodeGenerator.tsx +303 -0
- package/src/display/ArchbaseCarousel.tsx +679 -0
- package/src/display/ArchbaseCodeViewer.tsx +271 -0
- package/src/display/ArchbaseDiffViewer.tsx +108 -0
- package/src/display/ArchbaseJsonTree.tsx +150 -0
- package/src/display/ArchbaseLightbox.tsx +279 -0
- package/src/display/ArchbaseMarquee.tsx +268 -0
- package/src/display/ArchbasePhotoAlbum.tsx +415 -0
- package/src/display/ArchbaseQRCode.tsx +137 -0
- package/src/display/ArchbaseTooltipRich.tsx +317 -0
- package/src/display/ArchbaseVirtualList.tsx +618 -0
- package/src/display/index.ts +94 -1
- package/src/editors/ArchbaseAIPromptInput.tsx +432 -0
- package/src/editors/ArchbaseBarcodeScanner.tsx +570 -0
- package/src/editors/ArchbaseCepInput.tsx +173 -0
- package/src/editors/ArchbaseColorGradientPicker.tsx +460 -0
- package/src/editors/ArchbaseCpfCnpjInput.tsx +193 -0
- package/src/editors/ArchbaseCurrencyInput.tsx +100 -0
- package/src/editors/ArchbaseDualListbox.tsx +671 -0
- package/src/editors/ArchbaseInPlaceEditor.tsx +406 -0
- package/src/editors/ArchbaseLightGrid.tsx +538 -0
- package/src/editors/ArchbaseMentionInput.tsx +384 -0
- package/src/editors/ArchbaseMultiEmail.tsx +367 -0
- package/src/editors/ArchbaseMultiViewCalendar.tsx +439 -0
- package/src/editors/ArchbaseNumberStepper.tsx +219 -0
- package/src/editors/ArchbaseOTPInput.tsx +133 -0
- package/src/editors/ArchbaseOperationHoursEditor.tsx +1 -1
- package/src/editors/ArchbasePhoneInput.tsx +355 -0
- package/src/editors/ArchbaseRangeSlider.tsx +109 -0
- package/src/editors/ArchbaseSignaturePad.tsx +425 -0
- package/src/editors/ArchbaseSpeechToTextInput.tsx +444 -0
- package/src/editors/ArchbaseSpreadsheet.tsx +388 -0
- package/src/editors/ArchbaseTagInput.tsx +326 -0
- package/src/editors/index.tsx +92 -0
- package/src/feedback/ArchbaseChunkProgressBar.tsx +156 -0
- package/src/feedback/ArchbaseRipple.tsx +278 -0
- package/src/feedback/ArchbaseSkeleton.tsx +419 -0
- package/src/feedback/index.ts +22 -1
- package/src/filters/ArchbaseColumnSelector.tsx +268 -0
- package/src/filters/index.ts +2 -0
- package/src/forms/ArchbaseFieldArray.tsx +305 -0
- package/src/forms/ArchbaseFormWizard.tsx +284 -0
- package/src/forms/ArchbaseStepper.tsx +137 -0
- package/src/forms/index.ts +24 -2
- package/src/forms/useArchbaseFormWizard.ts +283 -0
- package/src/hooks/index.ts +12 -0
- package/src/hooks/useArchbaseConfirm.ts +293 -0
- package/src/image/editor/functions/image-processing.ts +5 -0
- package/src/image/editor/index.tsx +305 -391
- package/src/image/index.ts +1 -0
- package/src/index.ts +3 -0
- package/src/list/ArchbaseTreeList.tsx +422 -0
- package/src/list/index.ts +3 -0
- package/src/navigation/ArchbaseActionSheet.tsx +301 -0
- package/src/navigation/ArchbaseAppBar.tsx +233 -0
- package/src/navigation/ArchbaseBottomNavigation.tsx +243 -0
- package/src/navigation/ArchbaseContextMenu.tsx +298 -0
- package/src/navigation/ArchbaseKeyboardShortcuts.tsx +472 -0
- package/src/navigation/ArchbaseSpotlight.tsx +483 -0
- package/src/navigation/index.ts +48 -1
- package/src/notification/ArchbaseNotificationCenter.tsx +502 -0
- package/src/notification/index.ts +2 -0
- package/src/onboarding/ArchbaseOnboardingTour.tsx +229 -102
- package/src/viewers/ArchbaseDocViewer.tsx +584 -0
- package/src/viewers/ArchbasePdfBuilder.tsx +291 -0
- package/src/viewers/ArchbaseXmlViewer.tsx +142 -0
- package/src/viewers/index.ts +12 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { default as React, ReactNode } from 'react';
|
|
2
|
+
import { MantineColor, MantineSize, MantineRadius } from '@mantine/core';
|
|
3
|
+
export interface ArchbaseSpeedDialAction {
|
|
4
|
+
/** ID único da ação */
|
|
5
|
+
id: string;
|
|
6
|
+
/** Ícone da ação */
|
|
7
|
+
icon: ReactNode;
|
|
8
|
+
/** Label da ação (tooltip) */
|
|
9
|
+
label: string;
|
|
10
|
+
/** Callback ao clicar */
|
|
11
|
+
onClick: () => void;
|
|
12
|
+
/** Cor da ação */
|
|
13
|
+
color?: MantineColor;
|
|
14
|
+
/** Se está desabilitado */
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
/** Se deve mostrar label junto ao botão */
|
|
17
|
+
showLabel?: boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface ArchbaseSpeedDialProps {
|
|
20
|
+
/** Ações do speed dial */
|
|
21
|
+
actions: ArchbaseSpeedDialAction[];
|
|
22
|
+
/** Ícone quando fechado */
|
|
23
|
+
icon?: ReactNode;
|
|
24
|
+
/** Ícone quando aberto */
|
|
25
|
+
openIcon?: ReactNode;
|
|
26
|
+
/** Cor do botão principal */
|
|
27
|
+
color?: MantineColor;
|
|
28
|
+
/** Tamanho dos botões */
|
|
29
|
+
size?: MantineSize;
|
|
30
|
+
/** Raio das bordas */
|
|
31
|
+
radius?: MantineRadius;
|
|
32
|
+
/** Direção de expansão */
|
|
33
|
+
direction?: 'up' | 'down' | 'left' | 'right';
|
|
34
|
+
/** Se está aberto (controlado) */
|
|
35
|
+
opened?: boolean;
|
|
36
|
+
/** Callback ao abrir/fechar */
|
|
37
|
+
onOpenChange?: (opened: boolean) => void;
|
|
38
|
+
/** Se deve fechar ao clicar em uma ação */
|
|
39
|
+
closeOnActionClick?: boolean;
|
|
40
|
+
/** Posição no layout */
|
|
41
|
+
position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
42
|
+
/** Se está fixo na tela */
|
|
43
|
+
fixed?: boolean;
|
|
44
|
+
/** Espaçamento da borda quando fixo */
|
|
45
|
+
offset?: number;
|
|
46
|
+
/** Espaçamento entre ações */
|
|
47
|
+
gap?: number;
|
|
48
|
+
/** Variante do botão */
|
|
49
|
+
variant?: 'filled' | 'light' | 'outline' | 'subtle' | 'default';
|
|
50
|
+
/** Se deve mostrar backdrop */
|
|
51
|
+
withBackdrop?: boolean;
|
|
52
|
+
/** Callback ao clicar no backdrop */
|
|
53
|
+
onBackdropClick?: () => void;
|
|
54
|
+
/** Classe CSS */
|
|
55
|
+
className?: string;
|
|
56
|
+
/** Estilo */
|
|
57
|
+
style?: React.CSSProperties;
|
|
58
|
+
}
|
|
59
|
+
export declare const ArchbaseSpeedDial: React.ForwardRefExoticComponent<ArchbaseSpeedDialProps & React.RefAttributes<HTMLDivElement>>;
|
package/dist/buttons/index.d.ts
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
export { ArchbaseActionButtons } from './ArchbaseActionButtons';
|
|
2
2
|
export type { ArchbaseActionButtonsProps, ArchbaseActionButtonsOptions, ArchbaseAction, ActionButtonsCustomComponentsDefinition, } from './ArchbaseActionButtons';
|
|
3
|
+
export { ArchbaseSpeedDial } from './ArchbaseSpeedDial';
|
|
4
|
+
export type { ArchbaseSpeedDialProps, ArchbaseSpeedDialAction } from './ArchbaseSpeedDial';
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { MantineColor, MantineSize } from '@mantine/core';
|
|
3
|
+
export interface ArchbaseArcGaugeSegment {
|
|
4
|
+
/** Valor final do segmento (percentual 0-100) */
|
|
5
|
+
value: number;
|
|
6
|
+
/** Cor do segmento */
|
|
7
|
+
color: MantineColor;
|
|
8
|
+
/** Label opcional */
|
|
9
|
+
label?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface ArchbaseArcGaugeProps {
|
|
12
|
+
/** Valor atual (0-100 ou dentro de min-max) */
|
|
13
|
+
value: number;
|
|
14
|
+
/** Valor mínimo */
|
|
15
|
+
min?: number;
|
|
16
|
+
/** Valor máximo */
|
|
17
|
+
max?: number;
|
|
18
|
+
/** Segmentos coloridos do gauge */
|
|
19
|
+
segments?: ArchbaseArcGaugeSegment[];
|
|
20
|
+
/** Cor padrão do arco */
|
|
21
|
+
color?: MantineColor;
|
|
22
|
+
/** Cor do fundo do arco */
|
|
23
|
+
backgroundColor?: MantineColor;
|
|
24
|
+
/** Cor do ponteiro */
|
|
25
|
+
needleColor?: MantineColor;
|
|
26
|
+
/** Ângulo de início (graus, 0 = direita) */
|
|
27
|
+
startAngle?: number;
|
|
28
|
+
/** Ângulo de fim (graus) */
|
|
29
|
+
endAngle?: number;
|
|
30
|
+
/** Tamanho do componente */
|
|
31
|
+
size?: number;
|
|
32
|
+
/** Espessura do arco */
|
|
33
|
+
thickness?: number;
|
|
34
|
+
/** Se deve mostrar o valor */
|
|
35
|
+
showValue?: boolean;
|
|
36
|
+
/** Formato do valor */
|
|
37
|
+
valueFormat?: (value: number) => string;
|
|
38
|
+
/** Sufixo do valor */
|
|
39
|
+
valueSuffix?: string;
|
|
40
|
+
/** Label inferior */
|
|
41
|
+
label?: string;
|
|
42
|
+
/** Tamanho do label */
|
|
43
|
+
labelSize?: MantineSize;
|
|
44
|
+
/** Se deve mostrar marcadores */
|
|
45
|
+
showTicks?: boolean;
|
|
46
|
+
/** Número de marcadores */
|
|
47
|
+
tickCount?: number;
|
|
48
|
+
/** Se deve mostrar labels nos marcadores */
|
|
49
|
+
showTickLabels?: boolean;
|
|
50
|
+
/** Classe CSS */
|
|
51
|
+
className?: string;
|
|
52
|
+
/** Estilo */
|
|
53
|
+
style?: React.CSSProperties;
|
|
54
|
+
}
|
|
55
|
+
export declare const ArchbaseArcGauge: React.ForwardRefExoticComponent<ArchbaseArcGaugeProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Task, ViewMode } from 'gantt-task-react';
|
|
3
|
+
import { IArchbaseDataSourceBase } from '@archbase/data';
|
|
4
|
+
export { ViewMode } from 'gantt-task-react';
|
|
5
|
+
export type { Task } from 'gantt-task-react';
|
|
6
|
+
export interface ArchbaseGanttProps<T = any, ID = any> {
|
|
7
|
+
/** DataSource que fornece a coleção de tarefas */
|
|
8
|
+
dataSource?: IArchbaseDataSourceBase<T>;
|
|
9
|
+
/** Campo que mapeia o id da tarefa */
|
|
10
|
+
idField?: string;
|
|
11
|
+
/** Campo que mapeia o nome da tarefa */
|
|
12
|
+
nameField?: string;
|
|
13
|
+
/** Campo que mapeia a data de início */
|
|
14
|
+
startDateField?: string;
|
|
15
|
+
/** Campo que mapeia a data de término */
|
|
16
|
+
endDateField?: string;
|
|
17
|
+
/** Campo que mapeia o progresso (0-100) */
|
|
18
|
+
progressField?: string;
|
|
19
|
+
/** Campo que mapeia dependências (array de IDs) */
|
|
20
|
+
dependenciesField?: string;
|
|
21
|
+
/** Campo que mapeia o tipo ('task' | 'milestone' | 'project') */
|
|
22
|
+
typeField?: string;
|
|
23
|
+
/** Campo que mapeia o ID do registro pai */
|
|
24
|
+
parentIdField?: string;
|
|
25
|
+
/** Tarefas standalone (quando não se usa dataSource) */
|
|
26
|
+
tasks?: Task[];
|
|
27
|
+
/** Modo de visualização do gantt */
|
|
28
|
+
viewMode?: ViewMode;
|
|
29
|
+
/** Locale para formatação de datas */
|
|
30
|
+
locale?: string;
|
|
31
|
+
/** Largura das células da lista de tarefas */
|
|
32
|
+
listCellWidth?: string;
|
|
33
|
+
/** Largura de cada coluna do gantt */
|
|
34
|
+
columnWidth?: number;
|
|
35
|
+
/** Altura de cada linha */
|
|
36
|
+
rowHeight?: number;
|
|
37
|
+
/** Percentual de preenchimento da barra */
|
|
38
|
+
barFill?: number;
|
|
39
|
+
/** Exibe a lista de tarefas à esquerda */
|
|
40
|
+
showTaskList?: boolean;
|
|
41
|
+
/** Callback quando uma tarefa é alterada (data arrastada) */
|
|
42
|
+
onTaskChange?: (task: T) => void;
|
|
43
|
+
/** Callback quando uma tarefa é deletada */
|
|
44
|
+
onTaskDelete?: (task: T) => void;
|
|
45
|
+
/** Callback quando o progresso de uma tarefa é alterado */
|
|
46
|
+
onProgressChange?: (task: T, progress: number) => void;
|
|
47
|
+
/** Callback ao dar duplo clique em uma tarefa */
|
|
48
|
+
onDoubleClick?: (task: T) => void;
|
|
49
|
+
/** Callback ao clicar em uma tarefa */
|
|
50
|
+
onClick?: (task: T) => void;
|
|
51
|
+
/** Callback ao selecionar/deselecionar uma tarefa */
|
|
52
|
+
onSelect?: (task: T, isSelected: boolean) => void;
|
|
53
|
+
/** Label do componente (usado com Input.Wrapper) */
|
|
54
|
+
label?: React.ReactNode;
|
|
55
|
+
/** Descrição do componente (usado com Input.Wrapper) */
|
|
56
|
+
description?: React.ReactNode;
|
|
57
|
+
/** Somente leitura — desabilita edição por drag */
|
|
58
|
+
readOnly?: boolean;
|
|
59
|
+
/** Estilo inline do container */
|
|
60
|
+
style?: React.CSSProperties;
|
|
61
|
+
/** Classe CSS do container */
|
|
62
|
+
className?: string;
|
|
63
|
+
/** Largura do container */
|
|
64
|
+
width?: string | number;
|
|
65
|
+
/** Altura do container */
|
|
66
|
+
height?: string | number;
|
|
67
|
+
}
|
|
68
|
+
export declare const ArchbaseGantt: <T = any, ID = any>(props: ArchbaseGanttProps<T, ID> & {
|
|
69
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
70
|
+
}) => React.ReactElement | null;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { MantineColor, MantineSize } from '@mantine/core';
|
|
3
|
+
export interface ArchbaseLinearGaugeZone {
|
|
4
|
+
/** Valor inicial da zona */
|
|
5
|
+
from: number;
|
|
6
|
+
/** Valor final da zona */
|
|
7
|
+
to: number;
|
|
8
|
+
/** Cor da zona */
|
|
9
|
+
color: MantineColor;
|
|
10
|
+
/** Label opcional */
|
|
11
|
+
label?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface ArchbaseLinearGaugeProps {
|
|
14
|
+
/** Valor atual */
|
|
15
|
+
value: number;
|
|
16
|
+
/** Valor mínimo */
|
|
17
|
+
min?: number;
|
|
18
|
+
/** Valor máximo */
|
|
19
|
+
max?: number;
|
|
20
|
+
/** Orientação */
|
|
21
|
+
orientation?: 'horizontal' | 'vertical';
|
|
22
|
+
/** Zonas coloridas */
|
|
23
|
+
zones?: ArchbaseLinearGaugeZone[];
|
|
24
|
+
/** Cor padrão da barra */
|
|
25
|
+
color?: MantineColor;
|
|
26
|
+
/** Cor do fundo */
|
|
27
|
+
backgroundColor?: MantineColor;
|
|
28
|
+
/** Cor do indicador */
|
|
29
|
+
indicatorColor?: MantineColor;
|
|
30
|
+
/** Largura (horizontal) ou altura (vertical) */
|
|
31
|
+
size?: number;
|
|
32
|
+
/** Espessura da barra */
|
|
33
|
+
thickness?: number;
|
|
34
|
+
/** Se deve mostrar o valor */
|
|
35
|
+
showValue?: boolean;
|
|
36
|
+
/** Formato do valor */
|
|
37
|
+
valueFormat?: (value: number) => string;
|
|
38
|
+
/** Sufixo do valor */
|
|
39
|
+
valueSuffix?: string;
|
|
40
|
+
/** Label */
|
|
41
|
+
label?: string;
|
|
42
|
+
/** Tamanho do label */
|
|
43
|
+
labelSize?: MantineSize;
|
|
44
|
+
/** Se deve mostrar ticks */
|
|
45
|
+
showTicks?: boolean;
|
|
46
|
+
/** Número de ticks */
|
|
47
|
+
tickCount?: number;
|
|
48
|
+
/** Se deve mostrar labels nos ticks */
|
|
49
|
+
showTickLabels?: boolean;
|
|
50
|
+
/** Classe CSS */
|
|
51
|
+
className?: string;
|
|
52
|
+
/** Estilo */
|
|
53
|
+
style?: React.CSSProperties;
|
|
54
|
+
}
|
|
55
|
+
export declare const ArchbaseLinearGauge: React.ForwardRefExoticComponent<ArchbaseLinearGaugeProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { IArchbaseDataSourceBase } from '@archbase/data';
|
|
2
|
+
export type ArchbaseResourceTimelineViewMode = 'day' | 'week' | 'month' | 'quarter';
|
|
3
|
+
export interface ArchbaseResourceTimelineProps<TResource, TEvent, ID = any> {
|
|
4
|
+
/** DataSource for resources (groups/rows). */
|
|
5
|
+
resourceDataSource?: IArchbaseDataSourceBase<TResource>;
|
|
6
|
+
/** Field that holds the resource id. */
|
|
7
|
+
resourceIdField?: string;
|
|
8
|
+
/** Field that holds the resource display label. */
|
|
9
|
+
resourceLabelField?: string;
|
|
10
|
+
/** DataSource for events (items). */
|
|
11
|
+
eventDataSource?: IArchbaseDataSourceBase<TEvent>;
|
|
12
|
+
/** Field that holds the event start date. */
|
|
13
|
+
eventStartField?: string;
|
|
14
|
+
/** Field that holds the event end date. */
|
|
15
|
+
eventEndField?: string;
|
|
16
|
+
/** Field that links the event to a resource. */
|
|
17
|
+
eventResourceIdField?: string;
|
|
18
|
+
/** Field that holds the event display label. */
|
|
19
|
+
eventLabelField?: string;
|
|
20
|
+
/** Optional field that holds a CSS color for the event. */
|
|
21
|
+
eventColorField?: string;
|
|
22
|
+
/** Standalone resource array (used when no resourceDataSource). */
|
|
23
|
+
resources?: TResource[];
|
|
24
|
+
/** Standalone event array (used when no eventDataSource). */
|
|
25
|
+
events?: TEvent[];
|
|
26
|
+
/** Visible range start. */
|
|
27
|
+
startDate?: Date;
|
|
28
|
+
/** Visible range end. */
|
|
29
|
+
endDate?: Date;
|
|
30
|
+
/** Zoom / time-axis granularity preset. */
|
|
31
|
+
viewMode?: ArchbaseResourceTimelineViewMode;
|
|
32
|
+
/** Allow drag & resize of events. */
|
|
33
|
+
editable?: boolean;
|
|
34
|
+
/** Fired when the user clicks an event. */
|
|
35
|
+
onEventClick?: (event: TEvent) => void;
|
|
36
|
+
/** Fired after an event is moved (drag). */
|
|
37
|
+
onEventMove?: (event: TEvent, newStart: Date, newEnd: Date, newResourceId: any) => void;
|
|
38
|
+
/** Fired after an event is resized. */
|
|
39
|
+
onEventResize?: (event: TEvent, newStart: Date, newEnd: Date) => void;
|
|
40
|
+
/** Fired when the user clicks on an empty slot. */
|
|
41
|
+
onSlotClick?: (resourceId: any, date: Date) => void;
|
|
42
|
+
/** Fired when a new event range is selected via drag on an empty area. */
|
|
43
|
+
onCreateEvent?: (resourceId: any, start: Date, end: Date) => void;
|
|
44
|
+
/** Input.Wrapper label. */
|
|
45
|
+
label?: string;
|
|
46
|
+
/** Input.Wrapper description. */
|
|
47
|
+
description?: string;
|
|
48
|
+
/** Height of the timeline container. */
|
|
49
|
+
height?: string | number;
|
|
50
|
+
/** Custom inline style for the outer wrapper. */
|
|
51
|
+
style?: React.CSSProperties;
|
|
52
|
+
/** Custom CSS class for the outer wrapper. */
|
|
53
|
+
className?: string;
|
|
54
|
+
/** Width of the outer wrapper. */
|
|
55
|
+
width?: string | number;
|
|
56
|
+
}
|
|
57
|
+
declare function ArchbaseResourceTimeline<TResource, TEvent, ID = any>({ resourceDataSource, resourceIdField, resourceLabelField, eventDataSource, eventStartField, eventEndField, eventResourceIdField, eventLabelField, eventColorField, resources: resourcesProp, events: eventsProp, startDate, endDate, viewMode, editable, onEventClick, onEventMove, onEventResize, onSlotClick, onCreateEvent, label, description, height, style, className, width, }: ArchbaseResourceTimelineProps<TResource, TEvent, ID>): import("react/jsx-runtime").JSX.Element;
|
|
58
|
+
declare namespace ArchbaseResourceTimeline {
|
|
59
|
+
var displayName: string;
|
|
60
|
+
}
|
|
61
|
+
export { ArchbaseResourceTimeline };
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { SparklineProps } from '@mantine/charts';
|
|
3
|
+
import { MantineSize, MantineColor } from '@mantine/core';
|
|
4
|
+
export type SparklineTrendDirection = 'up' | 'down' | 'neutral';
|
|
5
|
+
export interface ArchbaseSparklineProps extends Omit<SparklineProps, 'data' | 'trendColors'> {
|
|
6
|
+
/** Dados do sparkline (array de números) */
|
|
7
|
+
data: number[];
|
|
8
|
+
/** Cor do sparkline */
|
|
9
|
+
color?: MantineColor;
|
|
10
|
+
/** Cor de preenchimento (para área) */
|
|
11
|
+
fillColor?: MantineColor;
|
|
12
|
+
/** Opacidade do preenchimento */
|
|
13
|
+
fillOpacity?: number;
|
|
14
|
+
/** Tipo de curva */
|
|
15
|
+
curveType?: 'linear' | 'natural' | 'monotone' | 'step' | 'stepBefore' | 'stepAfter';
|
|
16
|
+
/** Largura da linha */
|
|
17
|
+
strokeWidth?: number;
|
|
18
|
+
/** Se deve mostrar o indicador de tendência */
|
|
19
|
+
showTrend?: boolean;
|
|
20
|
+
/** Se deve colorir automaticamente baseado na tendência */
|
|
21
|
+
autoTrendColors?: boolean;
|
|
22
|
+
/** Cor para tendência positiva */
|
|
23
|
+
trendUpColor?: MantineColor;
|
|
24
|
+
/** Cor para tendência negativa */
|
|
25
|
+
trendDownColor?: MantineColor;
|
|
26
|
+
/** Cor para tendência neutra */
|
|
27
|
+
trendNeutralColor?: MantineColor;
|
|
28
|
+
/** Se deve mostrar o valor atual */
|
|
29
|
+
showValue?: boolean;
|
|
30
|
+
/** Formato do valor */
|
|
31
|
+
valueFormat?: (value: number) => string;
|
|
32
|
+
/** Label opcional */
|
|
33
|
+
label?: string;
|
|
34
|
+
/** Tamanho do label */
|
|
35
|
+
labelSize?: MantineSize;
|
|
36
|
+
/** Altura do sparkline */
|
|
37
|
+
height?: number;
|
|
38
|
+
/** Largura do sparkline */
|
|
39
|
+
width?: number | string;
|
|
40
|
+
/** Classe CSS */
|
|
41
|
+
className?: string;
|
|
42
|
+
/** Estilo */
|
|
43
|
+
style?: React.CSSProperties;
|
|
44
|
+
}
|
|
45
|
+
export declare const ArchbaseSparkline: React.ForwardRefExoticComponent<Omit<ArchbaseSparklineProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
package/dist/charts/index.d.ts
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
1
|
export { ArchbaseTimeline } from './ArchbaseTimeline';
|
|
2
2
|
export type { ArchbaseTimelineItem, ArchbaseTimelineProps } from './ArchbaseTimeline';
|
|
3
|
+
export { ArchbaseGantt, ViewMode } from './ArchbaseGantt';
|
|
4
|
+
export type { ArchbaseGanttProps, Task as GanttTask } from './ArchbaseGantt';
|
|
5
|
+
export { ArchbaseResourceTimeline } from './ArchbaseResourceTimeline';
|
|
6
|
+
export type { ArchbaseResourceTimelineProps, ArchbaseResourceTimelineViewMode } from './ArchbaseResourceTimeline';
|
|
3
7
|
export * from './vis-timeline';
|
|
8
|
+
export { ArchbaseSparkline } from './ArchbaseSparkline';
|
|
9
|
+
export type { ArchbaseSparklineProps, SparklineTrendDirection } from './ArchbaseSparkline';
|
|
10
|
+
export { ArchbaseArcGauge } from './ArchbaseArcGauge';
|
|
11
|
+
export type { ArchbaseArcGaugeProps, ArchbaseArcGaugeSegment } from './ArchbaseArcGauge';
|
|
12
|
+
export { ArchbaseLinearGauge } from './ArchbaseLinearGauge';
|
|
13
|
+
export type { ArchbaseLinearGaugeProps, ArchbaseLinearGaugeZone } from './ArchbaseLinearGauge';
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { AccordionProps } from '@mantine/core';
|
|
3
|
+
export interface ArchbaseExpansionPanelItem {
|
|
4
|
+
/** ID único do painel */
|
|
5
|
+
id: string;
|
|
6
|
+
/** Título do painel */
|
|
7
|
+
title: string;
|
|
8
|
+
/** Descrição opcional */
|
|
9
|
+
description?: string;
|
|
10
|
+
/** Ícone opcional */
|
|
11
|
+
icon?: ReactNode;
|
|
12
|
+
/** Badge opcional */
|
|
13
|
+
badge?: string | number;
|
|
14
|
+
/** Cor do badge */
|
|
15
|
+
badgeColor?: string;
|
|
16
|
+
/** Conteúdo do painel */
|
|
17
|
+
content: ReactNode;
|
|
18
|
+
/** Se o painel está desabilitado */
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
}
|
|
21
|
+
export interface ArchbaseExpansionPanelProps extends Omit<AccordionProps<true>, 'children' | 'multiple' | 'value' | 'defaultValue' | 'onChange'> {
|
|
22
|
+
/** Array de painéis */
|
|
23
|
+
panels: ArchbaseExpansionPanelItem[];
|
|
24
|
+
/** Permitir múltiplos painéis abertos */
|
|
25
|
+
multiple?: boolean;
|
|
26
|
+
/** Valor padrão (IDs dos painéis abertos) */
|
|
27
|
+
defaultValue?: string | string[];
|
|
28
|
+
/** Valor controlado */
|
|
29
|
+
value?: string | string[] | null;
|
|
30
|
+
/** Callback ao mudar */
|
|
31
|
+
onChange?: (value: string | string[] | null) => void;
|
|
32
|
+
/** Variante visual */
|
|
33
|
+
variant?: 'default' | 'contained' | 'filled' | 'separated';
|
|
34
|
+
/** Tamanho do chevron */
|
|
35
|
+
chevronSize?: number;
|
|
36
|
+
/** Posição do chevron */
|
|
37
|
+
chevronPosition?: 'left' | 'right';
|
|
38
|
+
/** Duração da transição em ms */
|
|
39
|
+
transitionDuration?: number;
|
|
40
|
+
/** Desabilitar todos os painéis */
|
|
41
|
+
disabled?: boolean;
|
|
42
|
+
}
|
|
43
|
+
export declare function ArchbaseExpansionPanel({ panels, multiple, defaultValue, value, onChange, variant, chevronSize, chevronPosition, transitionDuration, disabled, ...mantineProps }: ArchbaseExpansionPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
44
|
+
export interface ArchbaseExpansionPanelControlledProps extends Omit<ArchbaseExpansionPanelProps, 'value' | 'onChange' | 'defaultValue'> {
|
|
45
|
+
/** IDs dos painéis abertos */
|
|
46
|
+
openPanels: string[];
|
|
47
|
+
/** Callback ao abrir/fechar painéis */
|
|
48
|
+
onOpenPanelsChange: (panels: string[]) => void;
|
|
49
|
+
}
|
|
50
|
+
export declare function ArchbaseExpansionPanelControlled({ openPanels, onOpenPanelsChange, ...props }: ArchbaseExpansionPanelControlledProps): import("react/jsx-runtime").JSX.Element;
|
|
51
|
+
export interface ArchbaseExpansionPanelSingleProps extends Omit<ArchbaseExpansionPanelProps, 'multiple' | 'value' | 'onChange' | 'defaultValue'> {
|
|
52
|
+
/** ID do painel aberto */
|
|
53
|
+
openPanel?: string | null;
|
|
54
|
+
/** Callback ao abrir/fechar */
|
|
55
|
+
onOpenPanelChange?: (panel: string | null) => void;
|
|
56
|
+
/** Painel aberto por padrão */
|
|
57
|
+
defaultOpenPanel?: string;
|
|
58
|
+
}
|
|
59
|
+
export declare function ArchbaseExpansionPanelSingle({ openPanel, onOpenPanelChange, defaultOpenPanel, ...props }: ArchbaseExpansionPanelSingleProps): import("react/jsx-runtime").JSX.Element;
|
|
60
|
+
export default ArchbaseExpansionPanel;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
export interface ArchbaseFloatingPanelProps {
|
|
3
|
+
/** ID único do painel */
|
|
4
|
+
id?: string;
|
|
5
|
+
/** Conteúdo do painel */
|
|
6
|
+
children: ReactNode;
|
|
7
|
+
/** Título do painel */
|
|
8
|
+
title?: string;
|
|
9
|
+
/** Ícone do título */
|
|
10
|
+
icon?: ReactNode;
|
|
11
|
+
/** Largura inicial */
|
|
12
|
+
width?: number;
|
|
13
|
+
/** Altura inicial */
|
|
14
|
+
height?: number;
|
|
15
|
+
/** Posição X inicial */
|
|
16
|
+
initialX?: number;
|
|
17
|
+
/** Posição Y inicial */
|
|
18
|
+
initialY?: number;
|
|
19
|
+
/** Se pode redimensionar */
|
|
20
|
+
resizable?: boolean;
|
|
21
|
+
/** Se pode minimizar */
|
|
22
|
+
minimizable?: boolean;
|
|
23
|
+
/** Se pode maximizar */
|
|
24
|
+
maximizable?: boolean;
|
|
25
|
+
/** Se pode fechar */
|
|
26
|
+
closable?: boolean;
|
|
27
|
+
/** Callback ao fechar */
|
|
28
|
+
onClose?: () => void;
|
|
29
|
+
/** Callback ao minimizar */
|
|
30
|
+
onMinimize?: () => void;
|
|
31
|
+
/** Callback ao maximizar */
|
|
32
|
+
onMaximize?: () => void;
|
|
33
|
+
/** Callback ao restaurar */
|
|
34
|
+
onRestore?: () => void;
|
|
35
|
+
/** Callback ao mover */
|
|
36
|
+
onMove?: (x: number, y: number) => void;
|
|
37
|
+
/** Callback ao redimensionar */
|
|
38
|
+
onResize?: (width: number, height: number) => void;
|
|
39
|
+
/** Cor do header */
|
|
40
|
+
headerColor?: string;
|
|
41
|
+
/** Se o painel está inicialmente visível */
|
|
42
|
+
defaultVisible?: boolean;
|
|
43
|
+
/** Z-index */
|
|
44
|
+
zIndex?: number;
|
|
45
|
+
/** Tamanho mínimo */
|
|
46
|
+
minWidth?: number;
|
|
47
|
+
minHeight?: number;
|
|
48
|
+
/** Tamanho máximo */
|
|
49
|
+
maxWidth?: number;
|
|
50
|
+
maxHeight?: number;
|
|
51
|
+
}
|
|
52
|
+
export interface ArchbaseFloatingPanelState {
|
|
53
|
+
x: number;
|
|
54
|
+
y: number;
|
|
55
|
+
width: number;
|
|
56
|
+
height: number;
|
|
57
|
+
minimized: boolean;
|
|
58
|
+
maximized: boolean;
|
|
59
|
+
visible: boolean;
|
|
60
|
+
zIndex: number;
|
|
61
|
+
}
|
|
62
|
+
export declare function ArchbaseFloatingPanel({ id, children, title, icon, width: initialWidth, height: initialHeight, initialX, initialY, resizable, minimizable, maximizable, closable, onClose, onMinimize, onMaximize, onRestore, onMove, onResize, headerColor, defaultVisible, zIndex: initialZIndex, minWidth, minHeight, maxWidth, maxHeight, }: ArchbaseFloatingPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
63
|
+
export interface UseArchbaseFloatingPanelOptions {
|
|
64
|
+
/** ID do painel */
|
|
65
|
+
id?: string;
|
|
66
|
+
/** Título */
|
|
67
|
+
title?: string;
|
|
68
|
+
/** Largura inicial */
|
|
69
|
+
width?: number;
|
|
70
|
+
/** Altura inicial */
|
|
71
|
+
height?: number;
|
|
72
|
+
/** Posição inicial */
|
|
73
|
+
initialPosition?: {
|
|
74
|
+
x: number;
|
|
75
|
+
y: number;
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
export interface UseArchbaseFloatingPanelReturn {
|
|
79
|
+
/** Se o painel está visível */
|
|
80
|
+
isOpen: boolean;
|
|
81
|
+
/** Abrir o painel */
|
|
82
|
+
open: () => void;
|
|
83
|
+
/** Fechar o painel */
|
|
84
|
+
close: () => void;
|
|
85
|
+
/** Toggle visibilidade */
|
|
86
|
+
toggle: () => void;
|
|
87
|
+
/** Props para o painel */
|
|
88
|
+
panelProps: Partial<ArchbaseFloatingPanelProps>;
|
|
89
|
+
}
|
|
90
|
+
export declare function useArchbaseFloatingPanel(options?: UseArchbaseFloatingPanelOptions): UseArchbaseFloatingPanelReturn;
|
|
91
|
+
export default ArchbaseFloatingPanel;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { ArchbaseExpansionPanel, ArchbaseExpansionPanelControlled, ArchbaseExpansionPanelSingle } from './ArchbaseExpansionPanel';
|
|
2
|
+
export type { ArchbaseExpansionPanelProps, ArchbaseExpansionPanelItem, ArchbaseExpansionPanelControlledProps, ArchbaseExpansionPanelSingleProps, } from './ArchbaseExpansionPanel';
|
|
3
|
+
export { ArchbaseFloatingPanel, useArchbaseFloatingPanel } from './ArchbaseFloatingPanel';
|
|
4
|
+
export type { ArchbaseFloatingPanelProps, ArchbaseFloatingPanelState, UseArchbaseFloatingPanelOptions, UseArchbaseFloatingPanelReturn, } from './ArchbaseFloatingPanel';
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { MantineSize, MantineColor } from '@mantine/core';
|
|
3
|
+
export interface ExcelExportColumn {
|
|
4
|
+
/** Campo/key do dado */
|
|
5
|
+
field: string;
|
|
6
|
+
/** Label do cabeçalho */
|
|
7
|
+
header: string;
|
|
8
|
+
/** Largura da coluna em caracteres */
|
|
9
|
+
width?: number;
|
|
10
|
+
/** Formatador de valor */
|
|
11
|
+
formatter?: (value: any, row: any) => string | number;
|
|
12
|
+
/** Se a coluna deve ser incluída na exportação */
|
|
13
|
+
visible?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export interface ArchbaseDataGridExcelExportProps<T = any> {
|
|
16
|
+
/** Dados a serem exportados */
|
|
17
|
+
data: T[];
|
|
18
|
+
/** Colunas a serem exportadas */
|
|
19
|
+
columns: ExcelExportColumn[];
|
|
20
|
+
/** Nome do arquivo (sem extensão) */
|
|
21
|
+
filename?: string;
|
|
22
|
+
/** Nome da planilha */
|
|
23
|
+
sheetName?: string;
|
|
24
|
+
/** Se deve incluir apenas dados filtrados (se aplicável) */
|
|
25
|
+
includeFiltered?: boolean;
|
|
26
|
+
/** Formato de data para colunas de data */
|
|
27
|
+
dateFormat?: string;
|
|
28
|
+
/** Formato de número para colunas numéricas */
|
|
29
|
+
numberFormat?: string;
|
|
30
|
+
/** Se deve incluir cabeçalhos */
|
|
31
|
+
includeHeaders?: boolean;
|
|
32
|
+
/** Callback antes da exportação */
|
|
33
|
+
onBeforeExport?: (data: T[]) => T[] | Promise<T[]>;
|
|
34
|
+
/** Callback após exportação bem sucedida */
|
|
35
|
+
onExportSuccess?: () => void;
|
|
36
|
+
/** Callback em caso de erro */
|
|
37
|
+
onExportError?: (error: Error) => void;
|
|
38
|
+
/** Variante do botão */
|
|
39
|
+
variant?: 'button' | 'icon';
|
|
40
|
+
/** Label do botão */
|
|
41
|
+
label?: string;
|
|
42
|
+
/** Tamanho do botão */
|
|
43
|
+
size?: MantineSize;
|
|
44
|
+
/** Cor do botão */
|
|
45
|
+
color?: MantineColor;
|
|
46
|
+
/** Se o botão está desabilitado */
|
|
47
|
+
disabled?: boolean;
|
|
48
|
+
/** Tooltip */
|
|
49
|
+
tooltip?: string;
|
|
50
|
+
/** Classe CSS */
|
|
51
|
+
className?: string;
|
|
52
|
+
/** Estilo */
|
|
53
|
+
style?: React.CSSProperties;
|
|
54
|
+
}
|
|
55
|
+
export declare function ArchbaseDataGridExcelExport<T = any>({ data, columns, filename, sheetName, includeFiltered, dateFormat, numberFormat, includeHeaders, onBeforeExport, onExportSuccess, onExportError, variant, label, size, color, disabled, tooltip, className, style, }: ArchbaseDataGridExcelExportProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
56
|
+
export declare namespace ArchbaseDataGridExcelExport {
|
|
57
|
+
var displayName: string;
|
|
58
|
+
}
|
|
59
|
+
export declare function useArchbaseExcelExport<T = any>(): {
|
|
60
|
+
exportToExcel: (data: T[], columns: ExcelExportColumn[], options?: {
|
|
61
|
+
filename?: string;
|
|
62
|
+
sheetName?: string;
|
|
63
|
+
includeHeaders?: boolean;
|
|
64
|
+
}) => Promise<boolean>;
|
|
65
|
+
isExporting: boolean;
|
|
66
|
+
error: Error;
|
|
67
|
+
};
|
package/dist/datagrid/index.d.ts
CHANGED