inviton-powerduck 0.0.95 → 0.0.97
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/app/powerduck-system-resources.ts +76 -69
- package/common/date-wrapper.ts +316 -256
- package/common/utils/date-utils.ts +355 -0
- package/components/app/dynamic-component-container.tsx +1 -1
- package/components/app/root-dynamic-component-container.tsx +1 -1
- package/components/button/button-layout.ts +20 -3
- package/components/button/button.tsx +1 -1
- package/components/button/excel-upload-button.tsx +1 -1
- package/components/button/ladda-button.tsx +1 -1
- package/components/button/social-button.tsx +91 -0
- package/components/button/text-button.tsx +1 -1
- package/components/button/upload-button.tsx +1 -1
- package/components/card/card-body.tsx +1 -1
- package/components/card/card-header-with-options.tsx +1 -1
- package/components/card/card-header.tsx +1 -1
- package/components/card/card.tsx +1 -1
- package/components/collapse/index.tsx +1 -1
- package/components/contenteditable/index.tsx +1 -1
- package/components/context-menu/context-menu.tsx +1 -1
- package/components/counter/fetchdata.tsx +1 -1
- package/components/counter/index.tsx +1 -1
- package/components/datatable/col-vis-modal.tsx +1 -1
- package/components/datatable/filter-modal.tsx +1 -1
- package/components/dropdown-button/dropdown-button-element.tsx +1 -1
- package/components/dropdown-button/dropdown-button-heading.tsx +1 -1
- package/components/dropdown-button/dropdown-button-item.tsx +1 -1
- package/components/dropdown-button/dropdown-button-separator.tsx +1 -1
- package/components/dropdown-button/language-dropdown-button.tsx +1 -1
- package/components/file-downloader/index.tsx +1 -1
- package/components/form/footer-buttons.tsx +1 -1
- package/components/form/form.tsx +1 -1
- package/components/form/separator.tsx +1 -1
- package/components/form/validation-result-displayer.tsx +1 -1
- package/components/fullcalendar/fullcalendar-draggable-event.tsx +1 -1
- package/components/fullcalendar/timegrid-calendar.tsx +1 -1
- package/components/google/maps.tsx +1 -1
- package/components/highlight-js/index.tsx +1 -1
- package/components/home/index.tsx +1 -1
- package/components/html-literal/html-literal.tsx +1 -1
- package/components/image-crop/image-cropping-modal.tsx +1 -1
- package/components/image-crop/upload-and-crop.tsx +1 -1
- package/components/input/checkbox-without-label.tsx +1 -1
- package/components/input/daterange-picker.tsx +465 -446
- package/components/input/geo-json.tsx +1 -1
- package/components/input/plugins/daterangepicker/jquery.daterangepicker.ts +2046 -1923
- package/components/loading-indicator/index.tsx +1 -1
- package/components/modal/modal-body.tsx +1 -1
- package/components/modal/modal-footer.tsx +1 -1
- package/components/modal-wrap/modal-section-wrapper.tsx +1 -1
- package/components/modal-wrap/modal-subtitle.tsx +1 -1
- package/components/progress-bar/index.tsx +21 -12
- package/components/rating/rating-displayer.tsx +1 -1
- package/components/rating/rating-picker.tsx +1 -1
- package/components/share/share-modal.tsx +1 -1
- package/components/share/share.tsx +1 -1
- package/components/sortable/sortable-container.tsx +1 -1
- package/components/sortable/sortable-item.tsx +1 -1
- package/components/spreadsheet/spreadsheet.tsx +1 -1
- package/components/summary-stats/summary-stats.tsx +1 -1
- package/components/swiper/swiper-gallery.tsx +1 -1
- package/components/swiper/swiper-slide.tsx +1 -1
- package/components/swiper/swiper.tsx +1 -1
- package/components/table-wrapper/table-wrapper.tsx +1 -1
- package/components/tilebox/tilebox.tsx +1 -1
- package/components/tooltip/index.tsx +1 -1
- package/components/transition/index.tsx +1 -1
- package/components/wizard/wizard-subtitle.tsx +1 -1
- package/package.json +1 -1
|
@@ -1,79 +1,86 @@
|
|
|
1
1
|
export interface IPowerduckSystemResources {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
2
|
+
requestTimeout: string
|
|
3
|
+
yes: string
|
|
4
|
+
no: string;
|
|
5
|
+
all: string
|
|
6
|
+
add: string
|
|
7
|
+
error: string
|
|
8
|
+
errorFetchingData: string
|
|
9
|
+
allTogether: string;
|
|
10
|
+
edit: string
|
|
11
|
+
remove: string
|
|
12
|
+
warning: string
|
|
13
|
+
cancel: string
|
|
14
|
+
negationBase: string
|
|
15
|
+
continue: string
|
|
16
|
+
back: string
|
|
17
|
+
submit: string
|
|
18
|
+
close: string
|
|
19
|
+
save: string
|
|
20
|
+
search: string
|
|
21
|
+
searchedValue: string
|
|
22
|
+
image: string
|
|
23
|
+
noResultsFound: string
|
|
24
|
+
colVisLabel: string
|
|
25
|
+
deletePromptSingular: string
|
|
26
|
+
dtMassOperationWarningText: string
|
|
27
|
+
dtLayoutMobile: string
|
|
28
|
+
dtLayoutTable: string
|
|
29
|
+
dtLayoutCompact: string
|
|
30
|
+
recordsDtLabel: string
|
|
31
|
+
dtCountText: string
|
|
32
|
+
dtCountFilteredOutOf: string
|
|
33
|
+
dtNoMobileFilter: string
|
|
34
|
+
dtOnlyExclusive: string
|
|
35
|
+
itemsOutOfArray: string
|
|
36
|
+
fileDownloadTitle: string
|
|
37
|
+
imageCrop: string
|
|
38
|
+
uploadImage: string
|
|
39
|
+
copyToClipboard: string
|
|
40
|
+
copyToClipboardSuccess: string
|
|
41
|
+
loginExpired: string
|
|
42
|
+
gpsLabel: string
|
|
43
|
+
gpsSubtitle: string
|
|
44
|
+
gpsLatitudeCaption: string
|
|
45
|
+
gpsLongitudeCaption: string
|
|
46
|
+
currencyCode: string
|
|
47
|
+
photosErrorMessage: string
|
|
48
|
+
photosInitialMessage: string
|
|
49
|
+
photosInvalidFileMessage: string
|
|
50
|
+
quickEdit: string
|
|
51
|
+
quickEditItemsCount: string
|
|
52
|
+
quickEditErrorNamed: string
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
54
|
+
languageSK: string;
|
|
55
|
+
languageEN: string;
|
|
56
|
+
languageCS: string;
|
|
57
|
+
languageDE: string;
|
|
58
|
+
languagePL: string;
|
|
59
|
+
languageIT: string;
|
|
60
|
+
languageHU: string;
|
|
61
61
|
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
errorsOnForm: string;
|
|
63
|
+
validationErrorRequired: string;
|
|
64
64
|
validationErrorNumeric: string;
|
|
65
65
|
validationErrorInteger: string;
|
|
66
66
|
validationErrorDecimal: string;
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
67
|
+
validationErrorMinValue: string;
|
|
68
|
+
validationErrorMaxValue: string;
|
|
69
|
+
validationErrorMinLength: string;
|
|
70
|
+
validationErrorMaxLength: string;
|
|
71
|
+
validationErrorBetween: string;
|
|
72
|
+
validationErrorEmail: string;
|
|
73
|
+
validationErrorAlpha: string;
|
|
74
|
+
validationErrorAlphaNum: string;
|
|
75
75
|
validationErrorUrl: string;
|
|
76
76
|
validationErrorIpAddress: string;
|
|
77
77
|
validationErrorMacAddress: string;
|
|
78
|
-
|
|
78
|
+
validationErrorGeneric: string;
|
|
79
|
+
|
|
80
|
+
signInGoogle: string;
|
|
81
|
+
signInFacebook: string;
|
|
82
|
+
signInApple: string;
|
|
83
|
+
signInX: string;
|
|
84
|
+
signInFigma: string;
|
|
85
|
+
signInDribble: string;
|
|
79
86
|
}
|