@watermarkinsights/ripple 0.0.0 → 0.1.0-alpha.0
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/LICENSE +21 -0
- package/README.md +1 -1
- package/dist/cjs/app-globals-f836e216.js +103 -0
- package/dist/cjs/chartFunctions-608adb05.js +908 -0
- package/dist/cjs/{functions-f2333f02.js → functions-b188d5b3.js} +6137 -1590
- package/dist/cjs/index-786066a1.js +1880 -0
- package/dist/cjs/interfaces-8419be91.js +59 -0
- package/dist/cjs/intl-01531391.js +283 -0
- package/dist/cjs/loader.cjs.js +7 -14
- package/dist/cjs/priv-calendar.cjs.entry.js +608 -0
- package/dist/cjs/priv-chart-popover-old.cjs.entry.js +146 -0
- package/dist/cjs/priv-chart-popover_2.cjs.entry.js +194 -0
- package/dist/cjs/priv-navigator-button.cjs.entry.js +19 -19
- package/dist/cjs/priv-navigator-item.cjs.entry.js +24 -23
- package/dist/cjs/priv-option-list.cjs.entry.js +391 -0
- package/dist/cjs/ripple.cjs.js +25 -0
- package/dist/cjs/wm-action-menu_2.cjs.entry.js +471 -302
- package/dist/cjs/wm-button.cjs.entry.js +263 -142
- package/dist/cjs/wm-chart-bar.cjs.entry.js +441 -0
- package/dist/cjs/wm-chart-column.cjs.entry.js +544 -0
- package/dist/cjs/wm-chart-slice.cjs.entry.js +17 -12
- package/dist/cjs/wm-chart.cjs.entry.js +133 -478
- package/dist/cjs/wm-date-range.cjs.entry.js +526 -0
- package/dist/cjs/wm-datepicker.cjs.entry.js +285 -224
- package/dist/cjs/wm-file-list.cjs.entry.js +23 -0
- package/dist/cjs/wm-file.cjs.entry.js +210 -0
- package/dist/cjs/wm-flyout.cjs.entry.js +181 -0
- package/dist/cjs/wm-input.cjs.entry.js +121 -100
- package/dist/cjs/wm-line-chart.cjs.entry.js +541 -0
- package/dist/cjs/wm-modal-pss_3.cjs.entry.js +220 -0
- package/dist/cjs/wm-modal_3.cjs.entry.js +223 -0
- package/dist/cjs/wm-navigation_3.cjs.entry.js +188 -0
- package/dist/cjs/wm-navigator.cjs.entry.js +305 -250
- package/dist/cjs/wm-nested-select.cjs.entry.js +320 -0
- package/dist/cjs/wm-optgroup.cjs.entry.js +74 -0
- package/dist/cjs/wm-option_2.cjs.entry.js +517 -465
- package/dist/cjs/wm-pagination.cjs.entry.js +218 -165
- package/dist/cjs/wm-progress-indicator_3.cjs.entry.js +204 -0
- package/dist/cjs/wm-search.cjs.entry.js +182 -217
- package/dist/cjs/wm-snackbar.cjs.entry.js +158 -142
- package/dist/cjs/wm-tab-item_3.cjs.entry.js +317 -276
- package/dist/cjs/wm-tag-input.cjs.entry.js +940 -500
- package/dist/cjs/wm-tag-option.cjs.entry.js +43 -0
- package/dist/cjs/wm-textarea.cjs.entry.js +94 -0
- package/dist/cjs/wm-timepicker.cjs.entry.js +276 -349
- package/dist/cjs/wm-toggletip.cjs.entry.js +238 -114
- package/dist/cjs/wm-uploader.cjs.entry.js +322 -323
- package/dist/cjs/wm-wrapper.cjs.entry.js +12 -12
- package/dist/collection/collection-manifest.json +104 -34
- package/dist/collection/components/charts/chartFunctions.js +833 -0
- package/dist/collection/components/charts/priv-chart-popover/priv-chart-popover.css +995 -0
- package/dist/collection/components/charts/priv-chart-popover/priv-chart-popover.js +340 -0
- package/dist/collection/components/charts/priv-chart-popover-old/priv-chart-popover-old.css +990 -0
- package/dist/collection/components/charts/priv-chart-popover-old/priv-chart-popover-old.js +263 -0
- package/dist/collection/components/charts/wm-chart/wm-chart-slice.js +125 -0
- package/dist/collection/components/charts/wm-chart/wm-chart.css +1326 -0
- package/dist/collection/components/charts/wm-chart/wm-chart.js +422 -0
- package/dist/collection/components/charts/wm-chart-bar/wm-chart-bar.css +1116 -0
- package/dist/collection/components/charts/wm-chart-bar/wm-chart-bar.js +579 -0
- package/dist/collection/components/charts/wm-chart-column/wm-chart-column.css +1169 -0
- package/dist/collection/components/charts/wm-chart-column/wm-chart-column.js +688 -0
- package/dist/collection/components/charts/wm-chart-legend/wm-chart-legend.css +932 -0
- package/dist/collection/components/charts/wm-chart-legend/wm-chart-legend.js +194 -0
- package/dist/collection/components/charts/wm-line-chart/wm-line-chart.css +1208 -0
- package/dist/collection/components/charts/wm-line-chart/wm-line-chart.js +862 -0
- package/dist/collection/components/charts/wm-progress-monitor/wm-progress-indicator.css +1326 -0
- package/dist/collection/components/charts/wm-progress-monitor/wm-progress-indicator.js +264 -0
- package/dist/collection/components/charts/wm-progress-monitor/wm-progress-monitor.css +967 -0
- package/dist/collection/components/charts/wm-progress-monitor/wm-progress-monitor.js +151 -0
- package/dist/collection/components/charts/wm-progress-monitor/wm-progress-slice.js +121 -0
- package/dist/collection/components/datepickers/datepicker.css +1137 -0
- package/dist/collection/components/datepickers/priv-calendar/priv-calendar.css +1403 -0
- package/dist/collection/components/datepickers/priv-calendar/priv-calendar.js +881 -0
- package/dist/collection/components/datepickers/wm-date-range.js +870 -0
- package/dist/collection/components/datepickers/wm-datepicker.js +579 -0
- package/dist/collection/components/selects/priv-option-list/priv-option-list.css +999 -0
- package/dist/collection/components/selects/priv-option-list/priv-option-list.js +778 -0
- package/dist/collection/components/selects/wm-nested-select/wm-nested-select.css +1259 -0
- package/dist/collection/components/selects/wm-nested-select/wm-nested-select.js +626 -0
- package/dist/collection/components/selects/wm-optgroup/wm-optgroup.css +909 -0
- package/dist/collection/components/selects/wm-optgroup/wm-optgroup.js +258 -0
- package/dist/collection/components/selects/wm-option/wm-option.css +1033 -0
- package/dist/collection/components/selects/wm-option/wm-option.js +530 -0
- package/dist/collection/components/selects/wm-select/wm-select.css +1187 -0
- package/dist/collection/components/selects/wm-select/wm-select.js +705 -0
- package/dist/collection/components/wm-action-menu/wm-action-menu.css +1614 -50
- package/dist/collection/components/wm-action-menu/wm-action-menu.js +605 -387
- package/dist/collection/components/wm-button/wm-button.css +1440 -385
- package/dist/collection/components/wm-button/wm-button.js +538 -348
- package/dist/collection/components/wm-file/wm-file.css +1086 -0
- package/dist/collection/components/wm-file/wm-file.js +428 -0
- package/dist/collection/components/wm-file-list/wm-file-list.css +899 -0
- package/dist/collection/components/wm-file-list/wm-file-list.js +45 -0
- package/dist/collection/components/wm-flyout/wm-flyout.css +1117 -0
- package/dist/collection/components/wm-flyout/wm-flyout.js +449 -0
- package/dist/collection/components/wm-input/wm-input.css +965 -96
- package/dist/collection/components/wm-input/wm-input.js +466 -291
- package/dist/collection/components/wm-menuitem/wm-menuitem.css +919 -55
- package/dist/collection/components/wm-menuitem/wm-menuitem.js +402 -397
- package/dist/collection/components/wm-modal/wm-modal-footer.css +871 -28
- package/dist/collection/components/wm-modal/wm-modal-footer.js +139 -156
- package/dist/collection/components/wm-modal/wm-modal-header.css +864 -16
- package/dist/collection/components/wm-modal/wm-modal-header.js +76 -106
- package/dist/collection/components/wm-modal/wm-modal.css +921 -93
- package/dist/collection/components/wm-modal/wm-modal.js +337 -337
- package/dist/collection/components/wm-modal-pss/wm-modal-pss-footer.css +931 -0
- package/dist/collection/components/wm-modal-pss/wm-modal-pss-footer.js +138 -0
- package/dist/collection/components/wm-modal-pss/wm-modal-pss-header.css +925 -0
- package/dist/collection/components/wm-modal-pss/wm-modal-pss-header.js +82 -0
- package/dist/collection/components/wm-modal-pss/wm-modal-pss.css +1007 -0
- package/dist/collection/components/wm-modal-pss/wm-modal-pss.js +365 -0
- package/dist/collection/components/wm-navigation/wm-navigation-hamburger.css +926 -0
- package/dist/collection/components/wm-navigation/wm-navigation-hamburger.js +119 -0
- package/dist/collection/components/wm-navigation/wm-navigation-item.css +935 -0
- package/dist/collection/components/wm-navigation/wm-navigation-item.js +98 -0
- package/dist/collection/components/wm-navigation/wm-navigation.css +977 -0
- package/dist/collection/components/wm-navigation/wm-navigation.js +190 -0
- package/dist/collection/components/wm-navigator/priv-navigator-button/priv-navigator-button.css +868 -33
- package/dist/collection/components/wm-navigator/priv-navigator-button/priv-navigator-button.js +83 -94
- package/dist/collection/components/wm-navigator/priv-navigator-item/priv-navigator-item.css +876 -25
- package/dist/collection/components/wm-navigator/priv-navigator-item/priv-navigator-item.js +120 -110
- package/dist/collection/components/wm-navigator/wm-navigator.css +891 -38
- package/dist/collection/components/wm-navigator/wm-navigator.js +491 -456
- package/dist/collection/components/wm-pagination/wm-pagination.css +895 -68
- package/dist/collection/components/wm-pagination/wm-pagination.js +374 -340
- package/dist/collection/components/wm-search/wm-search.css +895 -73
- package/dist/collection/components/wm-search/wm-search.js +411 -421
- package/dist/collection/components/wm-snackbar/wm-snackbar.css +979 -160
- package/dist/collection/components/wm-snackbar/wm-snackbar.js +258 -235
- package/dist/collection/components/wm-tabs/wm-tab-item/wm-tab-item.css +904 -50
- package/dist/collection/components/wm-tabs/wm-tab-item/wm-tab-item.js +162 -198
- package/dist/collection/components/wm-tabs/wm-tab-list/wm-tab-list.css +922 -29
- package/dist/collection/components/wm-tabs/wm-tab-list/wm-tab-list.js +334 -292
- package/dist/collection/components/wm-tabs/wm-tab-panel/wm-tab-panel.css +862 -13
- package/dist/collection/components/wm-tabs/wm-tab-panel/wm-tab-panel.js +83 -100
- package/dist/collection/components/wm-tag-input/wm-tag-input.css +1212 -200
- package/dist/collection/components/wm-tag-input/wm-tag-input.js +1283 -702
- package/dist/collection/components/wm-tag-input/wm-tag-option/wm-tag-option.js +243 -0
- package/dist/collection/components/wm-textarea/wm-textarea.css +1065 -0
- package/dist/collection/components/wm-textarea/wm-textarea.js +319 -0
- package/dist/collection/components/wm-timepicker/wm-timepicker.css +962 -168
- package/dist/collection/components/wm-timepicker/wm-timepicker.js +539 -553
- package/dist/collection/components/wm-toggletip/wm-toggletip.css +1094 -148
- package/dist/collection/components/wm-toggletip/wm-toggletip.js +370 -211
- package/dist/collection/components/wm-uploader/wm-uploader.css +1756 -438
- package/dist/collection/components/wm-uploader/wm-uploader.js +607 -661
- package/dist/collection/components/wm-wrapper/wm-wrapper.js +26 -25
- package/dist/collection/dev/action-menu.js +18 -0
- package/dist/collection/dev/chart-bar.js +423 -0
- package/dist/collection/dev/chart-column.js +437 -0
- package/dist/collection/dev/chart-small.js +56 -0
- package/dist/collection/dev/chart.js +18 -0
- package/dist/collection/dev/date-range.js +6 -0
- package/dist/collection/dev/datepicker.js +46 -0
- package/dist/collection/dev/file-list.js +16 -0
- package/dist/collection/dev/file.js +0 -0
- package/dist/collection/dev/flyout.js +194 -0
- package/dist/collection/dev/input.js +6 -0
- package/dist/collection/dev/line-chart.js +45 -0
- package/dist/collection/dev/modal.js +48 -0
- package/dist/collection/dev/navigation.js +13 -0
- package/dist/collection/dev/navigator.js +34 -0
- package/dist/collection/dev/nested-select.js +36 -0
- package/dist/collection/dev/pagination.js +7 -0
- package/dist/collection/dev/progress-monitor.js +0 -0
- package/dist/collection/dev/pss-modal.js +8 -0
- package/dist/collection/dev/scripts.js +43 -14
- package/dist/collection/dev/search.js +72 -0
- package/dist/collection/dev/select.js +57 -0
- package/dist/collection/dev/snackbar.js +68 -0
- package/dist/collection/dev/tabs.js +44 -0
- package/dist/collection/dev/tag-input.js +32 -0
- package/dist/collection/dev/textarea.js +28 -0
- package/dist/collection/dev/timepicker.js +32 -0
- package/dist/collection/dev/toggletip.js +9 -0
- package/dist/collection/dev/uploader.js +139 -0
- package/dist/collection/global/__mocks__/functions.js +2 -1
- package/dist/collection/global/functions.js +853 -371
- package/dist/collection/global/global.js +88 -28
- package/dist/collection/global/interfaces.js +62 -39
- package/dist/collection/global/intl.js +274 -0
- package/dist/collection/global/services/__mocks__/http-service.js +112 -112
- package/dist/collection/global/services/http-service.js +41 -41
- package/dist/collection/lang/missing.js +43 -0
- package/dist/collection/lang/piglatin.js +11 -3
- package/dist/esm/app-globals-d0ca31a6.js +101 -0
- package/dist/esm/chartFunctions-4bc77b76.js +883 -0
- package/dist/esm/{functions-60034bf7.js → functions-de887809.js} +6110 -1584
- package/dist/esm/index-ef50bc01.js +1849 -0
- package/dist/esm/interfaces-7e50d034.js +55 -0
- package/dist/esm/intl-56b47a7b.js +277 -0
- package/dist/esm/loader.js +7 -14
- package/dist/esm/priv-calendar.entry.js +604 -0
- package/dist/esm/priv-chart-popover-old.entry.js +142 -0
- package/dist/esm/priv-chart-popover_2.entry.js +189 -0
- package/dist/esm/priv-navigator-button.entry.js +19 -19
- package/dist/esm/priv-navigator-item.entry.js +24 -23
- package/dist/esm/priv-option-list.entry.js +387 -0
- package/dist/esm/ripple.js +20 -0
- package/dist/esm/wm-action-menu_2.entry.js +471 -302
- package/dist/esm/wm-button.entry.js +263 -142
- package/dist/esm/wm-chart-bar.entry.js +437 -0
- package/dist/esm/wm-chart-column.entry.js +540 -0
- package/dist/esm/wm-chart-slice.entry.js +17 -12
- package/dist/esm/wm-chart.entry.js +133 -478
- package/dist/esm/wm-date-range.entry.js +522 -0
- package/dist/esm/wm-datepicker.entry.js +285 -224
- package/dist/esm/wm-file-list.entry.js +19 -0
- package/dist/esm/wm-file.entry.js +206 -0
- package/dist/esm/wm-flyout.entry.js +177 -0
- package/dist/esm/wm-input.entry.js +121 -100
- package/dist/esm/wm-line-chart.entry.js +537 -0
- package/dist/esm/wm-modal-pss_3.entry.js +214 -0
- package/dist/esm/wm-modal_3.entry.js +217 -0
- package/dist/esm/wm-navigation_3.entry.js +182 -0
- package/dist/esm/wm-navigator.entry.js +305 -250
- package/dist/esm/wm-nested-select.entry.js +316 -0
- package/dist/esm/wm-optgroup.entry.js +70 -0
- package/dist/esm/wm-option_2.entry.js +517 -465
- package/dist/esm/wm-pagination.entry.js +218 -165
- package/dist/esm/wm-progress-indicator_3.entry.js +198 -0
- package/dist/esm/wm-search.entry.js +182 -217
- package/dist/esm/wm-snackbar.entry.js +158 -142
- package/dist/esm/wm-tab-item_3.entry.js +317 -276
- package/dist/esm/wm-tag-input.entry.js +940 -500
- package/dist/esm/wm-tag-option.entry.js +39 -0
- package/dist/esm/wm-textarea.entry.js +90 -0
- package/dist/esm/wm-timepicker.entry.js +276 -349
- package/dist/esm/wm-toggletip.entry.js +238 -114
- package/dist/esm/wm-uploader.entry.js +322 -323
- package/dist/esm/wm-wrapper.entry.js +12 -12
- package/dist/esm-es5/app-globals-d0ca31a6.js +1 -0
- package/dist/esm-es5/chartFunctions-4bc77b76.js +1 -0
- package/dist/esm-es5/functions-de887809.js +1 -0
- package/dist/esm-es5/index-ef50bc01.js +1 -0
- package/dist/esm-es5/index.js +0 -0
- package/dist/esm-es5/interfaces-7e50d034.js +1 -0
- package/dist/esm-es5/intl-56b47a7b.js +1 -0
- package/dist/esm-es5/loader.js +1 -0
- package/dist/esm-es5/priv-calendar.entry.js +1 -0
- package/dist/esm-es5/priv-chart-popover-old.entry.js +1 -0
- package/dist/esm-es5/priv-chart-popover_2.entry.js +1 -0
- package/dist/esm-es5/priv-navigator-button.entry.js +1 -0
- package/dist/esm-es5/priv-navigator-item.entry.js +1 -0
- package/dist/esm-es5/priv-option-list.entry.js +1 -0
- package/dist/esm-es5/ripple.js +1 -0
- package/dist/esm-es5/wm-action-menu_2.entry.js +1 -0
- package/dist/esm-es5/wm-button.entry.js +1 -0
- package/dist/esm-es5/wm-chart-bar.entry.js +1 -0
- package/dist/esm-es5/wm-chart-column.entry.js +1 -0
- package/dist/esm-es5/wm-chart-slice.entry.js +1 -0
- package/dist/esm-es5/wm-chart.entry.js +1 -0
- package/dist/esm-es5/wm-date-range.entry.js +1 -0
- package/dist/esm-es5/wm-datepicker.entry.js +1 -0
- package/dist/esm-es5/wm-file-list.entry.js +1 -0
- package/dist/esm-es5/wm-file.entry.js +1 -0
- package/dist/esm-es5/wm-flyout.entry.js +1 -0
- package/dist/esm-es5/wm-input.entry.js +1 -0
- package/dist/esm-es5/wm-line-chart.entry.js +1 -0
- package/dist/esm-es5/wm-modal-pss_3.entry.js +1 -0
- package/dist/esm-es5/wm-modal_3.entry.js +1 -0
- package/dist/esm-es5/wm-navigation_3.entry.js +1 -0
- package/dist/esm-es5/wm-navigator.entry.js +1 -0
- package/dist/esm-es5/wm-nested-select.entry.js +1 -0
- package/dist/esm-es5/wm-optgroup.entry.js +1 -0
- package/dist/esm-es5/wm-option_2.entry.js +1 -0
- package/dist/esm-es5/wm-pagination.entry.js +1 -0
- package/dist/esm-es5/wm-progress-indicator_3.entry.js +1 -0
- package/dist/esm-es5/wm-search.entry.js +1 -0
- package/dist/esm-es5/wm-snackbar.entry.js +1 -0
- package/dist/esm-es5/wm-tab-item_3.entry.js +1 -0
- package/dist/esm-es5/wm-tag-input.entry.js +1 -0
- package/dist/esm-es5/wm-tag-option.entry.js +1 -0
- package/dist/esm-es5/wm-textarea.entry.js +1 -0
- package/dist/esm-es5/wm-timepicker.entry.js +1 -0
- package/dist/esm-es5/wm-toggletip.entry.js +1 -0
- package/dist/esm-es5/wm-uploader.entry.js +1 -0
- package/dist/esm-es5/wm-wrapper.entry.js +1 -0
- package/dist/index.js +1 -1
- package/dist/loader/cdn.js +1 -2
- package/dist/loader/index.cjs.js +1 -2
- package/dist/loader/index.d.ts +13 -2
- package/dist/loader/index.es2017.js +1 -2
- package/dist/loader/index.js +1 -2
- package/dist/loader/package.json +2 -1
- package/dist/ripple/index.esm.js +0 -0
- package/dist/ripple/p-03a6850a.entry.js +1 -0
- package/dist/ripple/p-0c3162d5.system.entry.js +1 -0
- package/dist/ripple/p-0ec71f08.system.entry.js +1 -0
- package/dist/ripple/p-1032c0db.system.entry.js +1 -0
- package/dist/ripple/p-117c3d78.system.js +2 -0
- package/dist/ripple/p-12024d3b.system.entry.js +1 -0
- package/dist/ripple/p-13152ac1.system.entry.js +1 -0
- package/dist/ripple/p-1318ae67.entry.js +1 -0
- package/dist/ripple/p-137bf0c0.system.entry.js +1 -0
- package/dist/ripple/p-13bb6faf.entry.js +1 -0
- package/dist/ripple/p-16ff8110.entry.js +1 -0
- package/dist/ripple/p-1825d519.system.entry.js +1 -0
- package/dist/ripple/p-18417851.entry.js +1 -0
- package/dist/ripple/p-1c655f6b.entry.js +1 -0
- package/dist/ripple/p-1ce77857.system.entry.js +1 -0
- package/dist/ripple/p-1d76061a.entry.js +1 -0
- package/dist/ripple/p-22b57f73.system.entry.js +1 -0
- package/dist/ripple/p-24dfbf1d.system.entry.js +1 -0
- package/dist/ripple/p-28996d67.system.entry.js +1 -0
- package/dist/ripple/p-30118d12.system.entry.js +1 -0
- package/dist/ripple/p-32f3581a.entry.js +1 -0
- package/dist/ripple/p-334d8711.system.js +1 -0
- package/dist/ripple/p-3c8c5933.js +1 -0
- package/dist/ripple/p-436bf381.system.entry.js +1 -0
- package/dist/ripple/p-43843597.system.entry.js +1 -0
- package/dist/ripple/p-45999149.system.js +1 -0
- package/dist/ripple/p-48b596ae.entry.js +1 -0
- package/dist/ripple/p-4bab5360.system.js +1 -0
- package/dist/ripple/p-4ff0db4d.entry.js +1 -0
- package/dist/ripple/p-50ea2036.system.js +1 -0
- package/dist/ripple/p-57f1bafd.system.entry.js +1 -0
- package/dist/ripple/p-5b0e9165.entry.js +1 -0
- package/dist/ripple/p-6266fcbf.system.entry.js +1 -0
- package/dist/ripple/p-646e22d3.system.entry.js +1 -0
- package/dist/ripple/p-6950e8ed.system.js +1 -0
- package/dist/ripple/p-6c6da5db.entry.js +1 -0
- package/dist/ripple/p-6d2af8d9.system.entry.js +1 -0
- package/dist/ripple/p-6d46f775.system.entry.js +1 -0
- package/dist/ripple/p-6de0efee.entry.js +1 -0
- package/dist/ripple/p-7833db63.entry.js +1 -0
- package/dist/ripple/p-7b7c32af.entry.js +1 -0
- package/dist/ripple/p-817aa29c.entry.js +1 -0
- package/dist/ripple/p-82c9bd47.entry.js +1 -0
- package/dist/ripple/p-8480138d.entry.js +1 -0
- package/dist/ripple/p-85ef702d.entry.js +1 -0
- package/dist/ripple/p-86bcd942.system.entry.js +1 -0
- package/dist/ripple/p-8799bce9.entry.js +1 -0
- package/dist/ripple/p-8ac14bb1.system.js +1 -0
- package/dist/ripple/p-8dcc8c0c.entry.js +1 -0
- package/dist/ripple/p-8fa572a8.entry.js +1 -0
- package/dist/ripple/p-904545cc.js +1 -0
- package/dist/ripple/p-90cb5d27.system.entry.js +1 -0
- package/dist/ripple/p-9202ef69.system.entry.js +1 -0
- package/dist/ripple/p-9f971522.system.entry.js +1 -0
- package/dist/ripple/p-a5dc49c1.system.entry.js +1 -0
- package/dist/ripple/p-a73fb160.system.entry.js +1 -0
- package/dist/ripple/p-a9580e7a.system.entry.js +1 -0
- package/dist/ripple/p-b04a6351.entry.js +1 -0
- package/dist/ripple/p-b09998e1.entry.js +1 -0
- package/dist/ripple/p-b3a86ec4.system.entry.js +1 -0
- package/dist/ripple/p-b501f06c.entry.js +1 -0
- package/dist/ripple/p-b957033b.entry.js +1 -0
- package/dist/ripple/p-c2258438.entry.js +1 -0
- package/dist/ripple/p-ca3abcc0.system.entry.js +1 -0
- package/dist/ripple/p-cc455a6c.system.entry.js +1 -0
- package/dist/ripple/p-cda66d45.js +1 -0
- package/dist/ripple/p-cde2ca4d.system.entry.js +1 -0
- package/dist/ripple/p-cdf9c0e9.entry.js +1 -0
- package/dist/ripple/p-d0858afa.js +2 -0
- package/dist/ripple/p-d37f8f66.js +1 -0
- package/dist/ripple/p-d4ae193e.js +1 -0
- package/dist/ripple/p-d4d769a7.system.js +1 -0
- package/dist/ripple/p-d6a9000f.system.entry.js +1 -0
- package/dist/ripple/p-d6cd9f79.entry.js +1 -0
- package/dist/ripple/p-d9e4335e.entry.js +1 -0
- package/dist/ripple/p-dadf3ed3.entry.js +1 -0
- package/dist/ripple/p-dc3684b5.entry.js +1 -0
- package/dist/ripple/p-dca94e24.entry.js +1 -0
- package/dist/ripple/p-dcd6acc5.system.entry.js +1 -0
- package/dist/ripple/p-dd81e308.entry.js +1 -0
- package/dist/ripple/p-e11d9b06.system.entry.js +1 -0
- package/dist/ripple/p-e36e71dc.system.entry.js +1 -0
- package/dist/ripple/p-e6a81600.entry.js +1 -0
- package/dist/ripple/p-ef7d84da.system.entry.js +1 -0
- package/dist/ripple/p-f1de3153.entry.js +1 -0
- package/dist/ripple/p-f3e84476.system.entry.js +1 -0
- package/dist/ripple/p-f4d27fea.system.entry.js +1 -0
- package/dist/ripple/p-fcf4bd61.system.entry.js +1 -0
- package/dist/ripple/p-fd02c124.entry.js +1 -0
- package/dist/ripple/p-ffa20853.entry.js +1 -0
- package/dist/ripple/ripple.esm.js +1 -0
- package/dist/ripple/ripple.js +127 -0
- package/dist/types/components/charts/chartFunctions.d.ts +54 -0
- package/dist/types/components/charts/priv-chart-popover/priv-chart-popover.d.ts +35 -0
- package/dist/types/components/charts/priv-chart-popover-old/priv-chart-popover-old.d.ts +26 -0
- package/dist/types/components/charts/wm-chart/wm-chart-slice.d.ts +11 -0
- package/dist/types/components/charts/wm-chart/wm-chart.d.ts +44 -0
- package/dist/types/components/charts/wm-chart-bar/wm-chart-bar.d.ts +62 -0
- package/dist/types/components/charts/wm-chart-column/wm-chart-column.d.ts +73 -0
- package/dist/types/components/charts/wm-chart-legend/wm-chart-legend.d.ts +26 -0
- package/dist/types/components/charts/wm-line-chart/wm-line-chart.d.ts +87 -0
- package/dist/types/components/charts/wm-progress-monitor/wm-progress-indicator.d.ts +34 -0
- package/dist/types/components/charts/wm-progress-monitor/wm-progress-monitor.d.ts +22 -0
- package/dist/types/components/charts/wm-progress-monitor/wm-progress-slice.d.ts +10 -0
- package/dist/types/components/datepickers/priv-calendar/priv-calendar.d.ts +89 -0
- package/dist/types/components/datepickers/wm-date-range.d.ts +73 -0
- package/dist/types/components/datepickers/wm-datepicker.d.ts +54 -0
- package/dist/types/components/selects/priv-option-list/priv-option-list.d.ts +71 -0
- package/dist/types/components/selects/wm-nested-select/wm-nested-select.d.ts +62 -0
- package/dist/types/components/selects/wm-optgroup/wm-optgroup.d.ts +21 -0
- package/dist/types/components/selects/wm-option/wm-option.d.ts +40 -0
- package/dist/types/components/selects/wm-select/wm-select.d.ts +66 -0
- package/dist/types/components/wm-action-menu/wm-action-menu.d.ts +54 -40
- package/dist/types/components/wm-button/wm-button.d.ts +43 -34
- package/dist/types/components/wm-file/wm-file.d.ts +48 -0
- package/dist/types/components/wm-file-list/wm-file-list.d.ts +5 -0
- package/dist/types/components/wm-flyout/wm-flyout.d.ts +48 -0
- package/dist/types/components/wm-input/wm-input.d.ts +50 -28
- package/dist/types/components/wm-menuitem/wm-menuitem.d.ts +26 -27
- package/dist/types/components/wm-modal/wm-modal-footer.d.ts +12 -13
- package/dist/types/components/wm-modal/wm-modal-header.d.ts +8 -10
- package/dist/types/components/wm-modal/wm-modal.d.ts +28 -31
- package/dist/types/components/wm-modal-pss/wm-modal-pss-footer.d.ts +14 -0
- package/dist/types/components/wm-modal-pss/wm-modal-pss-header.d.ts +10 -0
- package/dist/types/components/wm-modal-pss/wm-modal-pss.d.ts +35 -0
- package/dist/types/components/wm-navigation/wm-navigation-hamburger.d.ts +16 -0
- package/dist/types/components/wm-navigation/wm-navigation-item.d.ts +9 -0
- package/dist/types/components/wm-navigation/wm-navigation.d.ts +24 -0
- package/dist/types/components/wm-navigator/priv-navigator-button/priv-navigator-button.d.ts +6 -7
- package/dist/types/components/wm-navigator/priv-navigator-item/priv-navigator-item.d.ts +10 -10
- package/dist/types/components/wm-navigator/wm-navigator.d.ts +55 -57
- package/dist/types/components/wm-pagination/wm-pagination.d.ts +31 -28
- package/dist/types/components/wm-search/wm-search.d.ts +71 -75
- package/dist/types/components/wm-snackbar/wm-snackbar.d.ts +27 -28
- package/dist/types/components/wm-tabs/wm-tab-item/wm-tab-item.d.ts +30 -31
- package/dist/types/components/wm-tabs/wm-tab-list/wm-tab-list.d.ts +32 -48
- package/dist/types/components/wm-tabs/wm-tab-panel/wm-tab-panel.d.ts +14 -16
- package/dist/types/components/wm-tag-input/wm-tag-input.d.ts +121 -80
- package/dist/types/components/wm-tag-input/wm-tag-option/wm-tag-option.d.ts +18 -0
- package/dist/types/components/wm-textarea/wm-textarea.d.ts +31 -0
- package/dist/types/components/wm-timepicker/wm-timepicker.d.ts +49 -55
- package/dist/types/components/wm-toggletip/wm-toggletip.d.ts +36 -23
- package/dist/types/components/wm-uploader/wm-uploader.d.ts +64 -72
- package/dist/types/components/wm-wrapper/wm-wrapper.d.ts +4 -4
- package/dist/types/components.d.ts +1516 -211
- package/dist/types/global/__mocks__/functions.d.ts +2 -1
- package/dist/types/global/functions.d.ts +67 -11
- package/dist/types/global/interfaces.d.ts +152 -23
- package/dist/types/global/intl.d.ts +62 -0
- package/dist/types/global/services/__mocks__/http-service.d.ts +1 -1
- package/dist/types/stencil-public-runtime.d.ts +338 -219
- package/package.json +16 -22
- package/dist/cjs/app-globals-6b0c6e80.js +0 -110
- package/dist/cjs/app-globals-f1dd8fda.js +0 -47
- package/dist/cjs/componentlibrary.cjs.js +0 -20
- package/dist/cjs/css-shim-a7379e2b.js +0 -6
- package/dist/cjs/dom-3e7d9c3b.js +0 -75
- package/dist/cjs/functions-65513c61.js +0 -8360
- package/dist/cjs/global-6849642d.js +0 -38
- package/dist/cjs/http-service-494d81de.js +0 -57
- package/dist/cjs/http-service-9e8c4dd5.js +0 -57
- package/dist/cjs/index-298ebef1.js +0 -2976
- package/dist/cjs/interfaces-a3338581.js +0 -35
- package/dist/cjs/interfaces-b2beb752.js +0 -54
- package/dist/cjs/priv-chart-popover.cjs.entry.js +0 -89
- package/dist/cjs/priv-datepicker.cjs.entry.js +0 -672
- package/dist/cjs/shadow-css-09555044.js +0 -391
- package/dist/cjs/wm-action-menu.cjs.entry.js +0 -206
- package/dist/cjs/wm-menuitem.cjs.entry.js +0 -118
- package/dist/cjs/wm-modal-footer.cjs.entry.js +0 -43
- package/dist/cjs/wm-modal-header.cjs.entry.js +0 -45
- package/dist/cjs/wm-modal.cjs.entry.js +0 -149
- package/dist/cjs/wm-network-uploader.cjs.entry.js +0 -431
- package/dist/cjs/wm-option.cjs.entry.js +0 -123
- package/dist/cjs/wm-select.cjs.entry.js +0 -366
- package/dist/cjs/wm-tab-item.cjs.entry.js +0 -82
- package/dist/cjs/wm-tab-list.cjs.entry.js +0 -205
- package/dist/cjs/wm-tab-panel.cjs.entry.js +0 -42
- package/dist/collection/components/wm-chart/priv-chart-popover/priv-chart-popover.css +0 -132
- package/dist/collection/components/wm-chart/priv-chart-popover/priv-chart-popover.js +0 -232
- package/dist/collection/components/wm-chart/wm-chart-slice.js +0 -64
- package/dist/collection/components/wm-chart/wm-chart.css +0 -337
- package/dist/collection/components/wm-chart/wm-chart.js +0 -710
- package/dist/collection/components/wm-datepicker/priv-datepicker/priv-datepicker.css +0 -365
- package/dist/collection/components/wm-datepicker/priv-datepicker/priv-datepicker.js +0 -1003
- package/dist/collection/components/wm-datepicker/wm-datepicker.css +0 -211
- package/dist/collection/components/wm-datepicker/wm-datepicker.js +0 -445
- package/dist/collection/components/wm-option/wm-option.css +0 -162
- package/dist/collection/components/wm-option/wm-option.js +0 -394
- package/dist/collection/components/wm-select/wm-select.css +0 -315
- package/dist/collection/components/wm-select/wm-select.js +0 -676
- package/dist/collection/components/wm-uploader/wm-network-uploader/wm-network-uploader.css +0 -642
- package/dist/collection/components/wm-uploader/wm-network-uploader/wm-network-uploader.js +0 -753
- package/dist/componentlibrary/app-globals-18876ad3.js +0 -45
- package/dist/componentlibrary/app-globals-307a1083.js +0 -108
- package/dist/componentlibrary/componentlibrary.css +0 -84
- package/dist/componentlibrary/componentlibrary.esm.js +0 -1
- package/dist/componentlibrary/css-shim-bbdf0cc6.js +0 -4
- package/dist/componentlibrary/dom-1f98a75f.js +0 -73
- package/dist/componentlibrary/functions-316c1b23.js +0 -8340
- package/dist/componentlibrary/http-service-5d037e16.js +0 -52
- package/dist/componentlibrary/index-d5997567.js +0 -2938
- package/dist/componentlibrary/interfaces-50753346.js +0 -51
- package/dist/componentlibrary/p-01bdfed8.js +0 -16
- package/dist/componentlibrary/p-0ca70ed4.entry.js +0 -1
- package/dist/componentlibrary/p-126bde92.entry.js +0 -1
- package/dist/componentlibrary/p-12a67d93.entry.js +0 -1
- package/dist/componentlibrary/p-188deaf5.entry.js +0 -1
- package/dist/componentlibrary/p-2514df6f.entry.js +0 -1
- package/dist/componentlibrary/p-269b8a5f.entry.js +0 -1
- package/dist/componentlibrary/p-35e57079.entry.js +0 -1
- package/dist/componentlibrary/p-414e20f7.entry.js +0 -1
- package/dist/componentlibrary/p-43f1298b.js +0 -1
- package/dist/componentlibrary/p-4d387ec6.entry.js +0 -1
- package/dist/componentlibrary/p-59ba81d6.entry.js +0 -1
- package/dist/componentlibrary/p-5e3cbec8.entry.js +0 -1
- package/dist/componentlibrary/p-5e81e830.entry.js +0 -1
- package/dist/componentlibrary/p-64ff5040.js +0 -1
- package/dist/componentlibrary/p-68a871d3.entry.js +0 -1
- package/dist/componentlibrary/p-996a7395.entry.js +0 -1
- package/dist/componentlibrary/p-9b460452.entry.js +0 -1
- package/dist/componentlibrary/p-a416e410.entry.js +0 -1
- package/dist/componentlibrary/p-d550a94f.entry.js +0 -1
- package/dist/componentlibrary/p-e4735c23.entry.js +0 -1
- package/dist/componentlibrary/p-e725f388.entry.js +0 -1
- package/dist/componentlibrary/p-e9532ae5.entry.js +0 -1
- package/dist/componentlibrary/p-edf6f848.entry.js +0 -1
- package/dist/componentlibrary/p-fd8070fb.js +0 -1
- package/dist/componentlibrary/priv-chart-popover.entry.js +0 -85
- package/dist/componentlibrary/priv-datepicker.entry.js +0 -668
- package/dist/componentlibrary/priv-navigator-button.entry.js +0 -25
- package/dist/componentlibrary/priv-navigator-item.entry.js +0 -30
- package/dist/componentlibrary/shadow-css-67b66845.js +0 -389
- package/dist/componentlibrary/wm-action-menu.entry.js +0 -202
- package/dist/componentlibrary/wm-button.entry.js +0 -148
- package/dist/componentlibrary/wm-chart-slice.entry.js +0 -18
- package/dist/componentlibrary/wm-chart.entry.js +0 -504
- package/dist/componentlibrary/wm-datepicker.entry.js +0 -258
- package/dist/componentlibrary/wm-input.entry.js +0 -106
- package/dist/componentlibrary/wm-menuitem.entry.js +0 -114
- package/dist/componentlibrary/wm-modal-footer.entry.js +0 -39
- package/dist/componentlibrary/wm-modal-header.entry.js +0 -41
- package/dist/componentlibrary/wm-modal.entry.js +0 -145
- package/dist/componentlibrary/wm-navigator.entry.js +0 -275
- package/dist/componentlibrary/wm-network-uploader.entry.js +0 -427
- package/dist/componentlibrary/wm-option.entry.js +0 -119
- package/dist/componentlibrary/wm-pagination.entry.js +0 -172
- package/dist/componentlibrary/wm-search.entry.js +0 -227
- package/dist/componentlibrary/wm-select.entry.js +0 -362
- package/dist/componentlibrary/wm-snackbar.entry.js +0 -156
- package/dist/componentlibrary/wm-tab-item.entry.js +0 -78
- package/dist/componentlibrary/wm-tab-list.entry.js +0 -201
- package/dist/componentlibrary/wm-tab-panel.entry.js +0 -38
- package/dist/componentlibrary/wm-tag-input.entry.js +0 -509
- package/dist/componentlibrary/wm-timepicker.entry.js +0 -382
- package/dist/componentlibrary/wm-toggletip.entry.js +0 -124
- package/dist/componentlibrary/wm-uploader.entry.js +0 -338
- package/dist/componentlibrary/wm-wrapper.entry.js +0 -17
- package/dist/esm/app-globals-18876ad3.js +0 -45
- package/dist/esm/app-globals-307a1083.js +0 -108
- package/dist/esm/componentlibrary.js +0 -18
- package/dist/esm/css-shim-bbdf0cc6.js +0 -4
- package/dist/esm/dom-1f98a75f.js +0 -73
- package/dist/esm/functions-316c1b23.js +0 -8340
- package/dist/esm/global-430cb201.js +0 -36
- package/dist/esm/http-service-3dc3b3e7.js +0 -52
- package/dist/esm/http-service-5d037e16.js +0 -52
- package/dist/esm/index-d5997567.js +0 -2938
- package/dist/esm/interfaces-2b97fab2.js +0 -32
- package/dist/esm/interfaces-50753346.js +0 -51
- package/dist/esm/polyfills/css-shim.js +0 -1
- package/dist/esm/priv-chart-popover.entry.js +0 -85
- package/dist/esm/priv-datepicker.entry.js +0 -668
- package/dist/esm/shadow-css-67b66845.js +0 -389
- package/dist/esm/wm-action-menu.entry.js +0 -202
- package/dist/esm/wm-menuitem.entry.js +0 -114
- package/dist/esm/wm-modal-footer.entry.js +0 -39
- package/dist/esm/wm-modal-header.entry.js +0 -41
- package/dist/esm/wm-modal.entry.js +0 -145
- package/dist/esm/wm-network-uploader.entry.js +0 -427
- package/dist/esm/wm-option.entry.js +0 -119
- package/dist/esm/wm-select.entry.js +0 -362
- package/dist/esm/wm-tab-item.entry.js +0 -78
- package/dist/esm/wm-tab-list.entry.js +0 -201
- package/dist/esm/wm-tab-panel.entry.js +0 -38
- package/dist/types/components/wm-chart/priv-chart-popover/priv-chart-popover.d.ts +0 -23
- package/dist/types/components/wm-chart/wm-chart-slice.d.ts +0 -8
- package/dist/types/components/wm-chart/wm-chart.d.ts +0 -77
- package/dist/types/components/wm-datepicker/priv-datepicker/priv-datepicker.d.ts +0 -75
- package/dist/types/components/wm-datepicker/wm-datepicker.d.ts +0 -39
- package/dist/types/components/wm-option/wm-option.d.ts +0 -28
- package/dist/types/components/wm-select/wm-select.d.ts +0 -63
- package/dist/types/components/wm-uploader/wm-network-uploader/wm-network-uploader.d.ts +0 -85
- /package/dist/{componentlibrary/index.esm.js → collection/dev/button.js} +0 -0
|
@@ -1,1003 +0,0 @@
|
|
|
1
|
-
import { h, Component, Prop, Element, Event, Listen, State } from "@stencil/core";
|
|
2
|
-
import { forceUpdate } from "@stencil/core";
|
|
3
|
-
import { intl, hasRoomRight, shouldOpenUp } from "../../../global/functions";
|
|
4
|
-
export class PrivDatepicker {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.disabled = false;
|
|
7
|
-
this.isExpanded = false;
|
|
8
|
-
this.view = "day";
|
|
9
|
-
this.date = new Date();
|
|
10
|
-
this.selectedYear = this.date.getUTCFullYear();
|
|
11
|
-
this.selectedMonth = this.date.getUTCMonth() + 1;
|
|
12
|
-
this.selectedDay = this.date.getUTCDate();
|
|
13
|
-
this.monthInFocus = this.selectedMonth;
|
|
14
|
-
this.yearInFocus = this.selectedYear;
|
|
15
|
-
this.dayInFocus = this.selectedDay;
|
|
16
|
-
this.monthNumInFocus = this.selectedMonth;
|
|
17
|
-
this.parentId = "";
|
|
18
|
-
this.popupClicked = true;
|
|
19
|
-
this.buttonClicked = true;
|
|
20
|
-
this.prevClicked = true;
|
|
21
|
-
this.nextClicked = true;
|
|
22
|
-
this.openUp = false;
|
|
23
|
-
this.calendar_months = [
|
|
24
|
-
intl.formatMessage({
|
|
25
|
-
id: "date.january",
|
|
26
|
-
defaultMessage: "January",
|
|
27
|
-
description: "Month of the year",
|
|
28
|
-
}),
|
|
29
|
-
intl.formatMessage({
|
|
30
|
-
id: "date.february",
|
|
31
|
-
defaultMessage: "February",
|
|
32
|
-
description: "Month of the year",
|
|
33
|
-
}),
|
|
34
|
-
intl.formatMessage({
|
|
35
|
-
id: "date.march",
|
|
36
|
-
defaultMessage: "March",
|
|
37
|
-
description: "Month of the year",
|
|
38
|
-
}),
|
|
39
|
-
intl.formatMessage({
|
|
40
|
-
id: "date.april",
|
|
41
|
-
defaultMessage: "April",
|
|
42
|
-
description: "Month of the year",
|
|
43
|
-
}),
|
|
44
|
-
intl.formatMessage({
|
|
45
|
-
id: "date.may",
|
|
46
|
-
defaultMessage: "May",
|
|
47
|
-
description: "Month of the year",
|
|
48
|
-
}),
|
|
49
|
-
intl.formatMessage({
|
|
50
|
-
id: "date.june",
|
|
51
|
-
defaultMessage: "June",
|
|
52
|
-
description: "Month of the year",
|
|
53
|
-
}),
|
|
54
|
-
intl.formatMessage({
|
|
55
|
-
id: "date.july",
|
|
56
|
-
defaultMessage: "July",
|
|
57
|
-
description: "Month of the year",
|
|
58
|
-
}),
|
|
59
|
-
intl.formatMessage({
|
|
60
|
-
id: "date.august",
|
|
61
|
-
defaultMessage: "August",
|
|
62
|
-
description: "Month of the year",
|
|
63
|
-
}),
|
|
64
|
-
intl.formatMessage({
|
|
65
|
-
id: "date.september",
|
|
66
|
-
defaultMessage: "September",
|
|
67
|
-
description: "Month of the year",
|
|
68
|
-
}),
|
|
69
|
-
intl.formatMessage({
|
|
70
|
-
id: "date.october",
|
|
71
|
-
defaultMessage: "October",
|
|
72
|
-
description: "Month of the year",
|
|
73
|
-
}),
|
|
74
|
-
intl.formatMessage({
|
|
75
|
-
id: "date.november",
|
|
76
|
-
defaultMessage: "November",
|
|
77
|
-
description: "Month of the year",
|
|
78
|
-
}),
|
|
79
|
-
intl.formatMessage({
|
|
80
|
-
id: "date.december",
|
|
81
|
-
defaultMessage: "December",
|
|
82
|
-
description: "Month of the year",
|
|
83
|
-
}),
|
|
84
|
-
];
|
|
85
|
-
this.weekdays = [
|
|
86
|
-
intl.formatMessage({ id: "date.sunday", defaultMessage: "Sunday" }),
|
|
87
|
-
intl.formatMessage({ id: "date.monday", defaultMessage: "Monday" }),
|
|
88
|
-
intl.formatMessage({ id: "date.tuesday", defaultMessage: "Tuesday" }),
|
|
89
|
-
intl.formatMessage({ id: "date.wednesday", defaultMessage: "Wednesday" }),
|
|
90
|
-
intl.formatMessage({ id: "date.thursday", defaultMessage: "Thursday" }),
|
|
91
|
-
intl.formatMessage({ id: "date.friday", defaultMessage: "Friday" }),
|
|
92
|
-
intl.formatMessage({ id: "date.saturday", defaultMessage: "Saturday" }),
|
|
93
|
-
];
|
|
94
|
-
this.renderCalendarDate = (date, index) => {
|
|
95
|
-
let monthOfDate = this.removeZeroes(String(date[1]));
|
|
96
|
-
let dayOfDate = this.removeZeroes(String(date[2]));
|
|
97
|
-
let isThisMonth = monthOfDate === this.monthInFocus ? "current-month" : "";
|
|
98
|
-
const dateId = date[0] + date[1] + date[2];
|
|
99
|
-
const isToday = this.isDateToday(date);
|
|
100
|
-
return (h("div", { role: "gridcell", id: `cell-${dateId}-${this.parentId}`, class: `date-cell ${isThisMonth}`, "aria-selected": false, "aria-label": `${isToday
|
|
101
|
-
? `${intl.formatMessage({
|
|
102
|
-
id: "date.today",
|
|
103
|
-
defaultMessage: "today",
|
|
104
|
-
description: "calendar button",
|
|
105
|
-
})}, `
|
|
106
|
-
: ""}${this.weekdays[index]}, ${this.calendar_months[monthOfDate - 1]} ${dayOfDate}, ${date[0]}`, onClick: (ev) => {
|
|
107
|
-
this.handleTriggeredDate(ev.target);
|
|
108
|
-
}, onKeyDown: (ev) => this.trapFocusEnd(ev), "data-month": date[1], "data-year": date[0], onBlur: (ev) => ev.stopPropagation() }, dayOfDate));
|
|
109
|
-
};
|
|
110
|
-
}
|
|
111
|
-
handleKey(ev) {
|
|
112
|
-
this.prevClicked = false;
|
|
113
|
-
this.nextClicked = false;
|
|
114
|
-
switch (ev.keyCode) {
|
|
115
|
-
// Enter
|
|
116
|
-
case 13:
|
|
117
|
-
ev.preventDefault();
|
|
118
|
-
//Clunky exception for blur validation. Remove when blur reworked.
|
|
119
|
-
!ev.target.id.includes("popup-title") && ev.target.click();
|
|
120
|
-
break;
|
|
121
|
-
//escape
|
|
122
|
-
case 27:
|
|
123
|
-
ev.preventDefault();
|
|
124
|
-
if (this.isExpanded) {
|
|
125
|
-
ev.stopPropagation(); // prevents closing of parent modal
|
|
126
|
-
this.togglePopup();
|
|
127
|
-
this.buttonEl.focus();
|
|
128
|
-
}
|
|
129
|
-
break;
|
|
130
|
-
// Page Up
|
|
131
|
-
case 33:
|
|
132
|
-
ev.preventDefault();
|
|
133
|
-
this.backOneMonth();
|
|
134
|
-
break;
|
|
135
|
-
// Page Down
|
|
136
|
-
case 34:
|
|
137
|
-
ev.preventDefault();
|
|
138
|
-
this.forwardOneMonth();
|
|
139
|
-
break;
|
|
140
|
-
// Home
|
|
141
|
-
case 36:
|
|
142
|
-
ev.preventDefault();
|
|
143
|
-
this.unfocusCell();
|
|
144
|
-
this.dayInFocus = 1;
|
|
145
|
-
forceUpdate(this.el);
|
|
146
|
-
break;
|
|
147
|
-
// End
|
|
148
|
-
case 35:
|
|
149
|
-
ev.preventDefault();
|
|
150
|
-
this.unfocusCell();
|
|
151
|
-
this.dayInFocus = this.getMonthDays(this.monthInFocus, this.yearInFocus);
|
|
152
|
-
forceUpdate(this.el);
|
|
153
|
-
break;
|
|
154
|
-
//left
|
|
155
|
-
case 37:
|
|
156
|
-
ev.preventDefault();
|
|
157
|
-
if (this.view === "day") {
|
|
158
|
-
this.unfocusCell();
|
|
159
|
-
if (this.dayInFocus === 1) {
|
|
160
|
-
const newMonth = this.getPreviousMonth(this.monthInFocus, this.yearInFocus);
|
|
161
|
-
this.monthInFocus = newMonth.month;
|
|
162
|
-
this.yearInFocus = newMonth.year;
|
|
163
|
-
this.dayInFocus = this.getMonthDays(this.monthInFocus, this.yearInFocus);
|
|
164
|
-
}
|
|
165
|
-
else {
|
|
166
|
-
this.dayInFocus -= 1;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
else {
|
|
170
|
-
this.unfocusMonth();
|
|
171
|
-
if (this.monthNumInFocus === 0) {
|
|
172
|
-
this.monthNumInFocus = 11;
|
|
173
|
-
}
|
|
174
|
-
else {
|
|
175
|
-
this.monthNumInFocus -= 1;
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
break;
|
|
179
|
-
//right
|
|
180
|
-
case 39:
|
|
181
|
-
ev.preventDefault();
|
|
182
|
-
if (this.view === "day") {
|
|
183
|
-
this.unfocusCell();
|
|
184
|
-
if (this.dayInFocus === this.getMonthDays(this.monthInFocus, this.yearInFocus)) {
|
|
185
|
-
const newMonth = this.getNextMonth(this.monthInFocus, this.yearInFocus);
|
|
186
|
-
this.monthInFocus = newMonth.month;
|
|
187
|
-
this.yearInFocus = newMonth.year;
|
|
188
|
-
this.dayInFocus = 1;
|
|
189
|
-
}
|
|
190
|
-
else {
|
|
191
|
-
this.dayInFocus += 1;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
else {
|
|
195
|
-
this.unfocusMonth();
|
|
196
|
-
if (this.monthNumInFocus === 11) {
|
|
197
|
-
this.monthNumInFocus = 0;
|
|
198
|
-
}
|
|
199
|
-
else {
|
|
200
|
-
this.monthNumInFocus += 1;
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
break;
|
|
204
|
-
//up
|
|
205
|
-
case 38:
|
|
206
|
-
ev.preventDefault();
|
|
207
|
-
if (this.view === "day") {
|
|
208
|
-
this.unfocusCell();
|
|
209
|
-
if (this.dayInFocus < 8) {
|
|
210
|
-
const newMonth = this.getPreviousMonth(this.monthInFocus, this.yearInFocus);
|
|
211
|
-
this.monthInFocus = newMonth.month;
|
|
212
|
-
this.yearInFocus = newMonth.year;
|
|
213
|
-
const numDaysToSubtract = 7 - this.dayInFocus;
|
|
214
|
-
this.dayInFocus = this.getMonthDays(this.monthInFocus, this.yearInFocus) - numDaysToSubtract;
|
|
215
|
-
}
|
|
216
|
-
else {
|
|
217
|
-
this.dayInFocus -= 7;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
else {
|
|
221
|
-
this.unfocusMonth();
|
|
222
|
-
if (this.monthNumInFocus < 3) {
|
|
223
|
-
this.monthNumInFocus += 9;
|
|
224
|
-
}
|
|
225
|
-
else {
|
|
226
|
-
this.monthNumInFocus -= 3;
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
break;
|
|
230
|
-
//down
|
|
231
|
-
case 40:
|
|
232
|
-
ev.preventDefault();
|
|
233
|
-
if (!this.isExpanded) {
|
|
234
|
-
this.openPopup();
|
|
235
|
-
}
|
|
236
|
-
else {
|
|
237
|
-
if (this.view === "day") {
|
|
238
|
-
//If the down arrow is pressed from the month button or the arrow buttons, focus should shift to the current cell in focus
|
|
239
|
-
if (!(document.activeElement.shadowRoot || document).activeElement.classList.contains("date-cell")) {
|
|
240
|
-
this.focusCell();
|
|
241
|
-
break;
|
|
242
|
-
}
|
|
243
|
-
this.unfocusCell();
|
|
244
|
-
const changeoverDate = this.getMonthDays(this.monthInFocus, this.yearInFocus) - 7;
|
|
245
|
-
if (this.dayInFocus > changeoverDate) {
|
|
246
|
-
const newMonth = this.getNextMonth(this.monthInFocus, this.yearInFocus);
|
|
247
|
-
this.monthInFocus = newMonth.month;
|
|
248
|
-
this.yearInFocus = newMonth.year;
|
|
249
|
-
this.dayInFocus = this.dayInFocus - changeoverDate;
|
|
250
|
-
}
|
|
251
|
-
else {
|
|
252
|
-
this.dayInFocus += 7;
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
else {
|
|
256
|
-
//If the down arrow is pressed from the arrow buttons or the title box, focus should shift to the current month in focus
|
|
257
|
-
const activeEl = (document.activeElement.shadowRoot || document).activeElement;
|
|
258
|
-
if (activeEl.tagName === "BUTTON" || activeEl.id.includes("popup-title-year")) {
|
|
259
|
-
this.focusMonth();
|
|
260
|
-
break;
|
|
261
|
-
}
|
|
262
|
-
this.unfocusMonth();
|
|
263
|
-
if (this.monthNumInFocus > 8) {
|
|
264
|
-
this.monthNumInFocus -= 9;
|
|
265
|
-
}
|
|
266
|
-
else {
|
|
267
|
-
this.monthNumInFocus += 3;
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
break;
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
toggleTabbingOn(ev) {
|
|
275
|
-
var keys = ["Tab", 9, "ArrowUp", 38, "ArrowDown", 40, "ArrowLeft", 37, "ArrowRight", 39, "Enter", 13];
|
|
276
|
-
var key = ev.key || ev.keyCode;
|
|
277
|
-
if (keys.includes(key)) {
|
|
278
|
-
this.popupEl && this.popupEl.classList.add("user-is-tabbing");
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
//Using mousedown prevents this from running when the keydown listener emits ".click()" for when enter is pressed.
|
|
282
|
-
toggleTabbingOff() {
|
|
283
|
-
this.popupEl && this.popupEl.classList.remove("user-is-tabbing");
|
|
284
|
-
}
|
|
285
|
-
blurHandler() {
|
|
286
|
-
if (!this.popupClicked && !this.buttonClicked && this.isExpanded) {
|
|
287
|
-
this.closePopup();
|
|
288
|
-
}
|
|
289
|
-
this.popupClicked = false;
|
|
290
|
-
this.buttonClicked = false;
|
|
291
|
-
}
|
|
292
|
-
setDateValuesForView() {
|
|
293
|
-
this.selectedYear = this.date.getUTCFullYear();
|
|
294
|
-
this.selectedMonth = this.date.getUTCMonth() + 1;
|
|
295
|
-
this.selectedDay = this.date.getUTCDate();
|
|
296
|
-
this.monthInFocus = this.selectedMonth;
|
|
297
|
-
this.yearInFocus = this.selectedYear;
|
|
298
|
-
this.dayInFocus = this.selectedDay;
|
|
299
|
-
this.monthNumInFocus = this.selectedMonth - 1;
|
|
300
|
-
}
|
|
301
|
-
togglePopup() {
|
|
302
|
-
this.isExpanded ? this.closePopup() : this.openPopup();
|
|
303
|
-
this.buttonClicked = true;
|
|
304
|
-
}
|
|
305
|
-
updateLiveRegion(text) {
|
|
306
|
-
let liveRegion = this.el.querySelector("#live-region");
|
|
307
|
-
liveRegion.innerHTML = text;
|
|
308
|
-
}
|
|
309
|
-
closePopup() {
|
|
310
|
-
this.isExpanded = false;
|
|
311
|
-
this.popupEl.classList.remove("open");
|
|
312
|
-
window.setTimeout(() => {
|
|
313
|
-
//not using display none in order to get measurements of the popup while hidden
|
|
314
|
-
this.popupEl.style.visibility = "hidden";
|
|
315
|
-
}, 250);
|
|
316
|
-
//Reset values so that menu reopens to day view with selected date in focus
|
|
317
|
-
if (this.view === "day") {
|
|
318
|
-
this.unfocusCell();
|
|
319
|
-
}
|
|
320
|
-
this.monthInFocus = this.selectedMonth;
|
|
321
|
-
this.yearInFocus = this.selectedYear;
|
|
322
|
-
this.dayInFocus = this.selectedDay;
|
|
323
|
-
this.changeView("day");
|
|
324
|
-
window.requestAnimationFrame(() => {
|
|
325
|
-
//For instances where the app is checking for errors in the date on blur
|
|
326
|
-
// trigger blur, but keep focus on button
|
|
327
|
-
this.popupClosed.emit();
|
|
328
|
-
this.buttonEl.focus();
|
|
329
|
-
});
|
|
330
|
-
}
|
|
331
|
-
openPopup() {
|
|
332
|
-
this.panelPosition();
|
|
333
|
-
this.setDateValuesForView();
|
|
334
|
-
this.prevClicked = false;
|
|
335
|
-
this.nextClicked = false;
|
|
336
|
-
this.popupEl.style.visibility = "visible";
|
|
337
|
-
window.requestAnimationFrame(() => {
|
|
338
|
-
this.popupEl.classList.add("open");
|
|
339
|
-
});
|
|
340
|
-
this.isExpanded = true;
|
|
341
|
-
this.focusCell();
|
|
342
|
-
}
|
|
343
|
-
panelPosition() {
|
|
344
|
-
// getting a ref to the input el (in datepicker.tsx)
|
|
345
|
-
let host = document.getElementById(this.parentId);
|
|
346
|
-
const labelHeight = host.shadowRoot.querySelector(".label-wrapper").clientHeight;
|
|
347
|
-
this.openUp = shouldOpenUp(host, this.popupEl, labelHeight);
|
|
348
|
-
if (hasRoomRight(host, 336)) {
|
|
349
|
-
this.popupEl.style.left = "0";
|
|
350
|
-
this.popupEl.style.right = "auto";
|
|
351
|
-
}
|
|
352
|
-
else {
|
|
353
|
-
this.popupEl.style.right = "0";
|
|
354
|
-
this.popupEl.style.left = "auto";
|
|
355
|
-
}
|
|
356
|
-
}
|
|
357
|
-
changeView(newView) {
|
|
358
|
-
this.view = newView;
|
|
359
|
-
//Ensure month view always opens to the month last visited in date view
|
|
360
|
-
this.monthNumInFocus = this.monthInFocus - 1;
|
|
361
|
-
}
|
|
362
|
-
getMonthDays(month, year) {
|
|
363
|
-
const months30 = [4, 6, 9, 11];
|
|
364
|
-
const leapYear = year % 4 === 0;
|
|
365
|
-
return month === 2 ? (leapYear ? 29 : 28) : months30.includes(month) ? 30 : 31;
|
|
366
|
-
}
|
|
367
|
-
zeroPad(value, length) {
|
|
368
|
-
if (!String.prototype.padStart) {
|
|
369
|
-
String.prototype.padStart = function padStart(targetLength, padString) {
|
|
370
|
-
targetLength = targetLength - this.length;
|
|
371
|
-
if (targetLength > padString.length) {
|
|
372
|
-
padString += padString.repeat(targetLength / padString.length);
|
|
373
|
-
}
|
|
374
|
-
return padString.slice(0, targetLength) + String(this);
|
|
375
|
-
};
|
|
376
|
-
}
|
|
377
|
-
return `${value.toString()}`.padStart(length, "0");
|
|
378
|
-
}
|
|
379
|
-
// 1 => Sunday, 7 => Saturday
|
|
380
|
-
getMonthFirstDay(month, year) {
|
|
381
|
-
return +new Date(year, month - 1, 1, 12, 0, 0).getDay() + 1;
|
|
382
|
-
}
|
|
383
|
-
getPreviousMonth(month, year) {
|
|
384
|
-
const prevMonth = month > 1 ? month - 1 : 12;
|
|
385
|
-
const prevMonthYear = month > 1 ? year : year - 1;
|
|
386
|
-
return { month: prevMonth, year: prevMonthYear };
|
|
387
|
-
}
|
|
388
|
-
getNextMonth(month, year) {
|
|
389
|
-
const nextMonth = month < 12 ? month + 1 : 1;
|
|
390
|
-
const nextMonthYear = month < 12 ? year : year + 1;
|
|
391
|
-
return { month: nextMonth, year: nextMonthYear };
|
|
392
|
-
}
|
|
393
|
-
getCalendarDates(month, year) {
|
|
394
|
-
// Get number of days in the month and the month's first day
|
|
395
|
-
const monthDays = this.getMonthDays(month, year);
|
|
396
|
-
const monthFirstDay = this.getMonthFirstDay(month, year);
|
|
397
|
-
// Get number of days to be displayed from previous and next months
|
|
398
|
-
// These ensure a total of 42 days (6 weeks) displayed on the calendar
|
|
399
|
-
const daysFromPrevMonth = monthFirstDay - 1;
|
|
400
|
-
let daysFromNextMonth = 42 - (daysFromPrevMonth + monthDays);
|
|
401
|
-
daysFromNextMonth = daysFromNextMonth > 6 ? daysFromNextMonth - 7 : daysFromNextMonth;
|
|
402
|
-
// Get the previous and next months and years
|
|
403
|
-
const { month: prevMonth, year: prevMonthYear } = this.getPreviousMonth(month, year);
|
|
404
|
-
const { month: nextMonth, year: nextMonthYear } = this.getNextMonth(month, year);
|
|
405
|
-
// Get number of days in previous month
|
|
406
|
-
const prevMonthDays = this.getMonthDays(prevMonth, prevMonthYear);
|
|
407
|
-
// Builds dates to be displayed from previous month. The initialized array is "filled" with an arbitrary number because IE and Edge won't map over an array with empty values.
|
|
408
|
-
const prevMonthDates = [...new Array(daysFromPrevMonth).fill("1")].map((_, index) => {
|
|
409
|
-
const day = index + 1 + (prevMonthDays - daysFromPrevMonth);
|
|
410
|
-
return [prevMonthYear.toString(), this.zeroPad(prevMonth, 2), this.zeroPad(day, 2)];
|
|
411
|
-
});
|
|
412
|
-
// Builds dates to be displayed from current month. The initialized array is "filled" with an arbitrary number because IE and Edge won't map over an array with empty values.
|
|
413
|
-
const thisMonthDates = [...new Array(monthDays).fill("1")].map((_, index) => {
|
|
414
|
-
const day = index + 1;
|
|
415
|
-
return [year.toString(), this.zeroPad(month, 2), this.zeroPad(day, 2)];
|
|
416
|
-
});
|
|
417
|
-
// Builds dates to be displayed from next month. The initialized array is "filled" with an arbitrary number because IE and Edge won't map over an array with empty values.
|
|
418
|
-
const nextMonthDates = [...new Array(daysFromNextMonth).fill("1")].map((_, index) => {
|
|
419
|
-
const day = index + 1;
|
|
420
|
-
return [nextMonthYear.toString(), this.zeroPad(nextMonth, 2), this.zeroPad(day, 2)];
|
|
421
|
-
});
|
|
422
|
-
// Combines all dates from previous, current and next months
|
|
423
|
-
return [...prevMonthDates, ...thisMonthDates, ...nextMonthDates];
|
|
424
|
-
}
|
|
425
|
-
forwardOneMonth() {
|
|
426
|
-
this.unfocusCell();
|
|
427
|
-
const newMonth = this.getNextMonth(this.monthInFocus, this.yearInFocus);
|
|
428
|
-
this.monthInFocus = newMonth.month;
|
|
429
|
-
this.yearInFocus = newMonth.year;
|
|
430
|
-
const totalDays = this.getMonthDays(this.monthInFocus, this.yearInFocus);
|
|
431
|
-
if (this.dayInFocus > this.getMonthDays(this.monthInFocus, this.yearInFocus)) {
|
|
432
|
-
this.dayInFocus = totalDays;
|
|
433
|
-
}
|
|
434
|
-
this.updateLiveRegion(`Displaying ${this.calendar_months[this.monthInFocus - 1]}, ${this.yearInFocus}`);
|
|
435
|
-
}
|
|
436
|
-
backOneMonth() {
|
|
437
|
-
this.unfocusCell();
|
|
438
|
-
const newMonth = this.getPreviousMonth(this.monthInFocus, this.yearInFocus);
|
|
439
|
-
this.monthInFocus = newMonth.month;
|
|
440
|
-
this.yearInFocus = newMonth.year;
|
|
441
|
-
const totalDays = this.getMonthDays(this.monthInFocus, this.yearInFocus);
|
|
442
|
-
if (this.dayInFocus > this.getMonthDays(this.monthInFocus, this.yearInFocus)) {
|
|
443
|
-
this.dayInFocus = totalDays;
|
|
444
|
-
}
|
|
445
|
-
this.updateLiveRegion(`Viewing ${this.calendar_months[this.monthInFocus - 1]}, ${this.yearInFocus}`);
|
|
446
|
-
}
|
|
447
|
-
handleTriggeredDate(el) {
|
|
448
|
-
this.cellTriggered.emit(el);
|
|
449
|
-
// change of input value will trigger the function updating selectedDate
|
|
450
|
-
this.closePopup();
|
|
451
|
-
}
|
|
452
|
-
handleSelectedDate() {
|
|
453
|
-
//Remove old selection status
|
|
454
|
-
if (this.selectedDate) {
|
|
455
|
-
this.selectedDate.removeAttribute("aria-selected");
|
|
456
|
-
}
|
|
457
|
-
//Update selected date to new date inputted/selected
|
|
458
|
-
this.selectedDate = this.getCellById(this.selectedYear, this.selectedMonth, this.selectedDay);
|
|
459
|
-
if (this.selectedDate) {
|
|
460
|
-
this.selectedDate.setAttribute("aria-selected", "true");
|
|
461
|
-
}
|
|
462
|
-
}
|
|
463
|
-
getCellById(year, month, day) {
|
|
464
|
-
const id = year + this.zeroPad(month, 2) + this.zeroPad(day, 2);
|
|
465
|
-
return this.el.querySelector(`#cell-${id}-${this.parentId}`);
|
|
466
|
-
}
|
|
467
|
-
unfocusCell() {
|
|
468
|
-
const cellToUnfocus = this.getCellById(this.yearInFocus, this.monthInFocus, this.dayInFocus);
|
|
469
|
-
cellToUnfocus.tabIndex = -1;
|
|
470
|
-
}
|
|
471
|
-
focusCell() {
|
|
472
|
-
//These two lines of code prevent an error from happening when the day in focus does not exist in a new month selected, e.g., May 31 is in focus, then the user selects "November". It will return focus in the date view to the last day of the month so that focus doesn't fly out of the popup.
|
|
473
|
-
const maxDays = this.getMonthDays(this.monthInFocus, this.yearInFocus);
|
|
474
|
-
this.dayInFocus = this.dayInFocus > maxDays ? maxDays : this.dayInFocus;
|
|
475
|
-
const cellToFocus = this.getCellById(this.yearInFocus, this.monthInFocus, this.dayInFocus);
|
|
476
|
-
if (cellToFocus) {
|
|
477
|
-
cellToFocus.tabIndex = 0;
|
|
478
|
-
cellToFocus.focus();
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
unfocusMonth() {
|
|
482
|
-
const monthToUnfocus = this.el.querySelector(`#month-${this.monthNumInFocus}-${this.parentId}`);
|
|
483
|
-
monthToUnfocus.tabIndex = -1;
|
|
484
|
-
}
|
|
485
|
-
focusMonth() {
|
|
486
|
-
const monthToFocus = this.el.querySelector(`#month-${this.monthNumInFocus}-${this.parentId}`);
|
|
487
|
-
monthToFocus.tabIndex = 0;
|
|
488
|
-
monthToFocus.focus();
|
|
489
|
-
}
|
|
490
|
-
removeZeroes(date) {
|
|
491
|
-
return +date < 10 ? +date.slice(1) : +date;
|
|
492
|
-
}
|
|
493
|
-
isDateToday(date) {
|
|
494
|
-
const today = new Date();
|
|
495
|
-
const todayDateArray = [
|
|
496
|
-
today.getFullYear().toString(),
|
|
497
|
-
(today.getMonth() + 1).toString(),
|
|
498
|
-
today.getDate().toString(),
|
|
499
|
-
];
|
|
500
|
-
//Compare today's date to date and return true if they match
|
|
501
|
-
return todayDateArray.reduce((result, val, index) => result && this.removeZeroes(date[index]).toString() === val, true);
|
|
502
|
-
}
|
|
503
|
-
renderMonths(month, index) {
|
|
504
|
-
return (h("div", { id: `month-${index}-${this.parentId}`, class: `month ${this.selectedMonth - 1 === index ? "selected" : ""}`, role: "gridcell", tabindex: index + 1 === this.monthInFocus ? 0 : -1, onKeyDown: (ev) => this.trapFocusEnd(ev), onBlur: (ev) => ev.stopPropagation(), onClick: () => {
|
|
505
|
-
this.monthInFocus = index + 1;
|
|
506
|
-
this.changeView("day");
|
|
507
|
-
} }, month));
|
|
508
|
-
}
|
|
509
|
-
trapFocusLeft(ev) {
|
|
510
|
-
if (ev.shiftKey && ev.keyCode === 9) {
|
|
511
|
-
ev.preventDefault();
|
|
512
|
-
this.focusCellInView();
|
|
513
|
-
}
|
|
514
|
-
}
|
|
515
|
-
trapFocusEnd(ev) {
|
|
516
|
-
if (!ev.shiftKey && ev.keyCode === 9) {
|
|
517
|
-
ev.preventDefault();
|
|
518
|
-
this.prevButton.focus();
|
|
519
|
-
}
|
|
520
|
-
}
|
|
521
|
-
trapFocusRight(ev) {
|
|
522
|
-
if (!ev.shiftKey && ev.keyCode === 9) {
|
|
523
|
-
ev.preventDefault();
|
|
524
|
-
this.focusCellInView();
|
|
525
|
-
}
|
|
526
|
-
}
|
|
527
|
-
focusCellInView() {
|
|
528
|
-
if (this.view === "day") {
|
|
529
|
-
this.focusCell();
|
|
530
|
-
}
|
|
531
|
-
else {
|
|
532
|
-
this.focusMonth();
|
|
533
|
-
}
|
|
534
|
-
}
|
|
535
|
-
componentDidUpdate() {
|
|
536
|
-
this.handleSelectedDate();
|
|
537
|
-
if (this.isExpanded) {
|
|
538
|
-
this.prevClicked
|
|
539
|
-
? this.prevButton.focus()
|
|
540
|
-
: this.nextClicked
|
|
541
|
-
? this.nextButton.focus()
|
|
542
|
-
: this.view === "day"
|
|
543
|
-
? this.focusCell()
|
|
544
|
-
: this.focusMonth();
|
|
545
|
-
}
|
|
546
|
-
}
|
|
547
|
-
componentDidLoad() {
|
|
548
|
-
this.handleSelectedDate();
|
|
549
|
-
this.setDateValuesForView();
|
|
550
|
-
}
|
|
551
|
-
toggleBusyAttribute(state) {
|
|
552
|
-
this.el.querySelector("#wm-container").setAttribute("aria-busy", state);
|
|
553
|
-
}
|
|
554
|
-
render() {
|
|
555
|
-
const dates = this.getCalendarDates(this.monthInFocus, this.yearInFocus);
|
|
556
|
-
return (h("div", { class: "container", id: "wm-container" },
|
|
557
|
-
h("button", { disabled: this.disabled, onClick: this.togglePopup.bind(this), "aria-describedby": `date-input-${this.parentId}`, ref: (el) => (this.buttonEl = el), "aria-expanded": `${this.isExpanded}`, class: "toggle", id: `toggle-${this.parentId}` },
|
|
558
|
-
h("span", { class: "calendar", title: intl.formatMessage({
|
|
559
|
-
id: "date.calendarView",
|
|
560
|
-
defaultMessage: "Calendar View",
|
|
561
|
-
description: "Calendar button",
|
|
562
|
-
}) })),
|
|
563
|
-
h("div", { class: `popup ${this.view}-view ${this.openUp ? "expand-upwards" : ""}`, id: `popup-${this.parentId}`, ref: (el) => (this.popupEl = el), onClick: () => (this.popupClicked = true), role: "application", "aria-describedby": "application" }, this.view === "day" ? (h("div", { class: "day-view" },
|
|
564
|
-
h("div", { class: "calendar-header" },
|
|
565
|
-
h("button", { onClick: () => {
|
|
566
|
-
this.prevClicked = true;
|
|
567
|
-
this.popupClicked = true;
|
|
568
|
-
this.backOneMonth();
|
|
569
|
-
}, onKeyDown: (ev) => this.trapFocusLeft(ev), ref: (el) => (this.prevButton = el), class: "arw-btn", "aria-label": intl.formatMessage({
|
|
570
|
-
id: "date.selectPreviousMonth",
|
|
571
|
-
defaultMessage: "Select previous month",
|
|
572
|
-
description: "Calendar button",
|
|
573
|
-
}) },
|
|
574
|
-
h("span", { class: "mdi" }, "\uF141")),
|
|
575
|
-
h("div", { id: `popup-title-month-${this.parentId}`, class: "title-box", tabindex: 0, role: "button", onKeyDown: (ev) => {
|
|
576
|
-
if (ev.keyCode === 13 || ev.keyCode === 32) {
|
|
577
|
-
ev.preventDefault();
|
|
578
|
-
this.changeView("month");
|
|
579
|
-
}
|
|
580
|
-
}, onClick: this.changeView.bind(this, "month"), "aria-label": `${intl.formatMessage({
|
|
581
|
-
id: "date.currentMonth",
|
|
582
|
-
defaultMessage: "current month",
|
|
583
|
-
description: "Calendar button",
|
|
584
|
-
})}: ${this.calendar_months[this.monthInFocus - 1]}
|
|
585
|
-
${this.yearInFocus}.`, "aria-describedby": "month-title" },
|
|
586
|
-
h("span", { class: "title", "aria-hidden": "true" },
|
|
587
|
-
this.calendar_months[this.monthInFocus - 1],
|
|
588
|
-
" ",
|
|
589
|
-
this.yearInFocus)),
|
|
590
|
-
h("button", { onClick: () => {
|
|
591
|
-
this.nextClicked = true;
|
|
592
|
-
this.popupClicked = true;
|
|
593
|
-
this.forwardOneMonth();
|
|
594
|
-
}, onKeyDown: (ev) => this.trapFocusRight(ev), "aria-label": intl.formatMessage({
|
|
595
|
-
id: "date.selectNextMonth",
|
|
596
|
-
defaultMessage: "Select next month",
|
|
597
|
-
description: "Calendar button",
|
|
598
|
-
}), ref: (el) => (this.nextButton = el), class: "arw-btn" },
|
|
599
|
-
h("span", { class: "mdi" }, "\uF142"))),
|
|
600
|
-
h("div", { "aria-labelledby": `popup-title-month-${this.parentId}`, role: "grid", class: "date-grid" },
|
|
601
|
-
h("div", { role: "rowgroup", class: "date-header" },
|
|
602
|
-
h("div", { role: "row", class: "header-row" },
|
|
603
|
-
h("div", { role: "columnheader", class: "header-cell" },
|
|
604
|
-
h("span", null, intl.formatMessage({
|
|
605
|
-
id: "date.su",
|
|
606
|
-
defaultMessage: "Su",
|
|
607
|
-
description: "Abbreviated day of the week",
|
|
608
|
-
}))),
|
|
609
|
-
h("div", { role: "columnheader", class: "header-cell" },
|
|
610
|
-
h("span", null, intl.formatMessage({
|
|
611
|
-
id: "date.mo",
|
|
612
|
-
defaultMessage: "Mo",
|
|
613
|
-
description: "Abbreviated day of the week",
|
|
614
|
-
}))),
|
|
615
|
-
h("div", { role: "columnheader", class: "header-cell" },
|
|
616
|
-
h("span", null, intl.formatMessage({
|
|
617
|
-
id: "date.tu",
|
|
618
|
-
defaultMessage: "Tu",
|
|
619
|
-
description: "Abbreviated day of the week",
|
|
620
|
-
}))),
|
|
621
|
-
h("div", { role: "columnheader", class: "header-cell" },
|
|
622
|
-
h("span", null, intl.formatMessage({
|
|
623
|
-
id: "date.we",
|
|
624
|
-
defaultMessage: "We",
|
|
625
|
-
description: "Abbreviated day of the week",
|
|
626
|
-
}))),
|
|
627
|
-
h("div", { role: "columnheader", class: "header-cell" },
|
|
628
|
-
h("span", null, intl.formatMessage({
|
|
629
|
-
id: "date.th",
|
|
630
|
-
defaultMessage: "Th",
|
|
631
|
-
description: "Abbreviated day of the week",
|
|
632
|
-
}))),
|
|
633
|
-
h("div", { role: "columnheader", class: "header-cell" },
|
|
634
|
-
h("span", null, intl.formatMessage({
|
|
635
|
-
id: "date.fr",
|
|
636
|
-
defaultMessage: "Fr",
|
|
637
|
-
description: "Abbreviated day of the week",
|
|
638
|
-
}))),
|
|
639
|
-
h("div", { role: "columnheader", class: "header-cell" },
|
|
640
|
-
h("span", null, intl.formatMessage({
|
|
641
|
-
id: "date.sa",
|
|
642
|
-
defaultMessage: "Sa",
|
|
643
|
-
description: "Abbreviated day of the week",
|
|
644
|
-
}))))),
|
|
645
|
-
h("div", { role: "rowgroup" },
|
|
646
|
-
h("div", { role: "row", class: "date-row" }, dates.slice(0, 7).map((date, i) => this.renderCalendarDate(date, i))),
|
|
647
|
-
h("div", { role: "row" }, dates.slice(7, 14).map((date, i) => this.renderCalendarDate(date, i))),
|
|
648
|
-
h("div", { role: "row" }, dates.slice(14, 21).map((date, i) => this.renderCalendarDate(date, i))),
|
|
649
|
-
h("div", { role: "row" }, dates.slice(21, 28).map((date, i) => this.renderCalendarDate(date, i))),
|
|
650
|
-
h("div", { role: "row" }, dates.slice(28, 35).map((date, i) => this.renderCalendarDate(date, i))),
|
|
651
|
-
dates.length > 35 ? (h("div", { role: "row" }, dates.slice(35).map((date, i) => this.renderCalendarDate(date, i)))) : (""))))) : (h("div", { class: "month-view" },
|
|
652
|
-
h("div", { class: "calendar-header" },
|
|
653
|
-
h("button", { onClick: () => {
|
|
654
|
-
this.prevClicked = true;
|
|
655
|
-
this.popupClicked = true;
|
|
656
|
-
this.yearInFocus -= 1;
|
|
657
|
-
this.updateLiveRegion(`${this.yearInFocus} selected.`);
|
|
658
|
-
}, onKeyDown: (ev) => this.trapFocusLeft(ev), "aria-label": intl.formatMessage({
|
|
659
|
-
id: "date.selectPreviousYear",
|
|
660
|
-
defaultMessage: "Select previous year",
|
|
661
|
-
description: "Calendar button",
|
|
662
|
-
}), ref: (el) => (this.prevButton = el), class: "arw-btn" },
|
|
663
|
-
h("span", { class: "mdi" }, "\uF141")),
|
|
664
|
-
h("div", { id: `popup-title-year-${this.parentId}`, tabindex: 0, class: "title-box year", role: "button", onClick: this.changeView.bind(this, "day"), onKeyDown: (ev) => {
|
|
665
|
-
if (ev.keyCode === 13 || ev.keyCode === 32) {
|
|
666
|
-
ev.preventDefault();
|
|
667
|
-
this.changeView("day");
|
|
668
|
-
}
|
|
669
|
-
}, "aria-labelledby": "year-title" },
|
|
670
|
-
h("span", { class: "title" }, this.yearInFocus)),
|
|
671
|
-
h("button", { onClick: () => {
|
|
672
|
-
this.nextClicked = true;
|
|
673
|
-
this.popupClicked = true;
|
|
674
|
-
this.yearInFocus += 1;
|
|
675
|
-
this.updateLiveRegion(`${this.yearInFocus} selected.`);
|
|
676
|
-
}, "aria-label": intl.formatMessage({
|
|
677
|
-
id: "date.selectNextYear",
|
|
678
|
-
defaultMessage: "Select next year",
|
|
679
|
-
description: "Calendar button",
|
|
680
|
-
}), onKeyDown: (ev) => this.trapFocusRight(ev), ref: (el) => (this.nextButton = el), class: "arw-btn" },
|
|
681
|
-
h("span", { class: "mdi" }, "\uF142"))),
|
|
682
|
-
h("div", { "aria-labelledby": `popup-title-year-${this.parentId}`, role: "grid", class: "months" },
|
|
683
|
-
h("div", { role: "row", class: "month-row" }, this.calendar_months
|
|
684
|
-
.slice(0, 3)
|
|
685
|
-
.map((month, index) => this.renderMonths(month, index))),
|
|
686
|
-
h("div", { role: "row", class: "month-row" }, this.calendar_months
|
|
687
|
-
.slice(3, 6)
|
|
688
|
-
.map((month, index) => this.renderMonths(month, index + 3))),
|
|
689
|
-
h("div", { role: "row", class: "month-row" }, this.calendar_months
|
|
690
|
-
.slice(6, 9)
|
|
691
|
-
.map((month, index) => this.renderMonths(month, index + 6))),
|
|
692
|
-
h("div", { role: "row", class: "month-row" }, this.calendar_months
|
|
693
|
-
.slice(9)
|
|
694
|
-
.map((month, index) => this.renderMonths(month, index + 9))))))),
|
|
695
|
-
this.isExpanded && h("div", { id: "live-region", "aria-live": "polite", "aria-relevant": "text", class: "sr-only" }),
|
|
696
|
-
h("div", { id: "month-title", class: "sr-only" }, intl.formatMessage({
|
|
697
|
-
id: "date.selectMonth",
|
|
698
|
-
defaultMessage: "Activate to select a month.",
|
|
699
|
-
description: "Calendar button",
|
|
700
|
-
})),
|
|
701
|
-
h("div", { id: "year-title", class: "sr-only" }, intl.formatMessage({
|
|
702
|
-
id: "date.selectYear",
|
|
703
|
-
defaultMessage: "Activate to select a year.",
|
|
704
|
-
description: "Calendar button",
|
|
705
|
-
})),
|
|
706
|
-
h("div", { id: "application", class: "sr-only" }, intl.formatMessage({
|
|
707
|
-
id: "date.instructions",
|
|
708
|
-
defaultMessage: "Use arrows to select a date in the table. Tab left or right to buttons for selecting previous month, next month, or the month selection table.",
|
|
709
|
-
}))));
|
|
710
|
-
}
|
|
711
|
-
static get is() { return "priv-datepicker"; }
|
|
712
|
-
static get originalStyleUrls() { return {
|
|
713
|
-
"$": ["priv-datepicker.scss"]
|
|
714
|
-
}; }
|
|
715
|
-
static get styleUrls() { return {
|
|
716
|
-
"$": ["priv-datepicker.css"]
|
|
717
|
-
}; }
|
|
718
|
-
static get properties() { return {
|
|
719
|
-
"disabled": {
|
|
720
|
-
"type": "boolean",
|
|
721
|
-
"mutable": false,
|
|
722
|
-
"complexType": {
|
|
723
|
-
"original": "boolean",
|
|
724
|
-
"resolved": "boolean",
|
|
725
|
-
"references": {}
|
|
726
|
-
},
|
|
727
|
-
"required": false,
|
|
728
|
-
"optional": false,
|
|
729
|
-
"docs": {
|
|
730
|
-
"tags": [],
|
|
731
|
-
"text": ""
|
|
732
|
-
},
|
|
733
|
-
"attribute": "disabled",
|
|
734
|
-
"reflect": false,
|
|
735
|
-
"defaultValue": "false"
|
|
736
|
-
},
|
|
737
|
-
"isExpanded": {
|
|
738
|
-
"type": "boolean",
|
|
739
|
-
"mutable": true,
|
|
740
|
-
"complexType": {
|
|
741
|
-
"original": "boolean",
|
|
742
|
-
"resolved": "boolean",
|
|
743
|
-
"references": {}
|
|
744
|
-
},
|
|
745
|
-
"required": false,
|
|
746
|
-
"optional": false,
|
|
747
|
-
"docs": {
|
|
748
|
-
"tags": [],
|
|
749
|
-
"text": ""
|
|
750
|
-
},
|
|
751
|
-
"attribute": "is-expanded",
|
|
752
|
-
"reflect": true,
|
|
753
|
-
"defaultValue": "false"
|
|
754
|
-
},
|
|
755
|
-
"view": {
|
|
756
|
-
"type": "string",
|
|
757
|
-
"mutable": true,
|
|
758
|
-
"complexType": {
|
|
759
|
-
"original": "string",
|
|
760
|
-
"resolved": "string",
|
|
761
|
-
"references": {}
|
|
762
|
-
},
|
|
763
|
-
"required": false,
|
|
764
|
-
"optional": false,
|
|
765
|
-
"docs": {
|
|
766
|
-
"tags": [],
|
|
767
|
-
"text": ""
|
|
768
|
-
},
|
|
769
|
-
"attribute": "view",
|
|
770
|
-
"reflect": true,
|
|
771
|
-
"defaultValue": "\"day\""
|
|
772
|
-
},
|
|
773
|
-
"date": {
|
|
774
|
-
"type": "unknown",
|
|
775
|
-
"mutable": true,
|
|
776
|
-
"complexType": {
|
|
777
|
-
"original": "Date",
|
|
778
|
-
"resolved": "Date",
|
|
779
|
-
"references": {
|
|
780
|
-
"Date": {
|
|
781
|
-
"location": "global"
|
|
782
|
-
}
|
|
783
|
-
}
|
|
784
|
-
},
|
|
785
|
-
"required": false,
|
|
786
|
-
"optional": false,
|
|
787
|
-
"docs": {
|
|
788
|
-
"tags": [],
|
|
789
|
-
"text": ""
|
|
790
|
-
},
|
|
791
|
-
"defaultValue": "new Date()"
|
|
792
|
-
},
|
|
793
|
-
"selectedYear": {
|
|
794
|
-
"type": "number",
|
|
795
|
-
"mutable": true,
|
|
796
|
-
"complexType": {
|
|
797
|
-
"original": "number",
|
|
798
|
-
"resolved": "number",
|
|
799
|
-
"references": {}
|
|
800
|
-
},
|
|
801
|
-
"required": false,
|
|
802
|
-
"optional": false,
|
|
803
|
-
"docs": {
|
|
804
|
-
"tags": [],
|
|
805
|
-
"text": ""
|
|
806
|
-
},
|
|
807
|
-
"attribute": "selected-year",
|
|
808
|
-
"reflect": false,
|
|
809
|
-
"defaultValue": "this.date.getUTCFullYear()"
|
|
810
|
-
},
|
|
811
|
-
"selectedMonth": {
|
|
812
|
-
"type": "number",
|
|
813
|
-
"mutable": true,
|
|
814
|
-
"complexType": {
|
|
815
|
-
"original": "number",
|
|
816
|
-
"resolved": "number",
|
|
817
|
-
"references": {}
|
|
818
|
-
},
|
|
819
|
-
"required": false,
|
|
820
|
-
"optional": false,
|
|
821
|
-
"docs": {
|
|
822
|
-
"tags": [],
|
|
823
|
-
"text": ""
|
|
824
|
-
},
|
|
825
|
-
"attribute": "selected-month",
|
|
826
|
-
"reflect": false,
|
|
827
|
-
"defaultValue": "this.date.getUTCMonth() + 1"
|
|
828
|
-
},
|
|
829
|
-
"selectedDay": {
|
|
830
|
-
"type": "number",
|
|
831
|
-
"mutable": true,
|
|
832
|
-
"complexType": {
|
|
833
|
-
"original": "number",
|
|
834
|
-
"resolved": "number",
|
|
835
|
-
"references": {}
|
|
836
|
-
},
|
|
837
|
-
"required": false,
|
|
838
|
-
"optional": false,
|
|
839
|
-
"docs": {
|
|
840
|
-
"tags": [],
|
|
841
|
-
"text": ""
|
|
842
|
-
},
|
|
843
|
-
"attribute": "selected-day",
|
|
844
|
-
"reflect": false,
|
|
845
|
-
"defaultValue": "this.date.getUTCDate()"
|
|
846
|
-
},
|
|
847
|
-
"monthInFocus": {
|
|
848
|
-
"type": "number",
|
|
849
|
-
"mutable": true,
|
|
850
|
-
"complexType": {
|
|
851
|
-
"original": "number",
|
|
852
|
-
"resolved": "number",
|
|
853
|
-
"references": {}
|
|
854
|
-
},
|
|
855
|
-
"required": false,
|
|
856
|
-
"optional": false,
|
|
857
|
-
"docs": {
|
|
858
|
-
"tags": [],
|
|
859
|
-
"text": ""
|
|
860
|
-
},
|
|
861
|
-
"attribute": "month-in-focus",
|
|
862
|
-
"reflect": false,
|
|
863
|
-
"defaultValue": "this.selectedMonth"
|
|
864
|
-
},
|
|
865
|
-
"yearInFocus": {
|
|
866
|
-
"type": "number",
|
|
867
|
-
"mutable": true,
|
|
868
|
-
"complexType": {
|
|
869
|
-
"original": "number",
|
|
870
|
-
"resolved": "number",
|
|
871
|
-
"references": {}
|
|
872
|
-
},
|
|
873
|
-
"required": false,
|
|
874
|
-
"optional": false,
|
|
875
|
-
"docs": {
|
|
876
|
-
"tags": [],
|
|
877
|
-
"text": ""
|
|
878
|
-
},
|
|
879
|
-
"attribute": "year-in-focus",
|
|
880
|
-
"reflect": false,
|
|
881
|
-
"defaultValue": "this.selectedYear"
|
|
882
|
-
},
|
|
883
|
-
"dayInFocus": {
|
|
884
|
-
"type": "number",
|
|
885
|
-
"mutable": true,
|
|
886
|
-
"complexType": {
|
|
887
|
-
"original": "number",
|
|
888
|
-
"resolved": "number",
|
|
889
|
-
"references": {}
|
|
890
|
-
},
|
|
891
|
-
"required": false,
|
|
892
|
-
"optional": false,
|
|
893
|
-
"docs": {
|
|
894
|
-
"tags": [],
|
|
895
|
-
"text": ""
|
|
896
|
-
},
|
|
897
|
-
"attribute": "day-in-focus",
|
|
898
|
-
"reflect": false,
|
|
899
|
-
"defaultValue": "this.selectedDay"
|
|
900
|
-
},
|
|
901
|
-
"parentId": {
|
|
902
|
-
"type": "string",
|
|
903
|
-
"mutable": true,
|
|
904
|
-
"complexType": {
|
|
905
|
-
"original": "string",
|
|
906
|
-
"resolved": "string",
|
|
907
|
-
"references": {}
|
|
908
|
-
},
|
|
909
|
-
"required": false,
|
|
910
|
-
"optional": false,
|
|
911
|
-
"docs": {
|
|
912
|
-
"tags": [],
|
|
913
|
-
"text": ""
|
|
914
|
-
},
|
|
915
|
-
"attribute": "parent-id",
|
|
916
|
-
"reflect": true,
|
|
917
|
-
"defaultValue": "\"\""
|
|
918
|
-
}
|
|
919
|
-
}; }
|
|
920
|
-
static get states() { return {
|
|
921
|
-
"monthNumInFocus": {}
|
|
922
|
-
}; }
|
|
923
|
-
static get events() { return [{
|
|
924
|
-
"method": "cellTriggered",
|
|
925
|
-
"name": "cellTriggered",
|
|
926
|
-
"bubbles": true,
|
|
927
|
-
"cancelable": true,
|
|
928
|
-
"composed": true,
|
|
929
|
-
"docs": {
|
|
930
|
-
"tags": [],
|
|
931
|
-
"text": ""
|
|
932
|
-
},
|
|
933
|
-
"complexType": {
|
|
934
|
-
"original": "HTMLElement",
|
|
935
|
-
"resolved": "HTMLElement",
|
|
936
|
-
"references": {
|
|
937
|
-
"HTMLElement": {
|
|
938
|
-
"location": "global"
|
|
939
|
-
}
|
|
940
|
-
}
|
|
941
|
-
}
|
|
942
|
-
}, {
|
|
943
|
-
"method": "toggleButtonClicked",
|
|
944
|
-
"name": "toggleButtonClicked",
|
|
945
|
-
"bubbles": true,
|
|
946
|
-
"cancelable": true,
|
|
947
|
-
"composed": true,
|
|
948
|
-
"docs": {
|
|
949
|
-
"tags": [],
|
|
950
|
-
"text": ""
|
|
951
|
-
},
|
|
952
|
-
"complexType": {
|
|
953
|
-
"original": "HTMLButtonElement",
|
|
954
|
-
"resolved": "HTMLButtonElement",
|
|
955
|
-
"references": {
|
|
956
|
-
"HTMLButtonElement": {
|
|
957
|
-
"location": "global"
|
|
958
|
-
}
|
|
959
|
-
}
|
|
960
|
-
}
|
|
961
|
-
}, {
|
|
962
|
-
"method": "popupClosed",
|
|
963
|
-
"name": "popupClosed",
|
|
964
|
-
"bubbles": true,
|
|
965
|
-
"cancelable": true,
|
|
966
|
-
"composed": true,
|
|
967
|
-
"docs": {
|
|
968
|
-
"tags": [],
|
|
969
|
-
"text": ""
|
|
970
|
-
},
|
|
971
|
-
"complexType": {
|
|
972
|
-
"original": "any",
|
|
973
|
-
"resolved": "any",
|
|
974
|
-
"references": {}
|
|
975
|
-
}
|
|
976
|
-
}]; }
|
|
977
|
-
static get elementRef() { return "el"; }
|
|
978
|
-
static get listeners() { return [{
|
|
979
|
-
"name": "keydown",
|
|
980
|
-
"method": "handleKey",
|
|
981
|
-
"target": undefined,
|
|
982
|
-
"capture": false,
|
|
983
|
-
"passive": false
|
|
984
|
-
}, {
|
|
985
|
-
"name": "keydown",
|
|
986
|
-
"method": "toggleTabbingOn",
|
|
987
|
-
"target": undefined,
|
|
988
|
-
"capture": false,
|
|
989
|
-
"passive": false
|
|
990
|
-
}, {
|
|
991
|
-
"name": "mousedown",
|
|
992
|
-
"method": "toggleTabbingOff",
|
|
993
|
-
"target": "window",
|
|
994
|
-
"capture": false,
|
|
995
|
-
"passive": true
|
|
996
|
-
}, {
|
|
997
|
-
"name": "click",
|
|
998
|
-
"method": "blurHandler",
|
|
999
|
-
"target": "document",
|
|
1000
|
-
"capture": false,
|
|
1001
|
-
"passive": false
|
|
1002
|
-
}]; }
|
|
1003
|
-
}
|