@zeniai/web-components 4.1.52-betaJK1 → 4.1.52-betaJK2
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/{SessionTimeoutPopup-CeEHMEE4.cjs → SessionTimeoutPopup-CdfFoZvR.cjs} +13480 -13262
- package/dist/{SessionTimeoutPopup-DLk6TjxT.js → SessionTimeoutPopup-Dw3I5d4K.js} +64303 -63524
- package/dist/appLocale.d.ts +7 -9
- package/dist/assets/interface/flag.svg +3 -4
- package/dist/cockpit.cjs.js +805 -805
- package/dist/cockpit.esm.js +3440 -3519
- package/dist/components/cockpit/common/cockpitConstants.d.ts +1 -2
- package/dist/components/cockpit/common/cockpitFilters/cockpitFiltersHelpers.d.ts +1 -1
- package/dist/components/cockpit/common/cockpitFilters/commonTypes.d.ts +2 -5
- package/dist/components/cockpit/common/cockpitFilters/components/CategoryDropdown.d.ts +2 -2
- package/dist/components/cockpit/taskManager/TaskManagerPage.d.ts +2 -4
- package/dist/components/taskManagement/SubtaskCreationForm.d.ts +14 -0
- package/dist/components/taskManagement/TaskDetailPage.d.ts +8 -3
- package/dist/components/taskManagement/TaskListRow.d.ts +7 -2
- package/dist/components/taskManagement/TaskListRowSmall.d.ts +3 -1
- package/dist/components/taskManagement/TaskManagementPage.d.ts +4 -28
- package/dist/components/taskManagement/taskManagementFormConstants.d.ts +1 -0
- package/dist/components/taskManagement/taskManagementHeaderItemsData.d.ts +1 -0
- package/dist/components/taskManagement/taskManagementTypes.d.ts +33 -0
- package/dist/components/taskManagement/taskManagementUtils.d.ts +2 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/strings/strings.d.ts +7 -9
- package/package.json +2 -2
package/dist/appLocale.d.ts
CHANGED
|
@@ -1468,6 +1468,11 @@ declare class AppLocale {
|
|
|
1468
1468
|
failed: string;
|
|
1469
1469
|
notification: string;
|
|
1470
1470
|
};
|
|
1471
|
+
create_sub_task: {
|
|
1472
|
+
success: string;
|
|
1473
|
+
failed: string;
|
|
1474
|
+
notification: string;
|
|
1475
|
+
};
|
|
1471
1476
|
};
|
|
1472
1477
|
currency: {
|
|
1473
1478
|
currencyCode: string;
|
|
@@ -3914,15 +3919,6 @@ declare class AppLocale {
|
|
|
3914
3919
|
aiAccountant: {
|
|
3915
3920
|
enrollmentStatus: string;
|
|
3916
3921
|
};
|
|
3917
|
-
taskManager: {
|
|
3918
|
-
company_id: string;
|
|
3919
|
-
status: string;
|
|
3920
|
-
priority: string;
|
|
3921
|
-
assignees: string;
|
|
3922
|
-
tag: string;
|
|
3923
|
-
dueDate: string;
|
|
3924
|
-
creationDate: string;
|
|
3925
|
-
};
|
|
3926
3922
|
healthMonitor: {
|
|
3927
3923
|
controller: string;
|
|
3928
3924
|
customerSuccessManager: string;
|
|
@@ -7342,6 +7338,8 @@ declare class AppLocale {
|
|
|
7342
7338
|
visibilityPrivate: string;
|
|
7343
7339
|
visibilityRequired: string;
|
|
7344
7340
|
commentsSectionTitle: string;
|
|
7341
|
+
subtasksLabel: string;
|
|
7342
|
+
createSubtaskLabel: string;
|
|
7345
7343
|
semiWeeklyDaysLabel: string;
|
|
7346
7344
|
semiWeeklyDaysExactlyTwo: string;
|
|
7347
7345
|
semiWeeklyDaysShort: {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M3.
|
|
3
|
-
<path d="M3.
|
|
4
|
-
<path d="M1.91016 0.812622V15.1876" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.25007 14L3.2464 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M3.2464 8.50008C7.2464 5.0357 8.75362 11.9645 12.7536 8.50008V3.00008C8.75362 6.46445 7.2464 -0.464296 3.2464 3.00008" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
4
|
</svg>
|