@leav/ui 1.11.0 → 1.12.0-37973189
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/_gqlTypes/index.d.ts +9 -61
- package/dist/_gqlTypes/index.js +3 -5
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/components/Explorer/DataView.js +22 -11
- package/dist/components/Explorer/DataView.js.map +1 -1
- package/dist/components/Explorer/Explorer.js +3 -2
- package/dist/components/Explorer/Explorer.js.map +1 -1
- package/dist/components/Explorer/TableNameCell.js +1 -4
- package/dist/components/Explorer/TableNameCell.js.map +1 -1
- package/dist/components/Explorer/actions-mass/useEditAttributeMassAction.js +14 -6
- package/dist/components/Explorer/actions-mass/useEditAttributeMassAction.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/tree/TreeAttributeDropDown.js +11 -0
- package/dist/components/Filters/filter-items/filter-type/tree/TreeAttributeDropDown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/tree/utils/countSelectedTreeChildren.d.ts +2 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/countSelectedTreeChildren.js +10 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/countSelectedTreeChildren.js.map +1 -0
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +1 -0
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -1
- package/package.json +7 -7
|
@@ -247,16 +247,6 @@ export declare enum AvailableLanguage {
|
|
|
247
247
|
en = "en",
|
|
248
248
|
fr = "fr"
|
|
249
249
|
}
|
|
250
|
-
export type CampaignToRenew = {
|
|
251
|
-
endDate: Scalars['String']['input'];
|
|
252
|
-
id: Scalars['String']['input'];
|
|
253
|
-
startDate: Scalars['String']['input'];
|
|
254
|
-
};
|
|
255
|
-
export type CampaignToUpdateDates = {
|
|
256
|
-
endDate: Scalars['String']['input'];
|
|
257
|
-
id: Scalars['String']['input'];
|
|
258
|
-
startDate: Scalars['String']['input'];
|
|
259
|
-
};
|
|
260
250
|
export type ChildrenAsRecordValuePermissionFilterInput = {
|
|
261
251
|
action: RecordPermissionsActions;
|
|
262
252
|
attributeId: Scalars['ID']['input'];
|
|
@@ -498,10 +488,6 @@ export type LogTopicRecordFilterInput = {
|
|
|
498
488
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
499
489
|
libraryId?: InputMaybe<Scalars['String']['input']>;
|
|
500
490
|
};
|
|
501
|
-
export type MapValueInput = {
|
|
502
|
-
after?: InputMaybe<Scalars['ID']['input']>;
|
|
503
|
-
before?: InputMaybe<Scalars['ID']['input']>;
|
|
504
|
-
};
|
|
505
491
|
export declare enum MultiDisplayOption {
|
|
506
492
|
avatar = "avatar",
|
|
507
493
|
badge_qty = "badge_qty",
|
|
@@ -696,49 +682,13 @@ export type RecordsPagination = {
|
|
|
696
682
|
limit: Scalars['Int']['input'];
|
|
697
683
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
698
684
|
};
|
|
699
|
-
export type
|
|
700
|
-
|
|
701
|
-
values: Array<
|
|
702
|
-
withEmptyValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
703
|
-
};
|
|
704
|
-
export type ReportFramingAttributeFilterValueItemInput = {
|
|
705
|
-
formattedValue?: InputMaybe<Scalars['String']['input']>;
|
|
706
|
-
rawValue: Scalars['String']['input'];
|
|
707
|
-
};
|
|
708
|
-
export type ReportFramingCampaignInput = {
|
|
709
|
-
computedFraming?: InputMaybe<Array<ReportFramingItemInput>>;
|
|
710
|
-
framing?: InputMaybe<Array<ReportFramingItemInput>>;
|
|
711
|
-
id: Scalars['String']['input'];
|
|
712
|
-
label?: InputMaybe<Scalars['String']['input']>;
|
|
713
|
-
thematics: Array<ReportFramingThematicInput>;
|
|
714
|
-
};
|
|
715
|
-
export type ReportFramingCategoryInput = {
|
|
716
|
-
categoryId: Scalars['String']['input'];
|
|
717
|
-
children: Array<ReportFramingCategoryInput>;
|
|
718
|
-
computedFraming?: InputMaybe<Array<ReportFramingItemInput>>;
|
|
719
|
-
framing?: InputMaybe<Array<ReportFramingItemInput>>;
|
|
720
|
-
id?: InputMaybe<Scalars['String']['input']>;
|
|
721
|
-
label?: InputMaybe<Scalars['String']['input']>;
|
|
722
|
-
};
|
|
723
|
-
export type ReportFramingContentInput = {
|
|
724
|
-
campaigns: Array<ReportFramingCampaignInput>;
|
|
725
|
-
filters?: InputMaybe<ReportFramingFiltersInput>;
|
|
726
|
-
};
|
|
727
|
-
export type ReportFramingFiltersInput = {
|
|
728
|
-
attributes?: InputMaybe<Array<ReportFramingAttributeFilterItemInput>>;
|
|
729
|
-
search?: InputMaybe<Scalars['String']['input']>;
|
|
685
|
+
export type SaveValueBulkMappingInput = {
|
|
686
|
+
dependenciesFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>>>;
|
|
687
|
+
values: Array<SaveValueBulkMappingValueInput>;
|
|
730
688
|
};
|
|
731
|
-
export type
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
value?: InputMaybe<Scalars['Int']['input']>;
|
|
735
|
-
};
|
|
736
|
-
export type ReportFramingThematicInput = {
|
|
737
|
-
categories: Array<ReportFramingCategoryInput>;
|
|
738
|
-
computedFraming?: InputMaybe<Array<ReportFramingItemInput>>;
|
|
739
|
-
framing?: InputMaybe<Array<ReportFramingItemInput>>;
|
|
740
|
-
id: Scalars['String']['input'];
|
|
741
|
-
label?: InputMaybe<Scalars['String']['input']>;
|
|
689
|
+
export type SaveValueBulkMappingValueInput = {
|
|
690
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
691
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
742
692
|
};
|
|
743
693
|
export type SheetInput = {
|
|
744
694
|
keyIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -803,12 +753,10 @@ export declare enum TaskStatus {
|
|
|
803
753
|
}
|
|
804
754
|
export declare enum TaskType {
|
|
805
755
|
EXPORT = "EXPORT",
|
|
806
|
-
FRAMING_REPORT = "FRAMING_REPORT",
|
|
807
756
|
IMPORT_CONFIG = "IMPORT_CONFIG",
|
|
808
757
|
IMPORT_DATA = "IMPORT_DATA",
|
|
809
758
|
INDEXATION = "INDEXATION",
|
|
810
759
|
PURGE_MULTIPLE_VALUES = "PURGE_MULTIPLE_VALUES",
|
|
811
|
-
RENEW_CAMPAIGNS = "RENEW_CAMPAIGNS",
|
|
812
760
|
SAVE_VALUE_BULK = "SAVE_VALUE_BULK"
|
|
813
761
|
}
|
|
814
762
|
export declare enum TreeBehavior {
|
|
@@ -7228,7 +7176,7 @@ export type SaveValueBulkMutationVariables = Exact<{
|
|
|
7228
7176
|
libraryId: Scalars['ID']['input'];
|
|
7229
7177
|
recordsFilters: Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>;
|
|
7230
7178
|
attributeId: Scalars['ID']['input'];
|
|
7231
|
-
|
|
7179
|
+
mapping: Array<SaveValueBulkMappingInput> | SaveValueBulkMappingInput;
|
|
7232
7180
|
}>;
|
|
7233
7181
|
export type SaveValueBulkMutation = {
|
|
7234
7182
|
saveValueBulk: string;
|
|
@@ -9875,7 +9823,7 @@ export type SaveValueBulkMutationFn = Apollo.MutationFunction<SaveValueBulkMutat
|
|
|
9875
9823
|
* libraryId: // value for 'libraryId'
|
|
9876
9824
|
* recordsFilters: // value for 'recordsFilters'
|
|
9877
9825
|
* attributeId: // value for 'attributeId'
|
|
9878
|
-
*
|
|
9826
|
+
* mapping: // value for 'mapping'
|
|
9879
9827
|
* },
|
|
9880
9828
|
* });
|
|
9881
9829
|
*/
|
|
@@ -9883,7 +9831,7 @@ export declare function useSaveValueBulkMutation(baseOptions?: Apollo.MutationHo
|
|
|
9883
9831
|
libraryId: Scalars["ID"]["input"];
|
|
9884
9832
|
recordsFilters: Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>;
|
|
9885
9833
|
attributeId: Scalars["ID"]["input"];
|
|
9886
|
-
|
|
9834
|
+
mapping: Array<SaveValueBulkMappingInput> | SaveValueBulkMappingInput;
|
|
9887
9835
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9888
9836
|
export type SaveValueBulkMutationHookResult = ReturnType<typeof useSaveValueBulkMutation>;
|
|
9889
9837
|
export type SaveValueBulkMutationResult = Apollo.MutationResult<SaveValueBulkMutation>;
|
package/dist/_gqlTypes/index.js
CHANGED
|
@@ -307,12 +307,10 @@ export var TaskStatus;
|
|
|
307
307
|
export var TaskType;
|
|
308
308
|
(function (TaskType) {
|
|
309
309
|
TaskType["EXPORT"] = "EXPORT";
|
|
310
|
-
TaskType["FRAMING_REPORT"] = "FRAMING_REPORT";
|
|
311
310
|
TaskType["IMPORT_CONFIG"] = "IMPORT_CONFIG";
|
|
312
311
|
TaskType["IMPORT_DATA"] = "IMPORT_DATA";
|
|
313
312
|
TaskType["INDEXATION"] = "INDEXATION";
|
|
314
313
|
TaskType["PURGE_MULTIPLE_VALUES"] = "PURGE_MULTIPLE_VALUES";
|
|
315
|
-
TaskType["RENEW_CAMPAIGNS"] = "RENEW_CAMPAIGNS";
|
|
316
314
|
TaskType["SAVE_VALUE_BULK"] = "SAVE_VALUE_BULK";
|
|
317
315
|
})(TaskType || (TaskType = {}));
|
|
318
316
|
export var TreeBehavior;
|
|
@@ -3196,12 +3194,12 @@ export function useSaveValueBatchMutation(baseOptions) {
|
|
|
3196
3194
|
return Apollo.useMutation(SaveValueBatchDocument, options);
|
|
3197
3195
|
}
|
|
3198
3196
|
export const SaveValueBulkDocument = gql `
|
|
3199
|
-
mutation SAVE_VALUE_BULK($libraryId: ID!, $recordsFilters: [RecordFilterInput]!, $attributeId: ID!, $
|
|
3197
|
+
mutation SAVE_VALUE_BULK($libraryId: ID!, $recordsFilters: [RecordFilterInput]!, $attributeId: ID!, $mapping: [SaveValueBulkMappingInput!]!) {
|
|
3200
3198
|
saveValueBulk(
|
|
3201
3199
|
libraryId: $libraryId
|
|
3202
3200
|
recordsFilters: $recordsFilters
|
|
3203
3201
|
attributeId: $attributeId
|
|
3204
|
-
|
|
3202
|
+
mapping: $mapping
|
|
3205
3203
|
)
|
|
3206
3204
|
}
|
|
3207
3205
|
`;
|
|
@@ -3221,7 +3219,7 @@ export const SaveValueBulkDocument = gql `
|
|
|
3221
3219
|
* libraryId: // value for 'libraryId'
|
|
3222
3220
|
* recordsFilters: // value for 'recordsFilters'
|
|
3223
3221
|
* attributeId: // value for 'attributeId'
|
|
3224
|
-
*
|
|
3222
|
+
* mapping: // value for 'mapping'
|
|
3225
3223
|
* },
|
|
3226
3224
|
* });
|
|
3227
3225
|
*/
|