@nivaro/react 0.1.138 → 0.1.140
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/full.css +1 -1
- package/dist/index.d.ts +12 -1
- package/dist/index.js +17451 -17368
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -251,8 +251,9 @@ declare type AutoAllocateConfig = {
|
|
|
251
251
|
};
|
|
252
252
|
};
|
|
253
253
|
|
|
254
|
-
export declare function AutolinkedText({ text }: {
|
|
254
|
+
export declare function AutolinkedText({ text, plain }: {
|
|
255
255
|
text: string;
|
|
256
|
+
plain?: boolean;
|
|
256
257
|
}): JSX.Element;
|
|
257
258
|
|
|
258
259
|
export declare function BaseMap({ pins, bubbles, statusLine, onPinClick, onBubbleClick, minHeight, focus }: {
|
|
@@ -888,6 +889,15 @@ export declare function deriveGroupKey<T extends QueueGroupingRow>(row: T, attri
|
|
|
888
889
|
|
|
889
890
|
export declare function describeCron(cron: string): string;
|
|
890
891
|
|
|
892
|
+
declare type DimensionCascadeRule = {
|
|
893
|
+
/** Sibling dimension's field whose picked value drives this filter. */
|
|
894
|
+
parent_field: string;
|
|
895
|
+
/** Column (dotted ok) on THIS dimension's option collection. */
|
|
896
|
+
filter: string;
|
|
897
|
+
/** Wrap the first hop in _some (junction/M2M path). */
|
|
898
|
+
via_many?: boolean;
|
|
899
|
+
};
|
|
900
|
+
|
|
891
901
|
declare interface DirectoryChannel {
|
|
892
902
|
id: number;
|
|
893
903
|
key: string;
|
|
@@ -2529,6 +2539,7 @@ declare type PipelineOwnerDimension = {
|
|
|
2529
2539
|
sort: number;
|
|
2530
2540
|
is_row_axis: boolean;
|
|
2531
2541
|
required: boolean;
|
|
2542
|
+
cascade?: DimensionCascadeRule[] | null;
|
|
2532
2543
|
};
|
|
2533
2544
|
|
|
2534
2545
|
export declare function PipelinePanel({ collection, item, defaultExpanded, title, showApprovalChain, onBeforeTransition, addendumPending, addendumView }: {
|