zavadil-react-common 2.2.4 → 2.2.5
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/index.d.ts
CHANGED
|
@@ -286,6 +286,11 @@ type EntityWithNameIdSelectProps<T extends EntityWithName> = {
|
|
|
286
286
|
};
|
|
287
287
|
declare function EntityWithNameIdSelect<T extends EntityWithName>({ id, sort, disabled, onChange, options, showEmptyOption, emptyOptionLabel }: EntityWithNameIdSelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
288
288
|
|
|
289
|
+
type TextToClipboardProps = {
|
|
290
|
+
text?: string | null;
|
|
291
|
+
onClipboardCopy?: () => any;
|
|
292
|
+
};
|
|
293
|
+
|
|
289
294
|
type UserAlertTypeIconProps = {
|
|
290
295
|
type: UserAlertType;
|
|
291
296
|
size?: string | number;
|
|
@@ -356,4 +361,4 @@ type LocalizeProps = {
|
|
|
356
361
|
};
|
|
357
362
|
declare function Localize({ text, tag }: LocalizeProps): react_jsx_runtime.JSX.Element;
|
|
358
363
|
|
|
359
|
-
export { type ActiveButtonProps, AdvancedTable, type AdvancedTableProps, AutocompleteEntityIdSelect, AutocompleteEntitySelect, type AutocompleteEntitySelectProps, type AutocompleteIdSelectProps, AutocompleteLookupIdSelect, type AutocompleteLookupIdSelectProps, AutocompleteLookupSelect, type AutocompleteLookupSelectProps, AutocompleteSelect, type AutocompleteSelectProps, type BasicDialogProps, CacheStatsControl, type CacheStatsControlProps, ConfirmDialog, ConfirmDialogContext, ConfirmDialogContextData, type ConfirmDialogProps, DateInput, type DateInputProps, DateTime, DateTimeInput, type DateTimeInputProps, type DateTimeProps, DeleteButton, type DeleteButtonProps, Duration, type DurationProps, Elapsed, type ElapsedProps, EntityIdSelect, type EntityIdSelectProps, EntitySelect, type EntitySelectProps, EntityWithNameIdSelect, type EntityWithNameIdSelectProps, EntityWithNameSelect, type EntityWithNameSelectProps, EnumSelect, type EnumSelectProps, FormRow, FormRowControl, type FormRowControlProps, type FormRowProps, type GenericSelectOption, type GenericSelectProps, type HeaderCol, IconButton, type IconButtonProps, IconSwitch, type IconSwitchProps, JavaHeapControl, LoadingButton, LocalizationContext, Localize, type LocalizeProps, LookupSelect, type LookupSelectProps, NumberSelect, type NumberSelectProps, QueueStateControl, type QueueStateControlProps, QueueStatsControl, type QueueStatsControlProps, type RenderFunc, type RenderResult, SaveButton, type SaveButtonProps, type SelectableHeaderCol, type SelectableItem, type SelectableTableHeader, Spread, type SpreadProps, StringSelect, type StringSelectProps, Switch, type SwitchProps, type TableHeader, TablePagination, type TablePaginationProps, TablePlaceholder, type TablePlaceholderProps, TableWithSelect, type TableWithSelectProps, TextInputWithReset, type TextInputWithResetProps, UserAlertTypeIcon, type UserAlertTypeIconProps, UserAlertWidget, type UserAlertWidgetProps, UserAlertsWidget, type UserAlertsWidgetProps, type WorkerJavaHeapControlProps };
|
|
364
|
+
export { type ActiveButtonProps, AdvancedTable, type AdvancedTableProps, AutocompleteEntityIdSelect, AutocompleteEntitySelect, type AutocompleteEntitySelectProps, type AutocompleteIdSelectProps, AutocompleteLookupIdSelect, type AutocompleteLookupIdSelectProps, AutocompleteLookupSelect, type AutocompleteLookupSelectProps, AutocompleteSelect, type AutocompleteSelectProps, type BasicDialogProps, CacheStatsControl, type CacheStatsControlProps, ConfirmDialog, ConfirmDialogContext, ConfirmDialogContextData, type ConfirmDialogProps, DateInput, type DateInputProps, DateTime, DateTimeInput, type DateTimeInputProps, type DateTimeProps, DeleteButton, type DeleteButtonProps, Duration, type DurationProps, Elapsed, type ElapsedProps, EntityIdSelect, type EntityIdSelectProps, EntitySelect, type EntitySelectProps, EntityWithNameIdSelect, type EntityWithNameIdSelectProps, EntityWithNameSelect, type EntityWithNameSelectProps, EnumSelect, type EnumSelectProps, FormRow, FormRowControl, type FormRowControlProps, type FormRowProps, type GenericSelectOption, type GenericSelectProps, type HeaderCol, IconButton, type IconButtonProps, IconSwitch, type IconSwitchProps, JavaHeapControl, LoadingButton, LocalizationContext, Localize, type LocalizeProps, LookupSelect, type LookupSelectProps, NumberSelect, type NumberSelectProps, QueueStateControl, type QueueStateControlProps, QueueStatsControl, type QueueStatsControlProps, type RenderFunc, type RenderResult, SaveButton, type SaveButtonProps, type SelectableHeaderCol, type SelectableItem, type SelectableTableHeader, Spread, type SpreadProps, StringSelect, type StringSelectProps, Switch, type SwitchProps, type TableHeader, TablePagination, type TablePaginationProps, TablePlaceholder, type TablePlaceholderProps, TableWithSelect, type TableWithSelectProps, TextInputWithReset, type TextInputWithResetProps, type TextToClipboardProps, UserAlertTypeIcon, type UserAlertTypeIconProps, UserAlertWidget, type UserAlertWidgetProps, UserAlertsWidget, type UserAlertsWidgetProps, type WorkerJavaHeapControlProps };
|
package/package.json
CHANGED