inviton-powerduck 0.0.65 → 0.0.68

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.
Files changed (74) hide show
  1. package/components/app/dynamic-component-container.tsx +1 -1
  2. package/components/app/root-dynamic-component-container.tsx +1 -1
  3. package/components/button/button.tsx +1 -1
  4. package/components/button/excel-upload-button.tsx +1 -1
  5. package/components/button/ladda-button.tsx +1 -1
  6. package/components/button/text-button.tsx +1 -1
  7. package/components/button/upload-button.tsx +1 -1
  8. package/components/card/card-body.tsx +1 -1
  9. package/components/card/card-header-with-options.tsx +1 -1
  10. package/components/card/card-header.tsx +1 -1
  11. package/components/card/card.tsx +1 -1
  12. package/components/collapse/index.tsx +1 -1
  13. package/components/contenteditable/index.tsx +1 -1
  14. package/components/context-menu/context-menu.tsx +1 -1
  15. package/components/counter/fetchdata.tsx +1 -1
  16. package/components/counter/index.tsx +1 -1
  17. package/components/datatable/col-vis-modal.tsx +1 -1
  18. package/components/datatable/export-excel-modal.tsx +1 -1
  19. package/components/datatable/filter-modal.tsx +1 -1
  20. package/components/dropdown/currency-code-picker.tsx +1 -1
  21. package/components/dropdown/image-dropdown.tsx +1 -1
  22. package/components/dropdown/language-picker.tsx +1 -1
  23. package/components/dropdown/timezone-picker.tsx +1 -1
  24. package/components/dropdown/ts/select2-multi-checkboxes.ts +238 -222
  25. package/components/dropdown-button/dropdown-button-element.tsx +1 -1
  26. package/components/dropdown-button/dropdown-button-heading.tsx +1 -1
  27. package/components/dropdown-button/dropdown-button-item.tsx +1 -1
  28. package/components/dropdown-button/dropdown-button-separator.tsx +1 -1
  29. package/components/dropdown-button/language-dropdown-button.tsx +1 -1
  30. package/components/file-downloader/index.tsx +1 -1
  31. package/components/form/footer-buttons.tsx +1 -1
  32. package/components/form/form.tsx +1 -1
  33. package/components/form/separator.tsx +1 -1
  34. package/components/form/validation-result-displayer.tsx +1 -1
  35. package/components/fullcalendar/fullcalendar-draggable-event.tsx +1 -1
  36. package/components/fullcalendar/timegrid-calendar.tsx +1 -1
  37. package/components/google/maps.tsx +1 -1
  38. package/components/highlight-js/index.tsx +1 -1
  39. package/components/home/index.tsx +1 -1
  40. package/components/html-literal/html-literal.tsx +1 -1
  41. package/components/image-crop/image-cropping-modal.tsx +1 -1
  42. package/components/image-crop/upload-and-crop.tsx +1 -1
  43. package/components/input/checkbox-without-label.tsx +1 -1
  44. package/components/input/geo-json.tsx +1 -1
  45. package/components/input/gps-input.tsx +1 -1
  46. package/components/loading-indicator/index.tsx +1 -1
  47. package/components/mobile-optimized-hero-filter/css/mobile-optimized-hero-filter.css +132 -0
  48. package/components/mobile-optimized-hero-filter/index.tsx +126 -0
  49. package/components/modal/animation-error.tsx +1 -1
  50. package/components/modal/animation-success.tsx +1 -1
  51. package/components/modal/icon-question.tsx +1 -1
  52. package/components/modal/icon-warning.tsx +1 -1
  53. package/components/modal/modal-body.tsx +1 -1
  54. package/components/modal/modal-footer.tsx +1 -1
  55. package/components/modal-wrap/modal-section-wrapper.tsx +1 -1
  56. package/components/modal-wrap/modal-subtitle.tsx +1 -1
  57. package/components/progress-bar/index.tsx +1 -1
  58. package/components/rating/rating-displayer.tsx +1 -1
  59. package/components/rating/rating-picker.tsx +1 -1
  60. package/components/share/share-modal.tsx +1 -1
  61. package/components/share/share.tsx +1 -1
  62. package/components/sortable/sortable-container.tsx +1 -1
  63. package/components/sortable/sortable-item.tsx +1 -1
  64. package/components/spreadsheet/spreadsheet.tsx +1 -1
  65. package/components/summary-stats/summary-stats.tsx +1 -1
  66. package/components/swiper/swiper-gallery.tsx +1 -1
  67. package/components/swiper/swiper-slide.tsx +1 -1
  68. package/components/swiper/swiper.tsx +1 -1
  69. package/components/table-wrapper/table-wrapper.tsx +1 -1
  70. package/components/tilebox/tilebox.tsx +1 -1
  71. package/components/tooltip/index.tsx +1 -1
  72. package/components/transition/index.tsx +1 -1
  73. package/components/wizard/wizard-subtitle.tsx +1 -1
  74. package/package.json +1 -1
