@leav/ui 1.10.0-dec3db65 → 1.11.0-0b22bde6
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 +14 -1
- package/dist/_gqlTypes/index.js +39 -15
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/components/Explorer/_queries/useExplorerCountData.js +3 -4
- package/dist/components/Explorer/_queries/useExplorerCountData.js.map +1 -1
- package/dist/components/Filters/filter-items/CommonFilterItem.js +8 -6
- package/dist/components/Filters/filter-items/CommonFilterItem.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/BooleanAttributeDropdown.js +6 -1
- package/dist/components/Filters/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/FilterValueListDropDown.js +11 -19
- package/dist/components/Filters/filter-items/filter-type/FilterValueListDropDown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/TextAttributeDropDown.js +27 -18
- package/dist/components/Filters/filter-items/filter-type/TextAttributeDropDown.js.map +1 -1
- package/dist/components/Notifications/InitNotificationsSubscription.d.ts +4 -2
- package/dist/components/Notifications/InitNotificationsSubscription.js.map +1 -1
- package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecord/EditRecord.js +2 -2
- package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +1 -1
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +4 -4
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js +3 -2
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js.map +1 -1
- package/dist/components/RecordHistory/RecordHistory.d.ts +1 -0
- package/dist/components/RecordHistory/RecordHistory.js +3 -3
- package/dist/components/RecordHistory/RecordHistory.js.map +1 -1
- package/dist/components/RecordHistory/RecordHistoryGoUpButton.d.ts +1 -0
- package/dist/components/RecordHistory/RecordHistoryGoUpButton.js +3 -3
- package/dist/components/RecordHistory/RecordHistoryGoUpButton.js.map +1 -1
- package/dist/components/RecordHistory/RecordHistoryLogEntry.js +7 -5
- package/dist/components/RecordHistory/RecordHistoryLogEntry.js.map +1 -1
- package/dist/components/RecordHistory/_queries/recordHistoryQuery.js +38 -14
- package/dist/components/RecordHistory/_queries/recordHistoryQuery.js.map +1 -1
- package/dist/components/RecordHistory/_types.d.ts +2 -2
- package/dist/components/RecordHistory/_types.js.map +1 -1
- package/package.json +2 -2
|
@@ -3687,6 +3687,9 @@ export type RecordHistoryLogEntryFragment = {
|
|
|
3687
3687
|
type: AttributeType;
|
|
3688
3688
|
format?: AttributeFormat | null;
|
|
3689
3689
|
multiple_values: boolean;
|
|
3690
|
+
} | {
|
|
3691
|
+
id: string;
|
|
3692
|
+
label?: any | null;
|
|
3690
3693
|
} | {
|
|
3691
3694
|
id: string;
|
|
3692
3695
|
label?: any | null;
|
|
@@ -3700,6 +3703,9 @@ export type RecordHistoryLogEntryFragment = {
|
|
|
3700
3703
|
} | null;
|
|
3701
3704
|
} | null;
|
|
3702
3705
|
user: {
|
|
3706
|
+
id: string;
|
|
3707
|
+
label?: any | null;
|
|
3708
|
+
} | {
|
|
3703
3709
|
id: string;
|
|
3704
3710
|
whoAmI: {
|
|
3705
3711
|
id: string;
|
|
@@ -3728,6 +3734,7 @@ export type RecordHistoryLogAttributeLinkAttributeTreeAttributeFragment = {
|
|
|
3728
3734
|
format?: AttributeFormat | null;
|
|
3729
3735
|
multiple_values: boolean;
|
|
3730
3736
|
};
|
|
3737
|
+
export type RecordHistoryLogAttributeLogUnknownEntityFragment = Record<PropertyKey, never>;
|
|
3731
3738
|
export type RecordHistoryLogAttributeStandardAttributeFragment = {
|
|
3732
3739
|
id: string;
|
|
3733
3740
|
label?: any | null;
|
|
@@ -3739,7 +3746,7 @@ export type RecordHistoryLogAttributeStandardAttributeFragment = {
|
|
|
3739
3746
|
label?: any | null;
|
|
3740
3747
|
} | null> | null;
|
|
3741
3748
|
};
|
|
3742
|
-
export type RecordHistoryLogAttributeFragment = RecordHistoryLogAttributeLinkAttributeTreeAttributeFragment | RecordHistoryLogAttributeStandardAttributeFragment;
|
|
3749
|
+
export type RecordHistoryLogAttributeFragment = RecordHistoryLogAttributeLinkAttributeTreeAttributeFragment | RecordHistoryLogAttributeLogUnknownEntityFragment | RecordHistoryLogAttributeStandardAttributeFragment;
|
|
3743
3750
|
export type CheckApplicationExistenceQueryVariables = Exact<{
|
|
3744
3751
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
3745
3752
|
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8151,6 +8158,9 @@ export type GetRecordHistoryQuery = {
|
|
|
8151
8158
|
type: AttributeType;
|
|
8152
8159
|
format?: AttributeFormat | null;
|
|
8153
8160
|
multiple_values: boolean;
|
|
8161
|
+
} | {
|
|
8162
|
+
id: string;
|
|
8163
|
+
label?: any | null;
|
|
8154
8164
|
} | {
|
|
8155
8165
|
id: string;
|
|
8156
8166
|
label?: any | null;
|
|
@@ -8164,6 +8174,9 @@ export type GetRecordHistoryQuery = {
|
|
|
8164
8174
|
} | null;
|
|
8165
8175
|
} | null;
|
|
8166
8176
|
user: {
|
|
8177
|
+
id: string;
|
|
8178
|
+
label?: any | null;
|
|
8179
|
+
} | {
|
|
8167
8180
|
id: string;
|
|
8168
8181
|
whoAmI: {
|
|
8169
8182
|
id: string;
|
package/dist/_gqlTypes/index.js
CHANGED
|
@@ -1178,18 +1178,32 @@ export const LibraryAttributeFragmentDoc = gql `
|
|
|
1178
1178
|
}
|
|
1179
1179
|
${LibraryAttributeLinkFragmentDoc}`;
|
|
1180
1180
|
export const RecordHistoryLogAttributeFragmentDoc = gql `
|
|
1181
|
-
fragment RecordHistoryLogAttribute on
|
|
1182
|
-
id
|
|
1183
|
-
label
|
|
1184
|
-
type
|
|
1185
|
-
format
|
|
1186
|
-
multiple_values
|
|
1181
|
+
fragment RecordHistoryLogAttribute on LogAttribute {
|
|
1187
1182
|
... on StandardAttribute {
|
|
1183
|
+
id
|
|
1184
|
+
label
|
|
1185
|
+
type
|
|
1186
|
+
format
|
|
1187
|
+
multiple_values
|
|
1188
1188
|
embedded_fields {
|
|
1189
1189
|
id
|
|
1190
1190
|
label
|
|
1191
1191
|
}
|
|
1192
1192
|
}
|
|
1193
|
+
... on LinkAttribute {
|
|
1194
|
+
id
|
|
1195
|
+
label
|
|
1196
|
+
type
|
|
1197
|
+
format
|
|
1198
|
+
multiple_values
|
|
1199
|
+
}
|
|
1200
|
+
... on TreeAttribute {
|
|
1201
|
+
id
|
|
1202
|
+
label
|
|
1203
|
+
type
|
|
1204
|
+
format
|
|
1205
|
+
multiple_values
|
|
1206
|
+
}
|
|
1193
1207
|
}
|
|
1194
1208
|
`;
|
|
1195
1209
|
export const RecordHistoryLogEntryFragmentDoc = gql `
|
|
@@ -1199,24 +1213,34 @@ export const RecordHistoryLogEntryFragmentDoc = gql `
|
|
|
1199
1213
|
topic {
|
|
1200
1214
|
attribute {
|
|
1201
1215
|
...RecordHistoryLogAttribute
|
|
1216
|
+
... on LogUnknownEntity {
|
|
1217
|
+
id
|
|
1218
|
+
label
|
|
1219
|
+
}
|
|
1202
1220
|
}
|
|
1203
1221
|
}
|
|
1204
1222
|
user {
|
|
1205
|
-
|
|
1206
|
-
whoAmI {
|
|
1223
|
+
... on Record {
|
|
1207
1224
|
id
|
|
1208
|
-
|
|
1225
|
+
whoAmI {
|
|
1209
1226
|
id
|
|
1227
|
+
library {
|
|
1228
|
+
id
|
|
1229
|
+
}
|
|
1210
1230
|
}
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1231
|
+
properties(attributeIds: ["email"]) {
|
|
1232
|
+
attributeId
|
|
1233
|
+
values {
|
|
1234
|
+
... on Value {
|
|
1235
|
+
payload
|
|
1236
|
+
}
|
|
1217
1237
|
}
|
|
1218
1238
|
}
|
|
1219
1239
|
}
|
|
1240
|
+
... on LogUnknownEntity {
|
|
1241
|
+
id
|
|
1242
|
+
label
|
|
1243
|
+
}
|
|
1220
1244
|
}
|
|
1221
1245
|
before {
|
|
1222
1246
|
asString
|