@ah-automation.nl/component-lib 0.0.109 → 0.0.112
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/components/app-header.d.ts +1 -1
- package/dist/components/app-shell.d.ts +1 -1
- package/dist/components/bar-chart.d.ts +1 -1
- package/dist/components/generic-bottom-sheet.d.ts +1 -1
- package/dist/components/generic-drawer.d.ts +1 -1
- package/dist/components/image-slider.d.ts +1 -1
- package/dist/components/number-input.d.ts +1 -1
- package/dist/components/phone-number-input.d.ts +1 -1
- package/dist/components/pie-chart.d.ts +1 -1
- package/dist/components/section-card.d.ts +1 -1
- package/dist/components/sidebar-nav.d.ts +1 -1
- package/dist/components/theme-toggle.d.ts +1 -1
- package/dist/components/ui/calendar.d.ts +1 -1
- package/dist/components/ui/carousel.d.ts +2 -2
- package/dist/components/ui/chart.d.ts +1 -1
- package/dist/components/ui/checkbox.d.ts +1 -1
- package/dist/components/ui/command.d.ts +1 -1
- package/dist/components/ui/data-table.d.ts +1 -1
- package/dist/components/ui/dialog.d.ts +1 -1
- package/dist/components/ui/input-group.d.ts +1 -1
- package/dist/components/ui/input.d.ts +1 -1
- package/dist/components/ui/popover.d.ts +1 -1
- package/dist/components/ui/progress.d.ts +1 -1
- package/dist/components/ui/sidebar.d.ts +3 -3
- package/dist/components/ui/sonner.d.ts +1 -1
- package/dist/components/ui/spinner.d.ts +1 -1
- package/dist/components/ui/swipeable-card.d.ts +1 -1
- package/dist/components/ui/switch.d.ts +1 -1
- package/dist/components/ui/table.d.ts +1 -1
- package/dist/components/ui/textarea.d.ts +1 -1
- package/dist/components/ui/toggle.d.ts +1 -1
- package/dist/components/ui/tooltip.d.ts +1 -1
- package/dist/components/user-image.d.ts +1 -1
- package/dist/components/virtual-list-grid.d.ts +1 -1
- package/dist/components/virtual-list.d.ts +1 -1
- package/dist/components/virtual-multi-select.d.ts +1 -1
- package/dist/components/virtual-single-select.d.ts +1 -1
- package/dist/hooks/use-swipe.d.ts +1 -1
- package/dist/hooks/use-theme.d.ts +1 -1
- package/dist/lib/theme.d.ts +1 -1
- package/dist/types/calendar.d.ts +1 -1
- package/dist/types/dtos/shared/Administration/administration.d.ts +150 -150
- package/dist/types/dtos/shared/Administration/administration.d.ts.map +1 -1
- package/dist/types/dtos/shared/addressing/address.d.ts +12 -12
- package/dist/types/dtos/shared/addressing/address.d.ts.map +1 -1
- package/dist/types/dtos/shared/addressing/country.d.ts +6 -6
- package/dist/types/dtos/shared/addressing/country.d.ts.map +1 -1
- package/dist/types/dtos/shared/common/cosmos-document.d.ts +1 -1
- package/dist/types/dtos/shared/common/cosmos-document.d.ts.map +1 -1
- package/dist/types/dtos/shared/common/data-set.d.ts +3 -3
- package/dist/types/dtos/shared/common/data-set.d.ts.map +1 -1
- package/dist/types/dtos/shared/common/dispatcher-requests.d.ts +14 -14
- package/dist/types/dtos/shared/common/dispatcher-requests.d.ts.map +1 -1
- package/dist/types/dtos/shared/common/entity-type.d.ts +6 -6
- package/dist/types/dtos/shared/common/entity-type.d.ts.map +1 -1
- package/dist/types/dtos/shared/common/info.d.ts +3 -3
- package/dist/types/dtos/shared/common/info.d.ts.map +1 -1
- package/dist/types/dtos/shared/common/paged-response.d.ts +1 -1
- package/dist/types/dtos/shared/common/paged-response.d.ts.map +1 -1
- package/dist/types/field-label.d.ts +1 -1
- package/dist/types/multi-select.d.ts +1 -1
- package/dist/types/number-input.d.ts +1 -1
- package/dist/types/single-select.d.ts +1 -1
- package/package.json +3 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReactElement } from "react";
|
|
2
|
-
import type { AppHeaderProps } from "
|
|
2
|
+
import type { AppHeaderProps } from "../types/app-header";
|
|
3
3
|
declare function AppHeader({ environmentLabel, currentPath, session, apps, showNewTab, profileActions, languages, activeLanguageCode, onLanguageChange, logo, openInNewTabHref, openInNewTabAriaLabel, className, }: AppHeaderProps): ReactElement;
|
|
4
4
|
export { AppHeader };
|
|
5
5
|
//# sourceMappingURL=app-header.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReactElement } from "react";
|
|
2
|
-
import type { AppShellProps } from "
|
|
2
|
+
import type { AppShellProps } from "../types/app-shell";
|
|
3
3
|
declare function AppShell({ header, sidebar, className, children, }: AppShellProps): ReactElement;
|
|
4
4
|
export { AppShell };
|
|
5
5
|
//# sourceMappingURL=app-shell.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { BarChartProps } from "
|
|
2
|
+
import type { BarChartProps } from "../types";
|
|
3
3
|
declare function BarChart({ className, color, data, initialDimension, isAnimationActive, radius, seriesLabel, showTooltip, showValueLabels, useDeviceAnimationGuard, valueFormatter, ...props }: BarChartProps): React.ReactElement;
|
|
4
4
|
export { BarChart };
|
|
5
5
|
//# sourceMappingURL=bar-chart.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReactElement } from "react";
|
|
2
|
-
import type { GenericBottomSheetProps } from "
|
|
2
|
+
import type { GenericBottomSheetProps } from "../types/generic-bottom-sheet";
|
|
3
3
|
declare function GenericBottomSheet({ isOpen, onClose, title, description, children, footer, headerActions, className, contentClassName, }: GenericBottomSheetProps): ReactElement;
|
|
4
4
|
export { GenericBottomSheet };
|
|
5
5
|
//# sourceMappingURL=generic-bottom-sheet.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReactElement } from "react";
|
|
2
|
-
import type { GenericDrawerProps } from "
|
|
2
|
+
import type { GenericDrawerProps } from "../types/generic-drawer";
|
|
3
3
|
declare function GenericDrawer({ isOpen, onClose, title, children, footer, headerActions, className, contentClassName, }: GenericDrawerProps): ReactElement;
|
|
4
4
|
export { GenericDrawer };
|
|
5
5
|
//# sourceMappingURL=generic-drawer.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { type ReactElement } from "react";
|
|
2
|
-
import type { ImageSliderProps } from "
|
|
2
|
+
import type { ImageSliderProps } from "../types";
|
|
3
3
|
export declare function ImageSlider({ images, className, imageClassName, variant, showMeta, isLoading, fallbackSrc, emptyTitle, emptyDescription, previousLabel, nextLabel, loadingLabel, imageUnavailableLabel, }: ImageSliderProps): ReactElement;
|
|
4
4
|
//# sourceMappingURL=image-slider.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { NumberInputProps } from "
|
|
2
|
+
import type { NumberInputProps } from "../types";
|
|
3
3
|
declare function NumberInput({ allowDecimal, className, defaultValue, decrementButtonProps, disabled, incrementButtonProps, inputClassName, max, min, onBlur, onChange, onKeyDown, onValueChange, readOnly, showDecrementButton, showIncrementButton, step, value, ...props }: NumberInputProps): React.ReactElement;
|
|
4
4
|
export { NumberInput };
|
|
5
5
|
//# sourceMappingURL=number-input.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { PhoneNumberInputProps } from "
|
|
2
|
+
import type { PhoneNumberInputProps } from "../types/phone-number-input";
|
|
3
3
|
declare function PhoneNumberInput({ className, countries, country, defaultCountry, defaultValue, disabled, inputClassName, onCountryChange, onValueChange, prefixClassName, readOnly, value, ...props }: PhoneNumberInputProps): React.ReactElement;
|
|
4
4
|
export { PhoneNumberInput };
|
|
5
5
|
//# sourceMappingURL=phone-number-input.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { PieChartProps } from "
|
|
2
|
+
import type { PieChartProps } from "../types";
|
|
3
3
|
declare function PieChart({ centerLabel, centerValue, className, data, initialDimension, innerRadius, isAnimationActive, showTooltip, strokeWidth, total, useDeviceAnimationGuard, ...props }: PieChartProps): React.ReactElement;
|
|
4
4
|
export { PieChart };
|
|
5
5
|
//# sourceMappingURL=pie-chart.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { SectionCardProps } from "
|
|
2
|
+
import type { SectionCardProps } from "../types/section-card";
|
|
3
3
|
export declare function SectionCard({ title, description, action, children, footer, size, className, headerClassName, titleClassName, descriptionClassName, contentClassName, footerClassName, ...props }: SectionCardProps): React.ReactElement;
|
|
4
4
|
//# sourceMappingURL=section-card.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { SidebarNavProps } from "
|
|
2
|
+
import type { SidebarNavProps } from "../types/sidebar-nav";
|
|
3
3
|
declare function SidebarNav({ items, groups, activeRoute, defaultCollapsed, onItemClick, logo, footer, className, headerClassName, contentClassName, menuClassName, itemClassName, footerClassName, embedded, collapsible, collapsed, }: SidebarNavProps): React.ReactElement;
|
|
4
4
|
export { SidebarNav };
|
|
5
5
|
//# sourceMappingURL=sidebar-nav.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReactElement } from "react";
|
|
2
|
-
import type { ThemeToggleProps } from "
|
|
2
|
+
import type { ThemeToggleProps } from "../types/theme";
|
|
3
3
|
declare function ThemeToggle({ className, optionClassName, }: ThemeToggleProps): ReactElement;
|
|
4
4
|
export { ThemeToggle };
|
|
5
5
|
//# sourceMappingURL=theme-toggle.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { CalendarProps } from "
|
|
2
|
+
import type { CalendarProps } from "../../types/calendar";
|
|
3
3
|
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, locale, formatters, components, ...props }: CalendarProps): React.ReactElement;
|
|
4
4
|
export { Calendar };
|
|
5
5
|
//# sourceMappingURL=calendar.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { Button } from "
|
|
3
|
-
import type { CarouselApi, CarouselOptions, CarouselPlugin } from "
|
|
2
|
+
import { Button } from "../../components/ui/button";
|
|
3
|
+
import type { CarouselApi, CarouselOptions, CarouselPlugin } from "../../types";
|
|
4
4
|
type CarouselProps = React.ComponentProps<"div"> & {
|
|
5
5
|
opts?: CarouselOptions;
|
|
6
6
|
plugins?: CarouselPlugin[];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import type { TooltipValueType } from "recharts";
|
|
3
3
|
import * as RechartsPrimitive from "recharts";
|
|
4
|
-
import type { ChartConfig, TooltipNameType } from "
|
|
4
|
+
import type { ChartConfig, TooltipNameType } from "../../types";
|
|
5
5
|
declare function ChartContainer({ id, className, children, config, initialDimension, ...props }: React.ComponentProps<"div"> & {
|
|
6
6
|
config: ChartConfig;
|
|
7
7
|
children: React.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { CheckboxProps } from "
|
|
2
|
+
import type { CheckboxProps } from "../../types";
|
|
3
3
|
declare function Checkbox({ className, ...props }: CheckboxProps): React.ReactElement;
|
|
4
4
|
export { Checkbox };
|
|
5
5
|
//# sourceMappingURL=checkbox.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as CommandPrimitive } from "cmdk";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import { Dialog } from "
|
|
3
|
+
import { Dialog } from "../../components/ui/dialog";
|
|
4
4
|
declare function Command({ className, ...props }: React.ComponentProps<typeof CommandPrimitive>): React.ReactElement;
|
|
5
5
|
declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: React.ComponentProps<typeof Dialog> & {
|
|
6
6
|
title?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type RowData, type Table as TanStackTable } from "@tanstack/react-table";
|
|
2
2
|
import type { ReactElement } from "react";
|
|
3
|
-
import type { DataTableProps } from "
|
|
3
|
+
import type { DataTableProps } from "../../types";
|
|
4
4
|
declare module "@tanstack/react-table" {
|
|
5
5
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
6
6
|
label?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { DialogCloseProps, DialogContentProps, DialogDescriptionProps, DialogFooterProps, DialogHeaderProps, DialogOverlayProps, DialogPortalProps, DialogProps, DialogTitleProps, DialogTriggerProps } from "
|
|
2
|
+
import type { DialogCloseProps, DialogContentProps, DialogDescriptionProps, DialogFooterProps, DialogHeaderProps, DialogOverlayProps, DialogPortalProps, DialogProps, DialogTitleProps, DialogTriggerProps } from "../../types/dialog";
|
|
3
3
|
declare function Dialog(props: DialogProps): React.ReactElement;
|
|
4
4
|
declare function DialogTrigger(props: DialogTriggerProps): React.ReactElement;
|
|
5
5
|
declare function DialogPortal(props: DialogPortalProps): React.ReactElement;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type VariantProps } from "class-variance-authority";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import { Button } from "
|
|
3
|
+
import { Button } from "../../components/ui/button";
|
|
4
4
|
declare function InputGroup({ className, ...props }: React.ComponentProps<"div">): React.ReactElement;
|
|
5
5
|
declare const inputGroupAddonVariants: (props?: ({
|
|
6
6
|
align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { InputProps } from "
|
|
2
|
+
import type { InputProps } from "../../types";
|
|
3
3
|
declare function Input({ className, type, ...props }: InputProps): React.ReactElement;
|
|
4
4
|
export { Input };
|
|
5
5
|
//# sourceMappingURL=input.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { PopoverAnchorProps, PopoverContentProps, PopoverProps, PopoverTriggerProps } from "
|
|
2
|
+
import type { PopoverAnchorProps, PopoverContentProps, PopoverProps, PopoverTriggerProps } from "../../types/popover";
|
|
3
3
|
declare function Popover(props: PopoverProps): React.ReactElement;
|
|
4
4
|
declare function PopoverTrigger(props: PopoverTriggerProps): React.ReactElement;
|
|
5
5
|
declare function PopoverAnchor(props: PopoverAnchorProps): React.ReactElement;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { ProgressProps } from "
|
|
2
|
+
import type { ProgressProps } from "../../types";
|
|
3
3
|
declare function Progress({ className, value, max, ...props }: ProgressProps): React.ReactElement;
|
|
4
4
|
export { Progress };
|
|
5
5
|
//# sourceMappingURL=progress.d.ts.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type VariantProps } from "class-variance-authority";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import { Button } from "
|
|
4
|
-
import { Input } from "
|
|
5
|
-
import { Separator } from "
|
|
3
|
+
import { Button } from "../../components/ui/button";
|
|
4
|
+
import { Input } from "../../components/ui/input";
|
|
5
|
+
import { Separator } from "../../components/ui/separator";
|
|
6
6
|
type SidebarContextProps = {
|
|
7
7
|
state: "expanded" | "collapsed";
|
|
8
8
|
open: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReactElement } from "react";
|
|
2
|
-
import type { ToasterProps } from "
|
|
2
|
+
import type { ToasterProps } from "../../types";
|
|
3
3
|
declare function Toaster({ className, ...props }: ToasterProps): ReactElement;
|
|
4
4
|
export { Toaster };
|
|
5
5
|
//# sourceMappingURL=sonner.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { SpinnerProps } from "
|
|
2
|
+
import type { SpinnerProps } from "../../types";
|
|
3
3
|
declare function Spinner({ className, ...props }: SpinnerProps): React.ReactElement;
|
|
4
4
|
export { Spinner };
|
|
5
5
|
//# sourceMappingURL=spinner.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReactElement } from "react";
|
|
2
|
-
import type { SwipeableCardProps } from "
|
|
2
|
+
import type { SwipeableCardProps } from "../../types";
|
|
3
3
|
declare function SwipeableCard({ children, onSwipe, background, axis, direction, threshold, maxOffset, size, className, containerClassName, backgroundClassName, ...props }: SwipeableCardProps): ReactElement;
|
|
4
4
|
export { SwipeableCard };
|
|
5
5
|
//# sourceMappingURL=swipeable-card.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { SwitchProps } from "
|
|
2
|
+
import type { SwitchProps } from "../../types";
|
|
3
3
|
declare function Switch({ className, size, ...props }: SwitchProps): React.ReactElement;
|
|
4
4
|
export { Switch };
|
|
5
5
|
//# sourceMappingURL=switch.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { TableBodyProps, TableCaptionProps, TableCellProps, TableFooterProps, TableHeaderProps, TableHeadProps, TableProps, TableRowProps } from "
|
|
2
|
+
import type { TableBodyProps, TableCaptionProps, TableCellProps, TableFooterProps, TableHeaderProps, TableHeadProps, TableProps, TableRowProps } from "../../types/table";
|
|
3
3
|
declare function Table({ className, containerClassName, ...props }: TableProps): React.ReactElement;
|
|
4
4
|
declare function TableHeader({ className, ...props }: TableHeaderProps): React.ReactElement;
|
|
5
5
|
declare function TableBody({ className, ...props }: TableBodyProps): React.ReactElement;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { TextareaProps } from "
|
|
2
|
+
import type { TextareaProps } from "../../types";
|
|
3
3
|
declare function Textarea({ className, ...props }: TextareaProps): React.ReactElement;
|
|
4
4
|
export { Textarea };
|
|
5
5
|
//# sourceMappingURL=textarea.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { ToggleProps } from "
|
|
2
|
+
import type { ToggleProps } from "../../types";
|
|
3
3
|
declare const toggleVariants: (props?: ({
|
|
4
4
|
variant?: "default" | "outline" | null | undefined;
|
|
5
5
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { TooltipContentProps, TooltipProps, TooltipProviderProps, TooltipTriggerProps } from "
|
|
2
|
+
import type { TooltipContentProps, TooltipProps, TooltipProviderProps, TooltipTriggerProps } from "../../types";
|
|
3
3
|
declare function TooltipProvider({ delayDuration, ...props }: TooltipProviderProps): React.ReactElement;
|
|
4
4
|
declare function Tooltip({ ...props }: TooltipProps): React.ReactElement;
|
|
5
5
|
declare function TooltipTrigger({ ...props }: TooltipTriggerProps): React.ReactElement;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ReactElement } from "react";
|
|
2
|
-
import type { UserImageProps } from "
|
|
2
|
+
import type { UserImageProps } from "../types/user-image";
|
|
3
3
|
declare function UserImage({ src, alt, name, email, className, fallbackClassName, }: UserImageProps): ReactElement;
|
|
4
4
|
export { UserImage };
|
|
5
5
|
//# sourceMappingURL=user-image.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { ReactElement } from "react";
|
|
2
|
-
import type { VirtualListProps } from "
|
|
2
|
+
import type { VirtualListProps } from "../types/virtual-list";
|
|
3
3
|
export declare function VirtualList<TItem>({ items, renderItem, getItemKey, estimateSize, overscan, className, scrollAreaClassName, listClassName, itemClassName, emptyContent, hasMore, isFetchingMore, onEndReached, endReachedOffset, loadingMoreContent, endReachedContent, }: VirtualListProps<TItem>): ReactElement;
|
|
4
4
|
//# sourceMappingURL=virtual-list.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { MultiSelectProps } from "
|
|
2
|
+
import type { MultiSelectProps } from "../types/multi-select";
|
|
3
3
|
declare function VirtualMultiSelect({ options, value, onValueChange, placeholder, disabled, name, className, triggerClassName, contentClassName, portalContainer, showChevrons, popoverTriggerProps, popoverContentProps, showSelectAll, selectAllLabel, allValue, selectedCountLabel, virtualizationOverscan, virtualizationItemHeight, showSearch, modal, }: MultiSelectProps): React.ReactElement;
|
|
4
4
|
export { VirtualMultiSelect };
|
|
5
5
|
//# sourceMappingURL=virtual-multi-select.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { SingleSelectProps } from "
|
|
2
|
+
import type { SingleSelectProps } from "../types/single-select";
|
|
3
3
|
export declare function VirtualSingleSelect(props: SingleSelectProps): React.ReactElement;
|
|
4
4
|
//# sourceMappingURL=virtual-single-select.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { UseSwipeOptions, UseSwipeResult } from "
|
|
1
|
+
import type { UseSwipeOptions, UseSwipeResult } from "../types";
|
|
2
2
|
/**
|
|
3
3
|
* Pointer-driven swipe gesture for list items and cards (works with touch and
|
|
4
4
|
* mouse via pointer events). Supports both the horizontal and vertical axis and
|
package/dist/lib/theme.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ThemePreference, ThemeSnapshot } from "
|
|
1
|
+
import type { ThemePreference, ThemeSnapshot } from "../types";
|
|
2
2
|
export declare function getThemeSnapshot(): ThemeSnapshot;
|
|
3
3
|
export declare function setThemePreference(preference: ThemePreference): void;
|
|
4
4
|
export declare function subscribeTheme(listener: () => void): () => void;
|
package/dist/types/calendar.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type * as React from "react";
|
|
2
2
|
import type { DayPicker } from "react-day-picker";
|
|
3
|
-
import type { Button } from "
|
|
3
|
+
import type { Button } from "../components/ui/button";
|
|
4
4
|
export type CalendarProps = React.ComponentProps<typeof DayPicker> & {
|
|
5
5
|
buttonVariant?: React.ComponentProps<typeof Button>["variant"];
|
|
6
6
|
};
|
|
@@ -1,239 +1,239 @@
|
|
|
1
|
-
import type { AddressDTO, CosmosDocumentDTO, EntityTypeDTO, InfoDTO } from "
|
|
1
|
+
import type { AddressDTO, CosmosDocumentDTO, EntityTypeDTO, InfoDTO } from "../../../../types";
|
|
2
2
|
export type AdministrationReferenceDTO = {
|
|
3
|
-
id
|
|
3
|
+
id: string | null;
|
|
4
4
|
};
|
|
5
5
|
export type AdministrationNumberDTO = {
|
|
6
|
-
Key
|
|
7
|
-
DateStart
|
|
8
|
-
NumberType
|
|
9
|
-
Minimum
|
|
10
|
-
Maximum
|
|
11
|
-
Prefix
|
|
12
|
-
Value
|
|
6
|
+
Key: string | null;
|
|
7
|
+
DateStart: string | null;
|
|
8
|
+
NumberType: number | null;
|
|
9
|
+
Minimum: number | null;
|
|
10
|
+
Maximum: number | null;
|
|
11
|
+
Prefix: string | null;
|
|
12
|
+
Value: number | null;
|
|
13
13
|
};
|
|
14
14
|
export type AdministrationSettingDTO = {
|
|
15
|
-
Key
|
|
16
|
-
Value
|
|
17
|
-
Notes
|
|
15
|
+
Key: string | null;
|
|
16
|
+
Value: string | null;
|
|
17
|
+
Notes: string | null;
|
|
18
18
|
ShowStatus: number;
|
|
19
|
-
Description
|
|
19
|
+
Description: string | null;
|
|
20
20
|
IsBool: boolean;
|
|
21
|
-
Modified
|
|
21
|
+
Modified: string | null;
|
|
22
22
|
SequenceNumber: number;
|
|
23
23
|
};
|
|
24
24
|
export type AdministrationApiKeyItemDTO = {
|
|
25
|
-
Code
|
|
26
|
-
ApiKeyId
|
|
27
|
-
KeyName
|
|
25
|
+
Code: string | null;
|
|
26
|
+
ApiKeyId: string | null;
|
|
27
|
+
KeyName: string | null;
|
|
28
28
|
IsActive: boolean;
|
|
29
|
-
CreatedUtc
|
|
30
|
-
ExpiresUtc
|
|
31
|
-
RevokedUtc
|
|
29
|
+
CreatedUtc: string | null;
|
|
30
|
+
ExpiresUtc: string | null;
|
|
31
|
+
RevokedUtc: string | null;
|
|
32
32
|
};
|
|
33
33
|
export type AdministrationExactConnectionDTO = {
|
|
34
|
-
BaseUrl
|
|
35
|
-
ClientId
|
|
36
|
-
ClientSecret
|
|
37
|
-
RedirectUri
|
|
38
|
-
Division
|
|
34
|
+
BaseUrl: string | null;
|
|
35
|
+
ClientId: string | null;
|
|
36
|
+
ClientSecret: string | null;
|
|
37
|
+
RedirectUri: string | null;
|
|
38
|
+
Division: string | null;
|
|
39
39
|
};
|
|
40
40
|
export type AdministrationUnifiConnectionDTO = {
|
|
41
|
-
BaseUrl
|
|
42
|
-
ApiKey
|
|
43
|
-
Port
|
|
44
|
-
PathPrefix
|
|
45
|
-
ConsoleName
|
|
46
|
-
CompanyId
|
|
47
|
-
WebhookEndpointPath
|
|
48
|
-
WebhookEndpointUrl
|
|
41
|
+
BaseUrl: string | null;
|
|
42
|
+
ApiKey: string | null;
|
|
43
|
+
Port: string | null;
|
|
44
|
+
PathPrefix: string | null;
|
|
45
|
+
ConsoleName: string | null;
|
|
46
|
+
CompanyId: string | null;
|
|
47
|
+
WebhookEndpointPath: string | null;
|
|
48
|
+
WebhookEndpointUrl: string | null;
|
|
49
49
|
};
|
|
50
50
|
export type AdministrationCyclusDTO = {
|
|
51
|
-
IntervalDays
|
|
52
|
-
StartCyclusDayOfWeek
|
|
51
|
+
IntervalDays: number | null;
|
|
52
|
+
StartCyclusDayOfWeek: AdministrationSettingDTO | null;
|
|
53
53
|
};
|
|
54
54
|
export type AdministrationDisplayDTO = {
|
|
55
|
-
FirstDayOfWeek
|
|
56
|
-
ClosingDaysCount
|
|
57
|
-
MultiMenuGroups
|
|
55
|
+
FirstDayOfWeek: number | null;
|
|
56
|
+
ClosingDaysCount: number | null;
|
|
57
|
+
MultiMenuGroups: boolean | null;
|
|
58
58
|
};
|
|
59
59
|
export type AdministrationVatCodeDTO = {
|
|
60
|
-
Code
|
|
61
|
-
Percentage
|
|
62
|
-
Description
|
|
63
|
-
Shifted
|
|
64
|
-
Icp
|
|
60
|
+
Code: string | null;
|
|
61
|
+
Percentage: number | null;
|
|
62
|
+
Description: string | null;
|
|
63
|
+
Shifted: boolean | null;
|
|
64
|
+
Icp: EntityTypeDTO | null;
|
|
65
65
|
};
|
|
66
66
|
export type AdministrationPaymentDTO = {
|
|
67
|
-
Key
|
|
68
|
-
Module
|
|
69
|
-
Description
|
|
70
|
-
PaymentPercCreditLimitation
|
|
71
|
-
PaymentDaysCreditLimitation
|
|
72
|
-
PaymentDays
|
|
73
|
-
PaymentDaysCode
|
|
74
|
-
Notes
|
|
67
|
+
Key: string | null;
|
|
68
|
+
Module: EntityTypeDTO | null;
|
|
69
|
+
Description: string | null;
|
|
70
|
+
PaymentPercCreditLimitation: number | null;
|
|
71
|
+
PaymentDaysCreditLimitation: number | null;
|
|
72
|
+
PaymentDays: number | null;
|
|
73
|
+
PaymentDaysCode: number | null;
|
|
74
|
+
Notes: string | null;
|
|
75
75
|
ShowStatus: number;
|
|
76
76
|
};
|
|
77
77
|
export type AdministrationJournalEntryDTO = {
|
|
78
|
-
Number
|
|
79
|
-
Description
|
|
80
|
-
Type
|
|
78
|
+
Number: string | null;
|
|
79
|
+
Description: string | null;
|
|
80
|
+
Type: EntityTypeDTO | null;
|
|
81
81
|
};
|
|
82
82
|
export type AdministrationJournalDTO = {
|
|
83
|
-
Standard
|
|
84
|
-
Stock
|
|
85
|
-
StandardSeparatedVatJournalLines
|
|
86
|
-
UsePeriodeSettingForJournals
|
|
83
|
+
Standard: AdministrationJournalEntryDTO | null;
|
|
84
|
+
Stock: AdministrationJournalEntryDTO | null;
|
|
85
|
+
StandardSeparatedVatJournalLines: boolean | null;
|
|
86
|
+
UsePeriodeSettingForJournals: boolean | null;
|
|
87
87
|
};
|
|
88
88
|
export type AdministrationFinancialJournalDTO = {
|
|
89
|
-
VatCode
|
|
90
|
-
ToPayTheBill
|
|
91
|
-
ClaimInvoice
|
|
92
|
-
PayableVat
|
|
93
|
-
Payment
|
|
94
|
-
FinancialJournal
|
|
95
|
-
Journal
|
|
89
|
+
VatCode: AdministrationVatCodeDTO | null;
|
|
90
|
+
ToPayTheBill: EntityTypeDTO | null;
|
|
91
|
+
ClaimInvoice: EntityTypeDTO | null;
|
|
92
|
+
PayableVat: EntityTypeDTO | null;
|
|
93
|
+
Payment: AdministrationPaymentDTO | null;
|
|
94
|
+
FinancialJournal: AdministrationPaymentDTO | null;
|
|
95
|
+
Journal: AdministrationJournalDTO | null;
|
|
96
96
|
};
|
|
97
97
|
export type AdministrationDropOffCostingDTO = {
|
|
98
|
-
AddCostingToOrder
|
|
99
|
-
MinimumOrderAmount
|
|
100
|
-
DropOffProductId
|
|
98
|
+
AddCostingToOrder: boolean | null;
|
|
99
|
+
MinimumOrderAmount: number | null;
|
|
100
|
+
DropOffProductId: string | null;
|
|
101
101
|
};
|
|
102
102
|
export type AdministrationOrderCostingDTO = {
|
|
103
|
-
InternalOrderCosting
|
|
104
|
-
DropOffProductId
|
|
103
|
+
InternalOrderCosting: boolean | null;
|
|
104
|
+
DropOffProductId: string | null;
|
|
105
105
|
};
|
|
106
106
|
export type AdministrationThirdPartyOrderDTO = {
|
|
107
|
-
PartyKey
|
|
108
|
-
Party
|
|
109
|
-
OrderStatus
|
|
110
|
-
OrderIndicator
|
|
107
|
+
PartyKey: string | null;
|
|
108
|
+
Party: EntityTypeDTO | null;
|
|
109
|
+
OrderStatus: EntityTypeDTO | null;
|
|
110
|
+
OrderIndicator: EntityTypeDTO | null;
|
|
111
111
|
};
|
|
112
112
|
export type AdministrationOrderManagementDTO = {
|
|
113
|
-
OrderIndicator
|
|
114
|
-
InvoiceCode
|
|
115
|
-
InvoiceGraiCode
|
|
116
|
-
CreateFixOrders
|
|
117
|
-
ShowOutstandingOrders
|
|
118
|
-
AskRemarkOnDeleteOrder
|
|
119
|
-
DeleteOrderByOwner
|
|
120
|
-
DeleteOrderWithPassword
|
|
121
|
-
DeletePassword
|
|
122
|
-
LoadDeliveryDateSync
|
|
123
|
-
DropOffCosting
|
|
124
|
-
OrderCosting
|
|
113
|
+
OrderIndicator: EntityTypeDTO | null;
|
|
114
|
+
InvoiceCode: EntityTypeDTO | null;
|
|
115
|
+
InvoiceGraiCode: EntityTypeDTO | null;
|
|
116
|
+
CreateFixOrders: boolean | null;
|
|
117
|
+
ShowOutstandingOrders: boolean | null;
|
|
118
|
+
AskRemarkOnDeleteOrder: boolean | null;
|
|
119
|
+
DeleteOrderByOwner: boolean | null;
|
|
120
|
+
DeleteOrderWithPassword: boolean | null;
|
|
121
|
+
DeletePassword: string | null;
|
|
122
|
+
LoadDeliveryDateSync: boolean | null;
|
|
123
|
+
DropOffCosting: AdministrationDropOffCostingDTO | null;
|
|
124
|
+
OrderCosting: AdministrationOrderCostingDTO | null;
|
|
125
125
|
ThirdPartyOrders: AdministrationThirdPartyOrderDTO[];
|
|
126
126
|
};
|
|
127
127
|
export type AdministrationQuotationOrderManagementDTO = {
|
|
128
|
-
CreateFixQuotations
|
|
129
|
-
ShowOutstandingQuotations
|
|
130
|
-
AskRemarkOnDeleteQuotation
|
|
131
|
-
DeleteQuotationByOwner
|
|
132
|
-
DeleteQuotationWithPassword
|
|
133
|
-
DeleteQuotationPassword
|
|
134
|
-
LoadValidDateSync
|
|
135
|
-
DayValid
|
|
136
|
-
OrderGenerator
|
|
128
|
+
CreateFixQuotations: boolean | null;
|
|
129
|
+
ShowOutstandingQuotations: boolean | null;
|
|
130
|
+
AskRemarkOnDeleteQuotation: boolean | null;
|
|
131
|
+
DeleteQuotationByOwner: boolean | null;
|
|
132
|
+
DeleteQuotationWithPassword: boolean | null;
|
|
133
|
+
DeleteQuotationPassword: string | null;
|
|
134
|
+
LoadValidDateSync: boolean | null;
|
|
135
|
+
DayValid: number | null;
|
|
136
|
+
OrderGenerator: boolean | null;
|
|
137
137
|
};
|
|
138
138
|
export type AdministrationToJournalDTO = {
|
|
139
|
-
StockIn
|
|
140
|
-
CreateFixOrders
|
|
141
|
-
ShowOutstandingOrders
|
|
142
|
-
AskRemarkOnDeleteOrder
|
|
143
|
-
DeleteOrderByOwner
|
|
144
|
-
DeleteOrderWithPassword
|
|
145
|
-
DeletePassword
|
|
146
|
-
LoadDeliveryDateSync
|
|
139
|
+
StockIn: AdministrationJournalEntryDTO | null;
|
|
140
|
+
CreateFixOrders: boolean | null;
|
|
141
|
+
ShowOutstandingOrders: boolean | null;
|
|
142
|
+
AskRemarkOnDeleteOrder: boolean | null;
|
|
143
|
+
DeleteOrderByOwner: boolean | null;
|
|
144
|
+
DeleteOrderWithPassword: boolean | null;
|
|
145
|
+
DeletePassword: string | null;
|
|
146
|
+
LoadDeliveryDateSync: boolean | null;
|
|
147
147
|
};
|
|
148
148
|
export type AdministrationToFinancialJournalDTO = {
|
|
149
|
-
Journal
|
|
149
|
+
Journal: AdministrationToJournalDTO | null;
|
|
150
150
|
};
|
|
151
151
|
export type AdministrationBankAccountDTO = {
|
|
152
|
-
Iban
|
|
153
|
-
Bic
|
|
154
|
-
BankName
|
|
155
|
-
AccountHolder
|
|
156
|
-
Notes
|
|
157
|
-
Status
|
|
158
|
-
Currency
|
|
152
|
+
Iban: string | null;
|
|
153
|
+
Bic: string | null;
|
|
154
|
+
BankName: string | null;
|
|
155
|
+
AccountHolder: string | null;
|
|
156
|
+
Notes: string | null;
|
|
157
|
+
Status: string | null;
|
|
158
|
+
Currency: EntityTypeDTO | null;
|
|
159
159
|
};
|
|
160
160
|
export type AdministrationBaseCosmosDTO = CosmosDocumentDTO & {
|
|
161
|
-
AdministrationIdMS
|
|
162
|
-
AdminNumber
|
|
163
|
-
AdminNumberParent
|
|
164
|
-
StartDate
|
|
165
|
-
EndDate
|
|
166
|
-
Address
|
|
167
|
-
Website
|
|
168
|
-
DunsNumber
|
|
169
|
-
Gln
|
|
170
|
-
Coc
|
|
171
|
-
Oin
|
|
172
|
-
FinancialPrecision
|
|
173
|
-
VatNumber
|
|
174
|
-
Notes
|
|
175
|
-
Language
|
|
176
|
-
Currency
|
|
177
|
-
ParentCompany
|
|
178
|
-
BankAccount
|
|
161
|
+
AdministrationIdMS: string | null;
|
|
162
|
+
AdminNumber: string | null;
|
|
163
|
+
AdminNumberParent: string | null;
|
|
164
|
+
StartDate: string | null;
|
|
165
|
+
EndDate: string | null;
|
|
166
|
+
Address: AddressDTO | null;
|
|
167
|
+
Website: string | null;
|
|
168
|
+
DunsNumber: string | null;
|
|
169
|
+
Gln: string | null;
|
|
170
|
+
Coc: string | null;
|
|
171
|
+
Oin: string | null;
|
|
172
|
+
FinancialPrecision: number | null;
|
|
173
|
+
VatNumber: string | null;
|
|
174
|
+
Notes: string | null;
|
|
175
|
+
Language: EntityTypeDTO | null;
|
|
176
|
+
Currency: EntityTypeDTO | null;
|
|
177
|
+
ParentCompany: InfoDTO | null;
|
|
178
|
+
BankAccount: AdministrationBankAccountDTO | null;
|
|
179
179
|
};
|
|
180
180
|
export type AdministrationApiKeyCosmosDTO = CosmosDocumentDTO & {
|
|
181
|
-
Administration
|
|
181
|
+
Administration: AdministrationReferenceDTO | null;
|
|
182
182
|
Numbers: AdministrationNumberDTO[];
|
|
183
183
|
ApiKey: AdministrationApiKeyItemDTO[];
|
|
184
184
|
Settings: AdministrationSettingDTO[];
|
|
185
185
|
};
|
|
186
186
|
export type AdministrationExactCosmosDTO = CosmosDocumentDTO & {
|
|
187
|
-
Administration
|
|
187
|
+
Administration: AdministrationReferenceDTO | null;
|
|
188
188
|
Numbers: AdministrationNumberDTO[];
|
|
189
|
-
Connection
|
|
189
|
+
Connection: AdministrationExactConnectionDTO | null;
|
|
190
190
|
Settings: AdministrationSettingDTO[];
|
|
191
191
|
};
|
|
192
192
|
export type AdministrationMenuCyclusCosmosDTO = CosmosDocumentDTO & {
|
|
193
|
-
Administration
|
|
193
|
+
Administration: AdministrationReferenceDTO | null;
|
|
194
194
|
Numbers: AdministrationNumberDTO[];
|
|
195
|
-
Cyclus
|
|
196
|
-
Display
|
|
195
|
+
Cyclus: AdministrationCyclusDTO | null;
|
|
196
|
+
Display: AdministrationDisplayDTO | null;
|
|
197
197
|
Settings: AdministrationSettingDTO[];
|
|
198
198
|
};
|
|
199
199
|
export type AdministrationPoCosmosDTO = CosmosDocumentDTO & {
|
|
200
|
-
Administration
|
|
200
|
+
Administration: AdministrationReferenceDTO | null;
|
|
201
201
|
Numbers: AdministrationNumberDTO[];
|
|
202
|
-
FinancialJournal
|
|
203
|
-
OrderManagement
|
|
202
|
+
FinancialJournal: AdministrationFinancialJournalDTO | null;
|
|
203
|
+
OrderManagement: AdministrationOrderManagementDTO | null;
|
|
204
204
|
ThirdPartyOrders: AdministrationThirdPartyOrderDTO[];
|
|
205
205
|
Settings: AdministrationSettingDTO[];
|
|
206
206
|
};
|
|
207
207
|
export type AdministrationPosCosmosDTO = CosmosDocumentDTO & {
|
|
208
|
-
Administration
|
|
208
|
+
Administration: AdministrationReferenceDTO | null;
|
|
209
209
|
Numbers: AdministrationNumberDTO[];
|
|
210
|
-
FinancialJournal
|
|
211
|
-
OrderManagement
|
|
210
|
+
FinancialJournal: AdministrationFinancialJournalDTO | null;
|
|
211
|
+
OrderManagement: AdministrationOrderManagementDTO | null;
|
|
212
212
|
Settings: AdministrationSettingDTO[];
|
|
213
213
|
};
|
|
214
214
|
export type AdministrationQuotationCosmosDTO = CosmosDocumentDTO & {
|
|
215
|
-
Administration
|
|
215
|
+
Administration: AdministrationReferenceDTO | null;
|
|
216
216
|
Numbers: AdministrationNumberDTO[];
|
|
217
|
-
OrderManagement
|
|
217
|
+
OrderManagement: AdministrationQuotationOrderManagementDTO | null;
|
|
218
218
|
Settings: AdministrationSettingDTO[];
|
|
219
219
|
};
|
|
220
220
|
export type AdministrationSoCosmosDTO = CosmosDocumentDTO & {
|
|
221
|
-
Administration
|
|
221
|
+
Administration: AdministrationReferenceDTO | null;
|
|
222
222
|
Numbers: AdministrationNumberDTO[];
|
|
223
|
-
FinancialJournal
|
|
224
|
-
OrderManagement
|
|
223
|
+
FinancialJournal: AdministrationFinancialJournalDTO | null;
|
|
224
|
+
OrderManagement: AdministrationOrderManagementDTO | null;
|
|
225
225
|
Settings: AdministrationSettingDTO[];
|
|
226
226
|
};
|
|
227
227
|
export type AdministrationToCosmosDTO = CosmosDocumentDTO & {
|
|
228
|
-
Administration
|
|
228
|
+
Administration: AdministrationReferenceDTO | null;
|
|
229
229
|
Numbers: AdministrationNumberDTO[];
|
|
230
|
-
FinancialJournal
|
|
230
|
+
FinancialJournal: AdministrationToFinancialJournalDTO | null;
|
|
231
231
|
Settings: AdministrationSettingDTO[];
|
|
232
232
|
};
|
|
233
233
|
export type AdministrationUnifiCosmosDTO = CosmosDocumentDTO & {
|
|
234
|
-
Administration
|
|
234
|
+
Administration: AdministrationReferenceDTO | null;
|
|
235
235
|
Numbers: AdministrationNumberDTO[];
|
|
236
|
-
Connection
|
|
236
|
+
Connection: AdministrationUnifiConnectionDTO | null;
|
|
237
237
|
Settings: AdministrationSettingDTO[];
|
|
238
238
|
};
|
|
239
239
|
//# sourceMappingURL=administration.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"administration.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/Administration/administration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,UAAU,EACV,iBAAiB,EACjB,aAAa,EACb,OAAO,EACR,MAAM,SAAS,CAAC;AAEjB,MAAM,MAAM,0BAA0B,GAAG;IACvC,EAAE,
|
|
1
|
+
{"version":3,"file":"administration.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/Administration/administration.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import type { EntityTypeDTO } from "
|
|
1
|
+
import type { EntityTypeDTO } from "../../../../types";
|
|
2
2
|
import type { CountryDTO } from "./country";
|
|
3
3
|
export type AddressDTO = {
|
|
4
4
|
Type: EntityTypeDTO;
|
|
5
5
|
Name: string;
|
|
6
|
-
Name2
|
|
6
|
+
Name2: string | null;
|
|
7
7
|
Address: string;
|
|
8
8
|
AddressNumber: string;
|
|
9
|
-
AddressLetter
|
|
10
|
-
Address2
|
|
9
|
+
AddressLetter: string | null;
|
|
10
|
+
Address2: string | null;
|
|
11
11
|
PostalCode: string;
|
|
12
12
|
City: string;
|
|
13
|
-
State
|
|
14
|
-
Municipality
|
|
13
|
+
State: string | null;
|
|
14
|
+
Municipality: string | null;
|
|
15
15
|
Country: CountryDTO;
|
|
16
|
-
Phone
|
|
17
|
-
Rayon
|
|
18
|
-
Email
|
|
19
|
-
Region
|
|
20
|
-
ContactPerson
|
|
16
|
+
Phone: EntityTypeDTO | null;
|
|
17
|
+
Rayon: EntityTypeDTO | null;
|
|
18
|
+
Email: EntityTypeDTO | null;
|
|
19
|
+
Region: string | null;
|
|
20
|
+
ContactPerson: string | null;
|
|
21
21
|
Latitude: number;
|
|
22
22
|
Longitude: number;
|
|
23
|
-
Notes
|
|
23
|
+
Notes: string | null;
|
|
24
24
|
ShowStatus: number;
|
|
25
25
|
};
|
|
26
26
|
//# sourceMappingURL=address.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"address.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/addressing/address.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAE5C,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,EAAE,aAAa,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,
|
|
1
|
+
{"version":3,"file":"address.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/addressing/address.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAE5C,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,EAAE,aAAa,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,OAAO,EAAE,UAAU,CAAC;IACpB,KAAK,EAAE,aAAa,GAAG,IAAI,CAAC;IAC5B,KAAK,EAAE,aAAa,GAAG,IAAI,CAAC;IAC5B,KAAK,EAAE,aAAa,GAAG,IAAI,CAAC;IAC5B,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import type { EntityTypeDTO } from "
|
|
1
|
+
import type { EntityTypeDTO } from "../../../../types";
|
|
2
2
|
export type CountryDTO = {
|
|
3
3
|
Key: string;
|
|
4
4
|
Description: string;
|
|
5
5
|
Iso: string;
|
|
6
|
-
Iso2
|
|
7
|
-
Iso3
|
|
8
|
-
PhonePrefix
|
|
9
|
-
Currency
|
|
10
|
-
Language
|
|
6
|
+
Iso2: string | null;
|
|
7
|
+
Iso3: string | null;
|
|
8
|
+
PhonePrefix: string | null;
|
|
9
|
+
Currency: EntityTypeDTO | null;
|
|
10
|
+
Language: EntityTypeDTO | null;
|
|
11
11
|
ShowStatus: number;
|
|
12
12
|
};
|
|
13
13
|
//# sourceMappingURL=country.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"country.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/addressing/country.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7C,MAAM,MAAM,UAAU,GAAG;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,
|
|
1
|
+
{"version":3,"file":"country.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/addressing/country.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7C,MAAM,MAAM,UAAU,GAAG;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,QAAQ,EAAE,aAAa,GAAG,IAAI,CAAC;IAC/B,QAAQ,EAAE,aAAa,GAAG,IAAI,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cosmos-document.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/cosmos-document.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,
|
|
1
|
+
{"version":3,"file":"cosmos-document.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/cosmos-document.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,OAAO,EAAE,UAAU,CAAC;CACrB,CAAC"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { InfoDTO } from "./info";
|
|
2
2
|
export type DataSetDTO = {
|
|
3
|
-
CompanyName
|
|
3
|
+
CompanyName: string | null;
|
|
4
4
|
Created: string;
|
|
5
5
|
Modified: string;
|
|
6
6
|
CreatedBy: InfoDTO;
|
|
7
7
|
LastModifiedBy: InfoDTO;
|
|
8
|
-
Version
|
|
9
|
-
Notes
|
|
8
|
+
Version: string | null;
|
|
9
|
+
Notes: string | null;
|
|
10
10
|
ShowStatus: number;
|
|
11
11
|
};
|
|
12
12
|
//# sourceMappingURL=data-set.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-set.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/data-set.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AAEtC,MAAM,MAAM,UAAU,GAAG;IACvB,WAAW,
|
|
1
|
+
{"version":3,"file":"data-set.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/data-set.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AAEtC,MAAM,MAAM,UAAU,GAAG;IACvB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,cAAc,EAAE,OAAO,CAAC;IACxB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export type DeleteDataRequestDTO = {
|
|
2
|
-
Indicator
|
|
3
|
-
DocumentId
|
|
4
|
-
PartitionKey
|
|
5
|
-
EntityType
|
|
6
|
-
MaxItems
|
|
2
|
+
Indicator: string;
|
|
3
|
+
DocumentId: string | null;
|
|
4
|
+
PartitionKey: string | null;
|
|
5
|
+
EntityType: string | null;
|
|
6
|
+
MaxItems: number | null;
|
|
7
7
|
IgnoreTypeAndCompanyFilter: boolean;
|
|
8
8
|
};
|
|
9
9
|
export type UpsertDataRequestDTO = {
|
|
@@ -12,17 +12,17 @@ export type UpsertDataRequestDTO = {
|
|
|
12
12
|
Data: unknown;
|
|
13
13
|
};
|
|
14
14
|
export type ReplaceDataRequestDTO = {
|
|
15
|
-
Indicator
|
|
16
|
-
DocumentId
|
|
17
|
-
PartitionKey
|
|
18
|
-
Data
|
|
15
|
+
Indicator: string | null;
|
|
16
|
+
DocumentId: string | null;
|
|
17
|
+
PartitionKey: string | null;
|
|
18
|
+
Data: unknown;
|
|
19
19
|
};
|
|
20
20
|
export type GetDataRequestDTO = {
|
|
21
|
-
Indicator
|
|
22
|
-
DocumentId
|
|
23
|
-
PartitionKey
|
|
24
|
-
EntityType
|
|
25
|
-
MaxItems
|
|
21
|
+
Indicator: string | null;
|
|
22
|
+
DocumentId: string | null;
|
|
23
|
+
PartitionKey: string | null;
|
|
24
|
+
EntityType: string | null;
|
|
25
|
+
MaxItems: number | null;
|
|
26
26
|
IgnoreTypeAndCompanyFilter: boolean;
|
|
27
27
|
};
|
|
28
28
|
//# sourceMappingURL=dispatcher-requests.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dispatcher-requests.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/dispatcher-requests.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,
|
|
1
|
+
{"version":3,"file":"dispatcher-requests.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/dispatcher-requests.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,0BAA0B,EAAE,OAAO,CAAC;CACrC,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,OAAO,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,IAAI,EAAE,OAAO,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,0BAA0B,EAAE,OAAO,CAAC;CACrC,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export type EntityTypeDTO = {
|
|
2
|
-
Key
|
|
3
|
-
Description
|
|
4
|
-
DescriptionEn
|
|
5
|
-
DescriptionDe
|
|
6
|
-
Notes
|
|
2
|
+
Key: string | null;
|
|
3
|
+
Description: string | null;
|
|
4
|
+
DescriptionEn: string | null;
|
|
5
|
+
DescriptionDe: string | null;
|
|
6
|
+
Notes: string | null;
|
|
7
7
|
ShowStatus: number;
|
|
8
|
-
Sequence
|
|
8
|
+
Sequence: number | null;
|
|
9
9
|
};
|
|
10
10
|
//# sourceMappingURL=entity-type.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity-type.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/entity-type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,GAAG,
|
|
1
|
+
{"version":3,"file":"entity-type.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/entity-type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;CACzB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"info.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/info.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,OAAO,GAAG;IACpB,EAAE,
|
|
1
|
+
{"version":3,"file":"info.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/info.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,OAAO,GAAG;IACpB,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IAClB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paged-response.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/paged-response.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,CAAC,CAAC,IAAI;IAChC,KAAK,EAAE,CAAC,EAAE,CAAC;IACX,iBAAiB,
|
|
1
|
+
{"version":3,"file":"paged-response.d.ts","sourceRoot":"","sources":["../../../../../src/types/dtos/shared/common/paged-response.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,CAAC,CAAC,IAAI;IAChC,KAAK,EAAE,CAAC,EAAE,CAAC;IACX,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { FieldLabelProps } from "
|
|
1
|
+
export type { FieldLabelProps } from "../components/field-label/FieldLabel";
|
|
2
2
|
//# sourceMappingURL=field-label.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { PopoverContentPassThroughProps, PopoverTriggerPassThroughProps } from "
|
|
1
|
+
import type { PopoverContentPassThroughProps, PopoverTriggerPassThroughProps } from "../types/popover";
|
|
2
2
|
export type MultiSelectOption = {
|
|
3
3
|
label: string;
|
|
4
4
|
value: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { VariantProps } from "class-variance-authority";
|
|
2
2
|
import type * as React from "react";
|
|
3
|
-
import type { buttonVariants } from "
|
|
3
|
+
import type { buttonVariants } from "../components/ui/button";
|
|
4
4
|
type NumberInputButtonVariantConfig = VariantProps<typeof buttonVariants>;
|
|
5
5
|
export type NumberInputValue = number | null;
|
|
6
6
|
export type NumberInputStepButtonVariant = NonNullable<NumberInputButtonVariantConfig["variant"]>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ComponentType, ReactNode } from "react";
|
|
2
|
-
import type { PopoverContentPassThroughProps, PopoverTriggerPassThroughProps } from "
|
|
2
|
+
import type { PopoverContentPassThroughProps, PopoverTriggerPassThroughProps } from "../types/popover";
|
|
3
3
|
export type SingleSelectOption = {
|
|
4
4
|
label: string;
|
|
5
5
|
value: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ah-automation.nl/component-lib",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.112",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"dev": "vite",
|
|
24
24
|
"typecheck": "tsc -b",
|
|
25
|
-
"build:types": "tsc -p tsconfig.lib.json",
|
|
25
|
+
"build:types": "tsc -p tsconfig.lib.json && tsc-alias -p tsconfig.lib.json",
|
|
26
26
|
"build": "npm run typecheck && vite build && npm run build:types",
|
|
27
27
|
"lint": "eslint .",
|
|
28
28
|
"lint:fix": "eslint . --fix",
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
"react": "^19.2.4",
|
|
83
83
|
"react-dom": "^19.2.4",
|
|
84
84
|
"rollup-plugin-visualizer": "^7.0.1",
|
|
85
|
+
"tsc-alias": "^1.8.17",
|
|
85
86
|
"typescript": "~5.9.3",
|
|
86
87
|
"typescript-eslint": "^8.56.1",
|
|
87
88
|
"vite": "^7.2.4"
|