@adaptabletools/adaptable 23.0.0-canary.0 → 23.0.0-canary.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/index.css +26 -3
- package/package.json +1 -1
- package/src/AdaptableOptions/ColumnMenuOptions.d.ts +3 -3
- package/src/AdaptableOptions/ContextMenuOptions.d.ts +3 -3
- package/src/Strategy/ExportModule.js +13 -1
- package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +2 -2
- package/src/View/Alert/Wizard/AlertWizard.js +3 -3
- package/src/View/Components/ColumnFilter/AdaptableColumnFilter.d.ts +3 -1
- package/src/View/Components/ColumnFilter/AdaptableColumnFilter.js +7 -1
- package/src/View/Components/ColumnFilter/ColumnFilter.d.ts +2 -1
- package/src/View/Components/ColumnFilter/ColumnFilter.js +3 -2
- package/src/View/Components/ColumnFilter/columnFilterLocation.d.ts +2 -0
- package/src/View/Components/ColumnFilter/columnFilterLocation.js +1 -0
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
- package/src/View/Export/Wizard/ExportPopupWizardRouter.js +10 -1
- package/src/View/Export/Wizard/ScheduledReportSettings.d.ts +3 -1
- package/src/View/Export/Wizard/ScheduledReportSettings.js +8 -1
- package/src/View/Export/Wizard/ScheduledReportWizard.js +8 -3
- package/src/View/Export/Wizard/isReportScheduledSettingsValid.d.ts +1 -1
- package/src/View/Export/Wizard/isReportScheduledSettingsValid.js +3 -0
- package/src/View/Layout/Wizard/LayoutWizard.js +7 -2
- package/src/View/renderWithAdaptableContext.js +1 -1
- package/src/agGrid/AdaptableFrameworkComponent.d.ts +25 -3
- package/src/agGrid/AgGridFilterAdapter.js +3 -1
- package/src/components/Combobox/index.js +1 -1
- package/src/components/Datepicker/index.js +4 -4
- package/src/components/NewDropdownButton/index.js +1 -1
- package/src/components/NewSelect/index.js +2 -2
- package/src/components/NewTooltip/index.js +1 -1
- package/src/components/ui/button.js +1 -1
- package/src/components/ui/calendar.d.ts +1 -1
- package/src/components/ui/calendar.js +2 -2
- package/src/components/ui/combobox.js +3 -3
- package/src/components/ui/dropdown-menu.js +1 -1
- package/src/components/ui/input-group.d.ts +1 -1
- package/src/components/ui/input-group.js +4 -4
- package/src/components/ui/input.js +1 -1
- package/src/components/ui/popover.js +1 -1
- package/src/components/ui/select.js +1 -1
- package/src/components/ui/textarea.js +1 -1
- package/src/components/ui/tooltip.js +1 -1
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +12 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/themes/dark.css +10 -2
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { type VariantProps } from 'class-variance-authority';
|
|
3
|
-
import { Button } from
|
|
3
|
+
import { Button } from "./button";
|
|
4
4
|
declare function InputGroup({ className, ...props }: React.ComponentProps<'div'>): React.JSX.Element;
|
|
5
5
|
declare const inputGroupAddonVariants: (props?: {
|
|
6
6
|
align?: "inline-end" | "inline-start" | "block-end" | "block-start";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
import { cva } from 'class-variance-authority';
|
|
4
|
-
import { cn } from
|
|
5
|
-
import { Button } from
|
|
6
|
-
import { Input } from
|
|
7
|
-
import { Textarea } from
|
|
4
|
+
import { cn } from "../../lib/utils";
|
|
5
|
+
import { Button } from "./button";
|
|
6
|
+
import { Input } from "./input";
|
|
7
|
+
import { Textarea } from "./textarea";
|
|
8
8
|
function InputGroup({ className, ...props }) {
|
|
9
9
|
return (_jsx("div", { "data-slot": "input-group", role: "group", className: cn('twa:group/input-group twa:relative twa:flex twa:h-input twa:w-full twa:min-w-0 twa:items-center twa:rounded-input twa:border twa:border-input twa:shadow-xs twa:transition-[color,box-shadow] twa:outline-none twa:in-data-[slot=combobox-content]:focus-within:border-inherit twa:in-data-[slot=combobox-content]:focus-within:ring-0 twa:has-[[data-slot=input-group-control]:focus-visible]:border-ring twa:has-[[data-slot=input-group-control]:focus-visible]:ring-3 twa:has-[[data-slot=input-group-control]:focus-visible]:ring-ring/50 twa:has-[[data-slot][aria-invalid=true]]:border-destructive twa:has-[[data-slot][aria-invalid=true]]:ring-3 twa:has-[[data-slot][aria-invalid=true]]:ring-destructive/20 twa:has-[>[data-align=block-end]]:h-auto twa:has-[>[data-align=block-end]]:flex-col twa:has-[>[data-align=block-start]]:h-auto twa:has-[>[data-align=block-start]]:flex-col twa:has-[>textarea]:h-auto twa:dark:bg-input/30 twa:dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 twa:has-[>[data-align=block-end]]:[&>input]:pt-3 twa:has-[>[data-align=block-start]]:[&>input]:pb-3 twa:has-[>[data-align=inline-end]]:[&>input]:pr-1.5 twa:has-[>[data-align=inline-start]]:[&>input]:pl-1.5', className), ...props }));
|
|
10
10
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Input as InputPrimitive } from "@base-ui/react/input";
|
|
3
|
-
import { cn } from "
|
|
3
|
+
import { cn } from "../../lib/utils";
|
|
4
4
|
function Input({ className, type, ...props }) {
|
|
5
5
|
return (_jsx(InputPrimitive, { type: type, "data-slot": "input", className: cn("twa:h-9 twa:w-full twa:min-w-0 twa:rounded-md twa:border twa:border-input twa:bg-transparent twa:px-2.5 twa:py-1 twa:text-base twa:shadow-xs twa:transition-[color,box-shadow] twa:outline-none twa:file:inline-flex twa:file:h-7 twa:file:border-0 twa:file:bg-transparent twa:file:text-sm twa:file:font-medium twa:file:text-foreground twa:placeholder:text-muted-foreground twa:focus-visible:border-ring twa:focus-visible:ring-3 twa:focus-visible:ring-ring/50 twa:disabled:pointer-events-none twa:disabled:cursor-not-allowed twa:disabled:opacity-50 twa:aria-invalid:border-destructive twa:aria-invalid:ring-3 twa:aria-invalid:ring-destructive/20 twa:md:text-sm twa:dark:bg-input/30 twa:dark:aria-invalid:border-destructive/50 twa:dark:aria-invalid:ring-destructive/40", className), ...props }));
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Popover as PopoverPrimitive } from "@base-ui/react/popover";
|
|
3
|
-
import { cn, POPUP_Z_INDEX } from "
|
|
3
|
+
import { cn, POPUP_Z_INDEX } from "../../lib/utils";
|
|
4
4
|
function Popover({ ...props }) {
|
|
5
5
|
return _jsx(PopoverPrimitive.Root, { "data-slot": "popover", ...props });
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Select as SelectPrimitive } from '@base-ui/react/select';
|
|
3
|
-
import { cn, POPUP_Z_INDEX } from
|
|
3
|
+
import { cn, POPUP_Z_INDEX } from "../../lib/utils";
|
|
4
4
|
import { ChevronDownIcon, CheckIcon, ChevronUpIcon } from 'lucide-react';
|
|
5
5
|
const Select = SelectPrimitive.Root;
|
|
6
6
|
function SelectGroup({ className, ...props }) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { cn } from "
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
3
|
function Textarea({ className, ...props }) {
|
|
4
4
|
return (_jsx("textarea", { "data-slot": "textarea", className: cn("twa:flex twa:field-sizing-content twa:min-h-16 twa:w-full twa:rounded-md twa:border twa:border-input twa:bg-transparent twa:px-2.5 twa:py-2 twa:text-base twa:shadow-xs twa:transition-[color,box-shadow] twa:outline-none twa:placeholder:text-muted-foreground twa:focus-visible:border-ring twa:focus-visible:ring-3 twa:focus-visible:ring-ring/50 twa:disabled:cursor-not-allowed twa:disabled:opacity-50 twa:aria-invalid:border-destructive twa:aria-invalid:ring-3 twa:aria-invalid:ring-destructive/20 twa:md:text-sm twa:dark:bg-input/30 twa:dark:aria-invalid:border-destructive/50 twa:dark:aria-invalid:ring-destructive/40", className), ...props }));
|
|
5
5
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Tooltip as TooltipPrimitive } from "@base-ui/react/tooltip";
|
|
3
|
-
import { cn, POPUP_Z_INDEX } from "
|
|
3
|
+
import { cn, POPUP_Z_INDEX } from "../../lib/utils";
|
|
4
4
|
function TooltipProvider({ delay = 0, ...props }) {
|
|
5
5
|
return (_jsx(TooltipPrimitive.Provider, { "data-slot": "tooltip-provider", delay: delay, ...props }));
|
|
6
6
|
}
|
package/src/env.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
|
|
3
|
-
PUBLISH_TIMESTAMP:
|
|
4
|
-
VERSION: "23.0.0-canary.
|
|
3
|
+
PUBLISH_TIMESTAMP: 1780401790580 || Date.now(),
|
|
4
|
+
VERSION: "23.0.0-canary.1" || '--current-version--',
|
|
5
5
|
};
|
|
@@ -482,6 +482,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
482
482
|
r?: undefined;
|
|
483
483
|
})[];
|
|
484
484
|
};
|
|
485
|
+
AdaptableMenuItemParams: {
|
|
486
|
+
k: string;
|
|
487
|
+
};
|
|
485
488
|
AdaptableMessageType: {
|
|
486
489
|
k: string;
|
|
487
490
|
};
|
|
@@ -636,6 +639,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
636
639
|
AdaptableQuery: {
|
|
637
640
|
k: string;
|
|
638
641
|
};
|
|
642
|
+
AdaptableReactMenuItemProps: {
|
|
643
|
+
k: string;
|
|
644
|
+
};
|
|
639
645
|
AdaptableReadyInfo: {
|
|
640
646
|
k: string;
|
|
641
647
|
p: {
|
|
@@ -3727,6 +3733,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3727
3733
|
MenuCategory: {
|
|
3728
3734
|
k: string;
|
|
3729
3735
|
};
|
|
3736
|
+
MenuItemFrameworkComponent: {
|
|
3737
|
+
k: string;
|
|
3738
|
+
};
|
|
3730
3739
|
MenuSeparator: {
|
|
3731
3740
|
k: string;
|
|
3732
3741
|
};
|
|
@@ -4249,6 +4258,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4249
4258
|
ReactFrameworkComponent: {
|
|
4250
4259
|
k: string;
|
|
4251
4260
|
};
|
|
4261
|
+
ReactMenuItemFrameworkComponent: {
|
|
4262
|
+
k: string;
|
|
4263
|
+
};
|
|
4252
4264
|
Report: {
|
|
4253
4265
|
k: string;
|
|
4254
4266
|
p: ({
|