@zeniai/web-components 4.1.52-betaJK1 → 4.1.52-betaVR1
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-DQSLdcQs.cjs} +15270 -14939
- package/dist/{SessionTimeoutPopup-DLk6TjxT.js → SessionTimeoutPopup-DXP_m1FM.js} +68319 -66796
- package/dist/appLocale.d.ts +25 -9
- 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/formElements/common/common.d.ts +1 -0
- package/dist/components/formElements/labeledFormattedText/LabeledFormattedTextField.d.ts +7 -2
- package/dist/components/formElements/labeledText/LabeledTextField.d.ts +7 -1
- package/dist/components/taskManagement/TaskDetailPage.d.ts +1 -1
- package/dist/components/transactionDetail/items/journalEntryTable/FlexibleWidthContext.d.ts +2 -0
- package/dist/components/transactionDetail/items/journalEntryTable/TransactionLinesJournalEntryEmptyTable.d.ts +17 -0
- package/dist/components/transactionDetail/items/journalEntryTable/TransactionLinesJournalEntryTable.d.ts +2 -0
- package/dist/components/transactionDetail/items/journalEntryTable/common.d.ts +23 -0
- package/dist/components/transactionDetail/items/journalEntryTable/header/JournalEntryTableHeader.d.ts +11 -0
- package/dist/components/transactionDetail/items/journalEntryTable/header/journalEntryHeaderConfig.d.ts +28 -0
- package/dist/components/transactionDetail/items/journalEntryTable/header/journalEntryHeaderItemsData.d.ts +16 -0
- package/dist/components/transactionDetail/items/journalEntryTable/journalEntryTableStyles.d.ts +119 -0
- package/dist/components/transactionDetail/items/journalEntryTable/journalEntryTableTypes.d.ts +79 -0
- package/dist/components/transactionDetail/items/journalEntryTable/listRow/JournalEntryTableListRow.d.ts +40 -0
- package/dist/components/transactionDetail/items/journalEntryTable/totals/JournalEntryTotalsRow.d.ts +21 -0
- package/dist/components/transactionDetail/items/transactionLineTable/FlexibleWidthContext.d.ts +6 -0
- package/dist/components/transactionDetail/items/transactionLineTable/TransactionLinesEmptyTable.d.ts +11 -0
- package/dist/components/transactionDetail/items/transactionLineTable/TransactionLinesTable.d.ts +17 -0
- package/dist/components/transactionDetail/items/transactionLineTable/common.d.ts +32 -0
- package/dist/components/transactionDetail/items/transactionLineTable/header/TransactionLineTableHeader.d.ts +12 -0
- package/dist/components/transactionDetail/items/transactionLineTable/header/transactionLineHeaderConfig.d.ts +40 -0
- package/dist/components/transactionDetail/items/transactionLineTable/header/transactionLineHeaderItemsData.d.ts +19 -0
- package/dist/components/transactionDetail/items/transactionLineTable/listRow/TransactionLineTableListRow.d.ts +40 -0
- package/dist/components/transactionDetail/items/transactionLineTable/sortTransactionLines.d.ts +19 -0
- package/dist/components/transactionDetail/items/transactionLineTable/transactionLineTableStyles.d.ts +103 -0
- package/dist/components/transactionDetail/items/transactionLineTable/transactionLineTableTypes.d.ts +80 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +20 -20
- package/dist/strings/strings.d.ts +25 -9
- package/dist/testSetup.d.ts +0 -0
- package/dist/{vendor-.pnpm-C7TxM7W7.cjs → vendor-.pnpm-DuJMYp1y.cjs} +88 -88
- package/dist/{vendor-.pnpm-CSfLHWdE.js → vendor-.pnpm-XFVTbpbG.js} +5506 -5457
- package/package.json +2 -2
package/dist/appLocale.d.ts
CHANGED
|
@@ -2613,6 +2613,31 @@ declare class AppLocale {
|
|
|
2613
2613
|
allTypes: string;
|
|
2614
2614
|
allCustom: string;
|
|
2615
2615
|
recommendedCustom: string;
|
|
2616
|
+
journalEntryTable: {
|
|
2617
|
+
descriptionHeader: string;
|
|
2618
|
+
nameHeader: string;
|
|
2619
|
+
categoryHeader: string;
|
|
2620
|
+
classHeader: string;
|
|
2621
|
+
projectHeader: string;
|
|
2622
|
+
debitHeader: string;
|
|
2623
|
+
creditHeader: string;
|
|
2624
|
+
amountHeader: string;
|
|
2625
|
+
descriptionPlaceholder: string;
|
|
2626
|
+
debitPrefix: string;
|
|
2627
|
+
creditPrefix: string;
|
|
2628
|
+
emptyDash: string;
|
|
2629
|
+
emptyMessage: string;
|
|
2630
|
+
totalLabel: string;
|
|
2631
|
+
};
|
|
2632
|
+
transactionLineTable: {
|
|
2633
|
+
descriptionHeader: string;
|
|
2634
|
+
categoryHeader: string;
|
|
2635
|
+
classHeader: string;
|
|
2636
|
+
projectHeader: string;
|
|
2637
|
+
amountHeader: string;
|
|
2638
|
+
descriptionPlaceholder: string;
|
|
2639
|
+
emptyMessage: string;
|
|
2640
|
+
};
|
|
2616
2641
|
};
|
|
2617
2642
|
payeeDetails: {
|
|
2618
2643
|
allPayees: string;
|
|
@@ -3914,15 +3939,6 @@ declare class AppLocale {
|
|
|
3914
3939
|
aiAccountant: {
|
|
3915
3940
|
enrollmentStatus: string;
|
|
3916
3941
|
};
|
|
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
3942
|
healthMonitor: {
|
|
3927
3943
|
controller: string;
|
|
3928
3944
|
customerSuccessManager: string;
|