@@ -85,5 +85,5 @@ class DynamicComponentContainerComponent extends Vue implements IDynamicComponen
85
85
  }
86
86
  }
87
87
 
88
- const DynamicComponentContainer = toNative(DynamicComponentContainerComponent)
88
+ const DynamicComponentContainer = toNative(DynamicComponentContainerComponent)
89
89
  export default DynamicComponentContainer
@@ -30,5 +30,5 @@ class RootDynamicComponentContainerComponent extends Vue implements IDynamicComp
30
30
  }
31
31
  }
32
32
 
33
- const RootDynamicComponentContainer = toNative(RootDynamicComponentContainerComponent)
33
+ const RootDynamicComponentContainer = toNative(RootDynamicComponentContainerComponent)
34
34
  export default RootDynamicComponentContainer
@@ -122,5 +122,5 @@ class ButtonComponent extends TsxComponent<ButtonArgs> implements ButtonArgs {
122
122
  }
123
123
  }
124
124
 
125
- const Button = toNative(ButtonComponent)
125
+ const Button = toNative(ButtonComponent)
126
126
  export default Button
@@ -55,5 +55,5 @@ class ExcelUploadButtonComponent extends TsxComponent<ExcelUploadButtonArgs> imp
55
55
  }
56
56
  }
57
57
 
58
- const ExcelUploadButton = toNative(ExcelUploadButtonComponent)
58
+ const ExcelUploadButton = toNative(ExcelUploadButtonComponent)
59
59
  export default ExcelUploadButton
@@ -61,5 +61,5 @@ class LaddaButtonComponent extends TsxComponent<LaddaButtonArgs> implements Ladd
61
61
  }
62
62
  }
63
63
 
64
- const LaddaButton = toNative(LaddaButtonComponent)
64
+ const LaddaButton = toNative(LaddaButtonComponent)
65
65
  export default LaddaButton
@@ -62,5 +62,5 @@ class TextButtonComponent extends TsxComponent<TextButtonArgs> implements TextBu
62
62
  }
63
63
  }
64
64
 
65
- const TextButton = toNative(TextButtonComponent)
65
+ const TextButton = toNative(TextButtonComponent)
66
66
  export default TextButton
@@ -176,5 +176,5 @@ class UploadButtonComponent extends TsxComponent<UploadButtonArgs> implements Up
176
176
  }
177
177
  }
178
178
 
179
- const UploadButton = toNative(UploadButtonComponent)
179
+ const UploadButton = toNative(UploadButtonComponent)
180
180
  export default UploadButton
@@ -9,5 +9,5 @@ class CardBodyComponent extends TsxComponent<CardBodyArgs> implements CardBodyAr
9
9
  }
10
10
  }
11
11
 
12
- const CardBody = toNative(CardBodyComponent)
12
+ const CardBody = toNative(CardBodyComponent)
13
13
  export default CardBody
@@ -54,5 +54,5 @@ class CardHeaderWithOptionsComponent extends TsxComponent<CardHeaderWithOptionsA
54
54
  }
55
55
  }
56
56
 
57
- const CardHeaderWithOptions = toNative(CardHeaderWithOptionsComponent)
57
+ const CardHeaderWithOptions = toNative(CardHeaderWithOptionsComponent)
58
58
  export default CardHeaderWithOptions
@@ -30,5 +30,5 @@ class CardHeaderComponent extends TsxComponent<CardHeaderArgs> implements CardHe
30
30
  }
31
31
  }
32
32
 
33
- const CardHeader = toNative(CardHeaderComponent)
33
+ const CardHeader = toNative(CardHeaderComponent)
34
34
  export default CardHeader
@@ -72,5 +72,5 @@ class CardComponent extends TsxComponent<CardArgs> implements CardArgs {
72
72
  }
