@helpwave/hightide 0.12.0 → 0.12.2
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.mts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +8880 -8882
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8916 -8918
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -911,14 +911,14 @@ interface AppPageNavigationItem {
|
|
|
911
911
|
items?: AppPageNavigationItem[];
|
|
912
912
|
}
|
|
913
913
|
interface AppPageSidebarProps {
|
|
914
|
-
header
|
|
915
|
-
items
|
|
916
|
-
|
|
917
|
-
footer
|
|
914
|
+
header?: ReactNode;
|
|
915
|
+
items?: AppPageNavigationItem[];
|
|
916
|
+
contentOverwrite?: ReactNode;
|
|
917
|
+
footer?: ReactNode;
|
|
918
918
|
}
|
|
919
919
|
interface AppPageProps extends HTMLAttributes<HTMLDivElement> {
|
|
920
920
|
headerActions?: ReactNode[];
|
|
921
|
-
sidebarProps:
|
|
921
|
+
sidebarProps: AppPageSidebarProps;
|
|
922
922
|
}
|
|
923
923
|
declare const AppPage: ({ children, headerActions, sidebarProps, ...props }: AppPageProps) => react_jsx_runtime.JSX.Element;
|
|
924
924
|
|
|
@@ -2630,7 +2630,7 @@ type OperatorInfoResult = {
|
|
|
2630
2630
|
declare function getDefaultOperator(dataType: DataType): FilterOperator;
|
|
2631
2631
|
declare const FilterOperatorUtils: {
|
|
2632
2632
|
operators: readonly ["equals", "notEquals", "contains", "notContains", "startsWith", "endsWith", "greaterThan", "greaterThanOrEqual", "lessThan", "lessThanOrEqual", "between", "notBetween", "isTrue", "isFalse", "isUndefined", "isNotUndefined"];
|
|
2633
|
-
operatorsByCategory: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "
|
|
2633
|
+
operatorsByCategory: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "multiTags" | "singleTag" | "unknownType", ("endsWith" | "startsWith" | "between" | "contains" | "equals" | "greaterThan" | "greaterThanOrEqual" | "isFalse" | "isNotUndefined" | "isTrue" | "isUndefined" | "lessThan" | "lessThanOrEqual" | "notBetween" | "notContains" | "notEquals")[]>;
|
|
2634
2634
|
getInfo: (operator: FilterOperator) => OperatorInfoResult;
|
|
2635
2635
|
getDefaultOperator: typeof getDefaultOperator;
|
|
2636
2636
|
typeCheck: {
|
|
@@ -2665,7 +2665,7 @@ type FilterValue = {
|
|
|
2665
2665
|
};
|
|
2666
2666
|
declare function isFilterValueValid(value: FilterValue): boolean;
|
|
2667
2667
|
declare const FilterValueUtils: {
|
|
2668
|
-
allowedOperatorsByDataType: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "
|
|
2668
|
+
allowedOperatorsByDataType: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "multiTags" | "singleTag" | "unknownType", ("endsWith" | "startsWith" | "between" | "contains" | "equals" | "greaterThan" | "greaterThanOrEqual" | "isFalse" | "isNotUndefined" | "isTrue" | "isUndefined" | "lessThan" | "lessThanOrEqual" | "notBetween" | "notContains" | "notEquals")[]>;
|
|
2669
2669
|
isValid: typeof isFilterValueValid;
|
|
2670
2670
|
};
|
|
2671
2671
|
declare const FilterFunctions: Record<DataType, (value: unknown, operator: FilterOperator, parameter: FilterParameter) => boolean>;
|
package/dist/index.d.ts
CHANGED
|
@@ -911,14 +911,14 @@ interface AppPageNavigationItem {
|
|
|
911
911
|
items?: AppPageNavigationItem[];
|
|
912
912
|
}
|
|
913
913
|
interface AppPageSidebarProps {
|
|
914
|
-
header
|
|
915
|
-
items
|
|
916
|
-
|
|
917
|
-
footer
|
|
914
|
+
header?: ReactNode;
|
|
915
|
+
items?: AppPageNavigationItem[];
|
|
916
|
+
contentOverwrite?: ReactNode;
|
|
917
|
+
footer?: ReactNode;
|
|
918
918
|
}
|
|
919
919
|
interface AppPageProps extends HTMLAttributes<HTMLDivElement> {
|
|
920
920
|
headerActions?: ReactNode[];
|
|
921
|
-
sidebarProps:
|
|
921
|
+
sidebarProps: AppPageSidebarProps;
|
|
922
922
|
}
|
|
923
923
|
declare const AppPage: ({ children, headerActions, sidebarProps, ...props }: AppPageProps) => react_jsx_runtime.JSX.Element;
|
|
924
924
|
|
|
@@ -2630,7 +2630,7 @@ type OperatorInfoResult = {
|
|
|
2630
2630
|
declare function getDefaultOperator(dataType: DataType): FilterOperator;
|
|
2631
2631
|
declare const FilterOperatorUtils: {
|
|
2632
2632
|
operators: readonly ["equals", "notEquals", "contains", "notContains", "startsWith", "endsWith", "greaterThan", "greaterThanOrEqual", "lessThan", "lessThanOrEqual", "between", "notBetween", "isTrue", "isFalse", "isUndefined", "isNotUndefined"];
|
|
2633
|
-
operatorsByCategory: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "
|
|
2633
|
+
operatorsByCategory: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "multiTags" | "singleTag" | "unknownType", ("endsWith" | "startsWith" | "between" | "contains" | "equals" | "greaterThan" | "greaterThanOrEqual" | "isFalse" | "isNotUndefined" | "isTrue" | "isUndefined" | "lessThan" | "lessThanOrEqual" | "notBetween" | "notContains" | "notEquals")[]>;
|
|
2634
2634
|
getInfo: (operator: FilterOperator) => OperatorInfoResult;
|
|
2635
2635
|
getDefaultOperator: typeof getDefaultOperator;
|
|
2636
2636
|
typeCheck: {
|
|
@@ -2665,7 +2665,7 @@ type FilterValue = {
|
|
|
2665
2665
|
};
|
|
2666
2666
|
declare function isFilterValueValid(value: FilterValue): boolean;
|
|
2667
2667
|
declare const FilterValueUtils: {
|
|
2668
|
-
allowedOperatorsByDataType: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "
|
|
2668
|
+
allowedOperatorsByDataType: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "multiTags" | "singleTag" | "unknownType", ("endsWith" | "startsWith" | "between" | "contains" | "equals" | "greaterThan" | "greaterThanOrEqual" | "isFalse" | "isNotUndefined" | "isTrue" | "isUndefined" | "lessThan" | "lessThanOrEqual" | "notBetween" | "notContains" | "notEquals")[]>;
|
|
2669
2669
|
isValid: typeof isFilterValueValid;
|
|
2670
2670
|
};
|
|
2671
2671
|
declare const FilterFunctions: Record<DataType, (value: unknown, operator: FilterOperator, parameter: FilterParameter) => boolean>;
|