73
73
  }
74
74
 
75
- const Card = toNative(CardComponent)
75
+ const Card = toNative(CardComponent)
76
76
  export default Card
@@ -39,5 +39,5 @@ class CollapseComponent extends TsxComponent<CollapseArgs> implements CollapseAr
39
39
  }
40
40
  }
41
41
 
42
- const Collapse = toNative(CollapseComponent)
42
+ const Collapse = toNative(CollapseComponent)
43
43
  export default Collapse
@@ -50,5 +50,5 @@ class ContentEditableComponent extends TsxComponent<ContentEditableArgs> impleme
50
50
  }
51
51
  }
52
52
 
53
- const ContentEditable = toNative(ContentEditableComponent)
53
+ const ContentEditable = toNative(ContentEditableComponent)
54
54
  export default ContentEditable
@@ -19,5 +19,5 @@ class ContextMenuComponent extends TsxComponent<ContextMenuArgs> implements Cont
19
19
  }
20
20
  }
21
21
 
22
- const ContextMenu = toNative(ContextMenuComponent)
22
+ const ContextMenu = toNative(ContextMenuComponent)
23
23
  export default ContextMenu
@@ -91,5 +91,5 @@ class FetchDataComponentComponent extends PowerduckViewModelBase {
91
91
  }
92
92
  }
93
93
 
94
- const FetchDataComponent = toNative(FetchDataComponentComponent)
94
+ const FetchDataComponent = toNative(FetchDataComponentComponent)
95
95
  export default FetchDataComponent
@@ -97,5 +97,5 @@ class CounterComponentComponent extends Vue {
97
97
  }
98
98
  }
99
99
 
100
- const CounterComponent = toNative(CounterComponentComponent)
100
+ const CounterComponent = toNative(CounterComponentComponent)
101
101
  export default CounterComponent
@@ -59,5 +59,5 @@ class ColVisModalComponent extends TsxComponent<ColVisModalArgs> implements ColV
59
59
  }
60
60
  }
61
61
 
62
- const ColVisModal = toNative(ColVisModalComponent)
62
+ const ColVisModal = toNative(ColVisModalComponent)
63
63
  export default ColVisModal
@@ -196,5 +196,5 @@ class TableExportModalComponent extends TsxComponent<TableExportModalBindingArgs
196
196
  }
197
197
  }
198
198
 
199
- const TableExportModal = toNative(TableExportModalComponent)
199
+ const TableExportModal = toNative(TableExportModalComponent)
200
200
  export default TableExportModal
@@ -168,5 +168,5 @@ class ColFilterModalComponent extends TsxComponent<ColFilterModalArgs> implement
168
168
  }
169
169
  }
170
170
 
171
- const ColFilterModal = toNative(ColFilterModalComponent)
171
+ const ColFilterModal = toNative(ColFilterModalComponent)
172
172
  export default ColFilterModal
@@ -57,5 +57,5 @@ class CurrencyCodePickerComponent extends TsxComponent<CurrencyCodePickerArgs> i
57
57
  }
58
58
  }
59
59
 
60
- const CurrencyCodePicker = toNative(CurrencyCodePickerComponent)
60
+ const CurrencyCodePicker = toNative(CurrencyCodePickerComponent)
61
61
  export default CurrencyCodePicker
@@ -237,5 +237,5 @@ class ImageDropdownComponent extends TsxComponent<ImageDropdownArgs> implements
237
237
  }
238
238
  }
239
239
 
240
- const ImageDropdown = toNative(ImageDropdownComponent)
240
+ const ImageDropdown = toNative(ImageDropdownComponent)
241
241
  export default ImageDropdown
@@ -76,5 +76,5 @@ class LanguagePickerComponent extends TsxComponent<LanguagePickerArgs> implement
76
76
  }
77
77
  }
78
78
 
79
- const LanguagePicker = toNative(LanguagePickerComponent)
79
+ const LanguagePicker = toNative(LanguagePickerComponent)
80
80
  export default LanguagePicker
@@ -289,5 +289,5 @@ class TimezonePickerComponent extends TsxComponent<TimezonePickerArgs> implement
289
289
  }
290
290
  }
291
291
 
292
- const TimezonePicker = toNative(TimezonePickerComponent)
292
+ const TimezonePicker = toNative(TimezonePickerComponent)
293
293
  export default TimezonePicker