@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
|
@@ -3,6 +3,16 @@ export interface ComponentDecorator {
|
|
|
3
3
|
(opts?: ComponentOptions): ClassDecorator;
|
|
4
4
|
}
|
|
5
5
|
export interface ComponentOptions {
|
|
6
|
+
/**
|
|
7
|
+
* When set to `true` this component will be form-associated. See
|
|
8
|
+
* https://stenciljs.com/docs/next/form-associated documentation on how to
|
|
9
|
+
* build form-associated Stencil components that integrate into forms like
|
|
10
|
+
* native browser elements such as `<input>` and `<textarea>`.
|
|
11
|
+
*
|
|
12
|
+
* The {@link AttachInternals} decorator allows for access to the
|
|
13
|
+
* `ElementInternals` object to modify the associated form.
|
|
14
|
+
*/
|
|
15
|
+
formAssociated?: boolean;
|
|
6
16
|
/**
|
|
7
17
|
* Tag name of the web component. Ideally, the tag name must be globally unique,
|
|
8
18
|
* so it's recommended to choose an unique prefix for all your components within the same collection.
|
|
@@ -62,7 +72,7 @@ export interface PropOptions {
|
|
|
62
72
|
/**
|
|
63
73
|
* The name of the associated DOM attribute.
|
|
64
74
|
* Stencil uses different heuristics to determine the default name of the attribute,
|
|
65
|
-
* but using this property, you can override the default
|
|
75
|
+
* but using this property, you can override the default behavior.
|
|
66
76
|
*/
|
|
67
77
|
attribute?: string | null;
|
|
68
78
|
/**
|
|
@@ -107,6 +117,9 @@ export interface EventOptions {
|
|
|
107
117
|
*/
|
|
108
118
|
composed?: boolean;
|
|
109
119
|
}
|
|
120
|
+
export interface AttachInternalsDecorator {
|
|
121
|
+
(): PropertyDecorator;
|
|
122
|
+
}
|
|
110
123
|
export interface ListenDecorator {
|
|
111
124
|
(eventName: string, opts?: ListenOptions): CustomMethodDecorator<any>;
|
|
112
125
|
}
|
|
@@ -128,12 +141,12 @@ export interface ListenOptions {
|
|
|
128
141
|
* By default, Stencil uses several heuristics to determine if
|
|
129
142
|
* it must attach a `passive` event listener or not.
|
|
130
143
|
*
|
|
131
|
-
* Using the `passive` option can be used to change the default
|
|
144
|
+
* Using the `passive` option can be used to change the default behavior.
|
|
132
145
|
* Please see https://developers.google.com/web/updates/2016/06/passive-event-listeners for further information.
|
|
133
146
|
*/
|
|
134
147
|
passive?: boolean;
|
|
135
148
|
}
|
|
136
|
-
export
|
|
149
|
+
export type ListenTargetOptions = 'body' | 'document' | 'window';
|
|
137
150
|
export interface StateDecorator {
|
|
138
151
|
(): PropertyDecorator;
|
|
139
152
|
}
|
|
@@ -175,6 +188,12 @@ export declare const Element: ElementDecorator;
|
|
|
175
188
|
* https://stenciljs.com/docs/events
|
|
176
189
|
*/
|
|
177
190
|
export declare const Event: EventDecorator;
|
|
191
|
+
/**
|
|
192
|
+
* If the `formAssociated` option is set in options passed to the
|
|
193
|
+
* `@Component()` decorator then this decorator may be used to get access to the
|
|
194
|
+
* `ElementInternals` instance associated with the component.
|
|
195
|
+
*/
|
|
196
|
+
export declare const AttachInternals: AttachInternalsDecorator;
|
|
178
197
|
/**
|
|
179
198
|
* The `Listen()` decorator is for listening DOM events, including the ones
|
|
180
199
|
* dispatched from `@Events()`.
|
|
@@ -214,19 +233,31 @@ export declare const State: StateDecorator;
|
|
|
214
233
|
* https://stenciljs.com/docs/reactive-data#watch-decorator
|
|
215
234
|
*/
|
|
216
235
|
export declare const Watch: WatchDecorator;
|
|
217
|
-
export
|
|
218
|
-
export
|
|
236
|
+
export type ResolutionHandler = (elm: HTMLElement) => string | undefined | null;
|
|
237
|
+
export type ErrorHandler = (err: any, element?: HTMLElement) => void;
|
|
219
238
|
/**
|
|
220
239
|
* `setMode()` is used for libraries which provide multiple "modes" for styles.
|
|
221
240
|
*/
|
|
222
241
|
export declare const setMode: (handler: ResolutionHandler) => void;
|
|
223
242
|
/**
|
|
224
|
-
* getMode
|
|
243
|
+
* `getMode()` is used for libraries which provide multiple "modes" for styles.
|
|
244
|
+
* @param ref a reference to the node to get styles for
|
|
245
|
+
* @returns the current mode or undefined, if not found
|
|
225
246
|
*/
|
|
226
247
|
export declare function getMode<T = string | undefined>(ref: any): T;
|
|
248
|
+
export declare function setPlatformHelpers(helpers: {
|
|
249
|
+
jmp?: (c: any) => any;
|
|
250
|
+
raf?: (c: any) => number;
|
|
251
|
+
ael?: (el: any, eventName: string, listener: any, options: any) => void;
|
|
252
|
+
rel?: (el: any, eventName: string, listener: any, options: any) => void;
|
|
253
|
+
ce?: (eventName: string, opts?: any) => any;
|
|
254
|
+
}): void;
|
|
227
255
|
/**
|
|
228
256
|
* Get the base path to where the assets can be found. Use `setAssetPath(path)`
|
|
229
257
|
* if the path needs to be customized.
|
|
258
|
+
* @param path the path to use in calculating the asset path. this value will be
|
|
259
|
+
* used in conjunction with the base asset path
|
|
260
|
+
* @returns the base path
|
|
230
261
|
*/
|
|
231
262
|
export declare function getAssetPath(path: string): string;
|
|
232
263
|
/**
|
|
@@ -239,22 +270,38 @@ export declare function getAssetPath(path: string): string;
|
|
|
239
270
|
* `setAssetPath(document.currentScript.src)`, or using a bundler's replace plugin to
|
|
240
271
|
* dynamically set the path at build time, such as `setAssetPath(process.env.ASSET_PATH)`.
|
|
241
272
|
* But do note that this configuration depends on how your script is bundled, or lack of
|
|
242
|
-
*
|
|
273
|
+
* bundling, and where your assets can be loaded from. Additionally custom bundling
|
|
243
274
|
* will have to ensure the static assets are copied to its build directory.
|
|
275
|
+
* @param path the asset path to set
|
|
276
|
+
* @returns the set path
|
|
244
277
|
*/
|
|
245
278
|
export declare function setAssetPath(path: string): string;
|
|
246
279
|
/**
|
|
247
|
-
*
|
|
280
|
+
* Used to specify a nonce value that corresponds with an application's
|
|
281
|
+
* [Content Security Policy (CSP)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP).
|
|
282
|
+
* When set, the nonce will be added to all dynamically created script and style tags at runtime.
|
|
283
|
+
* Alternatively, the nonce value can be set on a `meta` tag in the DOM head
|
|
284
|
+
* (<meta name="csp-nonce" content="{ nonce value here }" />) and will result in the same behavior.
|
|
285
|
+
* @param nonce The value to be used for the nonce attribute.
|
|
286
|
+
*/
|
|
287
|
+
export declare function setNonce(nonce: string): void;
|
|
288
|
+
/**
|
|
289
|
+
* Retrieve a Stencil element for a given reference
|
|
290
|
+
* @param ref the ref to get the Stencil element for
|
|
291
|
+
* @returns a reference to the element
|
|
248
292
|
*/
|
|
249
293
|
export declare function getElement(ref: any): HTMLStencilElement;
|
|
250
294
|
/**
|
|
251
295
|
* Schedules a new render of the given instance or element even if no state changed.
|
|
252
296
|
*
|
|
253
|
-
* Notice `forceUpdate()` is not
|
|
297
|
+
* Notice `forceUpdate()` is not synchronous and might perform the DOM render in the next frame.
|
|
298
|
+
*
|
|
299
|
+
* @param ref the node/element to force the re-render of
|
|
254
300
|
*/
|
|
255
301
|
export declare function forceUpdate(ref: any): void;
|
|
256
302
|
/**
|
|
257
303
|
* getRenderingRef
|
|
304
|
+
* @returns the rendering ref
|
|
258
305
|
*/
|
|
259
306
|
export declare function getRenderingRef(): any;
|
|
260
307
|
export interface HTMLStencilElement extends HTMLElement {
|
|
@@ -265,6 +312,8 @@ export interface HTMLStencilElement extends HTMLElement {
|
|
|
265
312
|
* in the best moment to perform DOM mutation without causing layout thrashing.
|
|
266
313
|
*
|
|
267
314
|
* For further information: https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing
|
|
315
|
+
*
|
|
316
|
+
* @param task the DOM-write to schedule
|
|
268
317
|
*/
|
|
269
318
|
export declare function writeTask(task: RafCallback): void;
|
|
270
319
|
/**
|
|
@@ -272,6 +321,8 @@ export declare function writeTask(task: RafCallback): void;
|
|
|
272
321
|
* in the best moment to perform DOM reads without causing layout thrashing.
|
|
273
322
|
*
|
|
274
323
|
* For further information: https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing
|
|
324
|
+
*
|
|
325
|
+
* @param task the DOM-read to schedule
|
|
275
326
|
*/
|
|
276
327
|
export declare function readTask(task: RafCallback): void;
|
|
277
328
|
/**
|
|
@@ -400,7 +451,7 @@ export interface QueueApi {
|
|
|
400
451
|
/**
|
|
401
452
|
* Host
|
|
402
453
|
*/
|
|
403
|
-
interface HostAttributes {
|
|
454
|
+
export interface HostAttributes {
|
|
404
455
|
class?: string | {
|
|
405
456
|
[className: string]: boolean;
|
|
406
457
|
};
|
|
@@ -410,13 +461,57 @@ interface HostAttributes {
|
|
|
410
461
|
ref?: (el: HTMLElement | null) => void;
|
|
411
462
|
[prop: string]: any;
|
|
412
463
|
}
|
|
464
|
+
/**
|
|
465
|
+
* Utilities for working with functional Stencil components. An object
|
|
466
|
+
* conforming to this interface is passed by the Stencil runtime as the third
|
|
467
|
+
* argument to a functional component, allowing component authors to work with
|
|
468
|
+
* features like children.
|
|
469
|
+
*
|
|
470
|
+
* The children of a functional component will be passed as the second
|
|
471
|
+
* argument, so a functional component which uses these utils to transform its
|
|
472
|
+
* children might look like the following:
|
|
473
|
+
*
|
|
474
|
+
* ```ts
|
|
475
|
+
* export const AddClass: FunctionalComponent = (_, children, utils) => (
|
|
476
|
+
* utils.map(children, child => ({
|
|
477
|
+
* ...child,
|
|
478
|
+
* vattrs: {
|
|
479
|
+
* ...child.vattrs,
|
|
480
|
+
* class: `${child.vattrs.class} add-class`
|
|
481
|
+
* }
|
|
482
|
+
* }))
|
|
483
|
+
* );
|
|
484
|
+
* ```
|
|
485
|
+
*
|
|
486
|
+
* For more see the Stencil documentation, here:
|
|
487
|
+
* https://stenciljs.com/docs/functional-components
|
|
488
|
+
*/
|
|
413
489
|
export interface FunctionalUtilities {
|
|
490
|
+
/**
|
|
491
|
+
* Utility for reading the children of a functional component at runtime.
|
|
492
|
+
* Since the Stencil runtime uses a different interface for children it is
|
|
493
|
+
* not recommended to read the children directly, and is preferable to use
|
|
494
|
+
* this utility to, for instance, perform a side effect for each child.
|
|
495
|
+
*/
|
|
414
496
|
forEach: (children: VNode[], cb: (vnode: ChildNode, index: number, array: ChildNode[]) => void) => void;
|
|
497
|
+
/**
|
|
498
|
+
* Utility for transforming the children of a functional component. Given an
|
|
499
|
+
* array of children and a callback this will return a list of the results of
|
|
500
|
+
* passing each child to the supplied callback.
|
|
501
|
+
*/
|
|
415
502
|
map: (children: VNode[], cb: (vnode: ChildNode, index: number, array: ChildNode[]) => ChildNode) => VNode[];
|
|
416
503
|
}
|
|
417
504
|
export interface FunctionalComponent<T = {}> {
|
|
418
505
|
(props: T, children: VNode[], utils: FunctionalUtilities): VNode | VNode[];
|
|
419
506
|
}
|
|
507
|
+
/**
|
|
508
|
+
* A Child VDOM node
|
|
509
|
+
*
|
|
510
|
+
* This has most of the same properties as {@link VNode} but friendlier names
|
|
511
|
+
* (i.e. `vtag` instead of `$tag$`, `vchildren` instead of `$children$`) in
|
|
512
|
+
* order to provide a friendlier public interface for users of the
|
|
513
|
+
* {@link FunctionalUtilities}).
|
|
514
|
+
*/
|
|
420
515
|
export interface ChildNode {
|
|
421
516
|
vtag?: string | number | Function;
|
|
422
517
|
vkey?: string | number;
|
|
@@ -463,6 +558,9 @@ export declare function h(sel: any, children: Array<VNode | undefined | null>):
|
|
|
463
558
|
export declare function h(sel: any, data: VNodeData | null, text: string): VNode;
|
|
464
559
|
export declare function h(sel: any, data: VNodeData | null, children: Array<VNode | undefined | null>): VNode;
|
|
465
560
|
export declare function h(sel: any, data: VNodeData | null, children: VNode): VNode;
|
|
561
|
+
/**
|
|
562
|
+
* A virtual DOM node
|
|
563
|
+
*/
|
|
466
564
|
export interface VNode {
|
|
467
565
|
$flags$: number;
|
|
468
566
|
$tag$: string | number | Function;
|
|
@@ -659,7 +757,7 @@ export declare namespace JSXBase {
|
|
|
659
757
|
use: JSXBase.SVGAttributes;
|
|
660
758
|
view: JSXBase.SVGAttributes;
|
|
661
759
|
}
|
|
662
|
-
interface SlotAttributes {
|
|
760
|
+
interface SlotAttributes extends JSXAttributes {
|
|
663
761
|
name?: string;
|
|
664
762
|
slot?: string;
|
|
665
763
|
onSlotchange?: (event: Event) => void;
|
|
@@ -670,8 +768,10 @@ export declare namespace JSXBase {
|
|
|
670
768
|
hrefLang?: string;
|
|
671
769
|
hreflang?: string;
|
|
672
770
|
media?: string;
|
|
771
|
+
ping?: string;
|
|
673
772
|
rel?: string;
|
|
674
773
|
target?: string;
|
|
774
|
+
referrerPolicy?: ReferrerPolicy;
|
|
675
775
|
}
|
|
676
776
|
interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
677
777
|
}
|
|
@@ -695,7 +795,6 @@ export declare namespace JSXBase {
|
|
|
695
795
|
cite?: string;
|
|
696
796
|
}
|
|
697
797
|
interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
698
|
-
autoFocus?: boolean;
|
|
699
798
|
disabled?: boolean;
|
|
700
799
|
form?: string;
|
|
701
800
|
formAction?: string;
|
|
@@ -711,6 +810,9 @@ export declare namespace JSXBase {
|
|
|
711
810
|
name?: string;
|
|
712
811
|
type?: string;
|
|
713
812
|
value?: string | string[] | number;
|
|
813
|
+
popoverTargetAction?: string;
|
|
814
|
+
popoverTargetElement?: Element | null;
|
|
815
|
+
popoverTarget?: string;
|
|
714
816
|
}
|
|
715
817
|
interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
716
818
|
height?: number | string;
|
|
@@ -732,6 +834,7 @@ export declare namespace JSXBase {
|
|
|
732
834
|
datetime?: string;
|
|
733
835
|
}
|
|
734
836
|
interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
837
|
+
onCancel?: (event: Event) => void;
|
|
735
838
|
onClose?: (event: Event) => void;
|
|
736
839
|
open?: boolean;
|
|
737
840
|
returnValue?: string;
|
|
@@ -791,6 +894,8 @@ export declare namespace JSXBase {
|
|
|
791
894
|
}
|
|
792
895
|
interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
793
896
|
alt?: string;
|
|
897
|
+
crossOrigin?: string;
|
|
898
|
+
crossorigin?: string;
|
|
794
899
|
decoding?: 'async' | 'auto' | 'sync';
|
|
795
900
|
importance?: 'low' | 'auto' | 'high';
|
|
796
901
|
height?: number | string;
|
|
@@ -812,12 +917,10 @@ export declare namespace JSXBase {
|
|
|
812
917
|
accept?: string;
|
|
813
918
|
allowdirs?: boolean;
|
|
814
919
|
alt?: string;
|
|
815
|
-
autoCapitalize?:
|
|
816
|
-
autocapitalize?:
|
|
920
|
+
autoCapitalize?: string;
|
|
921
|
+
autocapitalize?: string;
|
|
817
922
|
autoComplete?: string;
|
|
818
923
|
autocomplete?: string;
|
|
819
|
-
autoFocus?: boolean;
|
|
820
|
-
autofocus?: boolean | string;
|
|
821
924
|
capture?: string;
|
|
822
925
|
checked?: boolean;
|
|
823
926
|
crossOrigin?: string;
|
|
@@ -849,6 +952,8 @@ export declare namespace JSXBase {
|
|
|
849
952
|
minlength?: number | string;
|
|
850
953
|
multiple?: boolean;
|
|
851
954
|
name?: string;
|
|
955
|
+
onSelect?: (event: Event) => void;
|
|
956
|
+
onselect?: (event: Event) => void;
|
|
852
957
|
pattern?: string;
|
|
853
958
|
placeholder?: string;
|
|
854
959
|
readOnly?: boolean;
|
|
@@ -867,10 +972,11 @@ export declare namespace JSXBase {
|
|
|
867
972
|
webkitdirectory?: boolean;
|
|
868
973
|
webkitEntries?: any;
|
|
869
974
|
width?: number | string;
|
|
975
|
+
popoverTargetAction?: string;
|
|
976
|
+
popoverTargetElement?: Element | null;
|
|
977
|
+
popoverTarget?: string;
|
|
870
978
|
}
|
|
871
979
|
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
872
|
-
autoFocus?: boolean;
|
|
873
|
-
autofocus?: boolean | string;
|
|
874
980
|
challenge?: string;
|
|
875
981
|
disabled?: boolean;
|
|
876
982
|
form?: string;
|
|
@@ -883,7 +989,6 @@ export declare namespace JSXBase {
|
|
|
883
989
|
interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
884
990
|
form?: string;
|
|
885
991
|
htmlFor?: string;
|
|
886
|
-
htmlfor?: string;
|
|
887
992
|
}
|
|
888
993
|
interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
889
994
|
value?: string | string[] | number;
|
|
@@ -994,7 +1099,6 @@ export declare namespace JSXBase {
|
|
|
994
1099
|
interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
995
1100
|
form?: string;
|
|
996
1101
|
htmlFor?: string;
|
|
997
|
-
htmlfor?: string;
|
|
998
1102
|
name?: string;
|
|
999
1103
|
}
|
|
1000
1104
|
interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
@@ -1019,7 +1123,6 @@ export declare namespace JSXBase {
|
|
|
1019
1123
|
type?: string;
|
|
1020
1124
|
}
|
|
1021
1125
|
interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1022
|
-
autoFocus?: boolean;
|
|
1023
1126
|
disabled?: boolean;
|
|
1024
1127
|
form?: string;
|
|
1025
1128
|
multiple?: boolean;
|
|
@@ -1030,11 +1133,13 @@ export declare namespace JSXBase {
|
|
|
1030
1133
|
autocomplete?: string;
|
|
1031
1134
|
}
|
|
1032
1135
|
interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1136
|
+
height?: number;
|
|
1033
1137
|
media?: string;
|
|
1034
1138
|
sizes?: string;
|
|
1035
1139
|
src?: string;
|
|
1036
1140
|
srcSet?: string;
|
|
1037
1141
|
type?: string;
|
|
1142
|
+
width?: number;
|
|
1038
1143
|
}
|
|
1039
1144
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1040
1145
|
media?: string;
|
|
@@ -1050,8 +1155,8 @@ export declare namespace JSXBase {
|
|
|
1050
1155
|
summary?: string;
|
|
1051
1156
|
}
|
|
1052
1157
|
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1053
|
-
|
|
1054
|
-
|
|
1158
|
+
autoComplete?: string;
|
|
1159
|
+
autocomplete?: string;
|
|
1055
1160
|
cols?: number;
|
|
1056
1161
|
disabled?: boolean;
|
|
1057
1162
|
form?: string;
|
|
@@ -1060,6 +1165,8 @@ export declare namespace JSXBase {
|
|
|
1060
1165
|
minLength?: number;
|
|
1061
1166
|
minlength?: number | string;
|
|
1062
1167
|
name?: string;
|
|
1168
|
+
onSelect?: (event: Event) => void;
|
|
1169
|
+
onselect?: (event: Event) => void;
|
|
1063
1170
|
placeholder?: string;
|
|
1064
1171
|
readOnly?: boolean;
|
|
1065
1172
|
readonly?: boolean | string;
|
|
@@ -1102,6 +1209,8 @@ export declare namespace JSXBase {
|
|
|
1102
1209
|
interface HTMLAttributes<T = HTMLElement> extends DOMAttributes<T> {
|
|
1103
1210
|
innerHTML?: string;
|
|
1104
1211
|
accessKey?: string;
|
|
1212
|
+
autoFocus?: boolean;
|
|
1213
|
+
autofocus?: boolean | string;
|
|
1105
1214
|
class?: string | {
|
|
1106
1215
|
[className: string]: boolean;
|
|
1107
1216
|
};
|
|
@@ -1113,6 +1222,7 @@ export declare namespace JSXBase {
|
|
|
1113
1222
|
draggable?: boolean;
|
|
1114
1223
|
hidden?: boolean;
|
|
1115
1224
|
id?: string;
|
|
1225
|
+
inert?: boolean;
|
|
1116
1226
|
lang?: string;
|
|
1117
1227
|
spellcheck?: 'true' | 'false' | any;
|
|
1118
1228
|
style?: {
|
|
@@ -1121,6 +1231,7 @@ export declare namespace JSXBase {
|
|
|
1121
1231
|
tabIndex?: number;
|
|
1122
1232
|
tabindex?: number | string;
|
|
1123
1233
|
title?: string;
|
|
1234
|
+
popover?: string | null;
|
|
1124
1235
|
inputMode?: string;
|
|
1125
1236
|
inputmode?: string;
|
|
1126
1237
|
enterKeyHint?: string;
|
|
@@ -1137,8 +1248,8 @@ export declare namespace JSXBase {
|
|
|
1137
1248
|
resource?: string;
|
|
1138
1249
|
typeof?: string;
|
|
1139
1250
|
vocab?: string;
|
|
1140
|
-
autoCapitalize?:
|
|
1141
|
-
autocapitalize?:
|
|
1251
|
+
autoCapitalize?: string;
|
|
1252
|
+
autocapitalize?: string;
|
|
1142
1253
|
autoCorrect?: string;
|
|
1143
1254
|
autocorrect?: string;
|
|
1144
1255
|
autoSave?: string;
|
|
@@ -1159,87 +1270,87 @@ export declare namespace JSXBase {
|
|
|
1159
1270
|
unselectable?: boolean;
|
|
1160
1271
|
}
|
|
1161
1272
|
interface SVGAttributes<T = SVGElement> extends DOMAttributes<T> {
|
|
1162
|
-
|
|
1273
|
+
class?: string | {
|
|
1163
1274
|
[className: string]: boolean;
|
|
1164
1275
|
};
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1276
|
+
color?: string;
|
|
1277
|
+
height?: number | string;
|
|
1278
|
+
id?: string;
|
|
1279
|
+
lang?: string;
|
|
1280
|
+
max?: number | string;
|
|
1281
|
+
media?: string;
|
|
1282
|
+
method?: string;
|
|
1283
|
+
min?: number | string;
|
|
1284
|
+
name?: string;
|
|
1285
|
+
style?: {
|
|
1175
1286
|
[key: string]: string | undefined;
|
|
1176
1287
|
};
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1288
|
+
target?: string;
|
|
1289
|
+
type?: string;
|
|
1290
|
+
width?: number | string;
|
|
1291
|
+
role?: string;
|
|
1292
|
+
tabindex?: number;
|
|
1182
1293
|
'accent-height'?: number | string;
|
|
1183
|
-
|
|
1184
|
-
|
|
1294
|
+
accumulate?: 'none' | 'sum';
|
|
1295
|
+
additive?: 'replace' | 'sum';
|
|
1185
1296
|
'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1297
|
+
allowReorder?: 'no' | 'yes';
|
|
1298
|
+
alphabetic?: number | string;
|
|
1299
|
+
amplitude?: number | string;
|
|
1189
1300
|
'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated';
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1301
|
+
ascent?: number | string;
|
|
1302
|
+
attributeName?: string;
|
|
1303
|
+
attributeType?: string;
|
|
1304
|
+
autoReverse?: number | string;
|
|
1305
|
+
azimuth?: number | string;
|
|
1306
|
+
baseFrequency?: number | string;
|
|
1196
1307
|
'baseline-shift'?: number | string;
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1308
|
+
baseProfile?: number | string;
|
|
1309
|
+
bbox?: number | string;
|
|
1310
|
+
begin?: number | string;
|
|
1311
|
+
bias?: number | string;
|
|
1312
|
+
by?: number | string;
|
|
1313
|
+
calcMode?: number | string;
|
|
1203
1314
|
'cap-height'?: number | string;
|
|
1204
|
-
|
|
1315
|
+
clip?: number | string;
|
|
1205
1316
|
'clip-path'?: string;
|
|
1206
|
-
|
|
1317
|
+
clipPathUnits?: number | string;
|
|
1207
1318
|
'clip-rule'?: number | string;
|
|
1208
1319
|
'color-interpolation'?: number | string;
|
|
1209
|
-
'color-interpolation-filters'?: 'auto' | '
|
|
1320
|
+
'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB';
|
|
1210
1321
|
'color-profile'?: number | string;
|
|
1211
1322
|
'color-rendering'?: number | string;
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1323
|
+
contentScriptType?: number | string;
|
|
1324
|
+
contentStyleType?: number | string;
|
|
1325
|
+
cursor?: number | string;
|
|
1326
|
+
cx?: number | string;
|
|
1327
|
+
cy?: number | string;
|
|
1328
|
+
d?: string;
|
|
1329
|
+
decelerate?: number | string;
|
|
1330
|
+
descent?: number | string;
|
|
1331
|
+
diffuseConstant?: number | string;
|
|
1332
|
+
direction?: number | string;
|
|
1333
|
+
display?: number | string;
|
|
1334
|
+
divisor?: number | string;
|
|
1224
1335
|
'dominant-baseline'?: number | string;
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1336
|
+
dur?: number | string;
|
|
1337
|
+
dx?: number | string;
|
|
1338
|
+
dy?: number | string;
|
|
1228
1339
|
'edge-mode'?: number | string;
|
|
1229
|
-
|
|
1340
|
+
elevation?: number | string;
|
|
1230
1341
|
'enable-background'?: number | string;
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1342
|
+
end?: number | string;
|
|
1343
|
+
exponent?: number | string;
|
|
1344
|
+
externalResourcesRequired?: number | string;
|
|
1345
|
+
fill?: string;
|
|
1235
1346
|
'fill-opacity'?: number | string;
|
|
1236
1347
|
'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit';
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1348
|
+
filter?: string;
|
|
1349
|
+
filterRes?: number | string;
|
|
1350
|
+
filterUnits?: number | string;
|
|
1240
1351
|
'flood-color'?: number | string;
|
|
1241
1352
|
'flood-opacity'?: number | string;
|
|
1242
|
-
|
|
1353
|
+
focusable?: number | string;
|
|
1243
1354
|
'font-family'?: string;
|
|
1244
1355
|
'font-size'?: number | string;
|
|
1245
1356
|
'font-size-adjust'?: number | string;
|
|
@@ -1247,113 +1358,113 @@ export declare namespace JSXBase {
|
|
|
1247
1358
|
'font-style'?: number | string;
|
|
1248
1359
|
'font-variant'?: number | string;
|
|
1249
1360
|
'font-weight'?: number | string;
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1361
|
+
format?: number | string;
|
|
1362
|
+
from?: number | string;
|
|
1363
|
+
fx?: number | string;
|
|
1364
|
+
fy?: number | string;
|
|
1365
|
+
g1?: number | string;
|
|
1366
|
+
g2?: number | string;
|
|
1256
1367
|
'glyph-name'?: number | string;
|
|
1257
1368
|
'glyph-orientation-horizontal'?: number | string;
|
|
1258
1369
|
'glyph-orientation-vertical'?: number | string;
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1370
|
+
glyphRef?: number | string;
|
|
1371
|
+
gradientTransform?: string;
|
|
1372
|
+
gradientUnits?: string;
|
|
1373
|
+
hanging?: number | string;
|
|
1263
1374
|
'horiz-adv-x'?: number | string;
|
|
1264
1375
|
'horiz-origin-x'?: number | string;
|
|
1265
|
-
|
|
1266
|
-
|
|
1376
|
+
href?: string;
|
|
1377
|
+
ideographic?: number | string;
|
|
1267
1378
|
'image-rendering'?: number | string;
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1379
|
+
in2?: number | string;
|
|
1380
|
+
in?: string;
|
|
1381
|
+
intercept?: number | string;
|
|
1382
|
+
k1?: number | string;
|
|
1383
|
+
k2?: number | string;
|
|
1384
|
+
k3?: number | string;
|
|
1385
|
+
k4?: number | string;
|
|
1386
|
+
k?: number | string;
|
|
1387
|
+
kernelMatrix?: number | string;
|
|
1388
|
+
kernelUnitLength?: number | string;
|
|
1389
|
+
kerning?: number | string;
|
|
1390
|
+
keyPoints?: number | string;
|
|
1391
|
+
keySplines?: number | string;
|
|
1392
|
+
keyTimes?: number | string;
|
|
1393
|
+
lengthAdjust?: number | string;
|
|
1283
1394
|
'letter-spacing'?: number | string;
|
|
1284
1395
|
'lighting-color'?: number | string;
|
|
1285
|
-
|
|
1286
|
-
|
|
1396
|
+
limitingConeAngle?: number | string;
|
|
1397
|
+
local?: number | string;
|
|
1287
1398
|
'marker-end'?: string;
|
|
1288
|
-
|
|
1399
|
+
markerHeight?: number | string;
|
|
1289
1400
|
'marker-mid'?: string;
|
|
1290
1401
|
'marker-start'?: string;
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1402
|
+
markerUnits?: number | string;
|
|
1403
|
+
markerWidth?: number | string;
|
|
1404
|
+
mask?: string;
|
|
1405
|
+
maskContentUnits?: number | string;
|
|
1406
|
+
maskUnits?: number | string;
|
|
1407
|
+
mathematical?: number | string;
|
|
1408
|
+
mode?: number | string;
|
|
1409
|
+
numOctaves?: number | string;
|
|
1410
|
+
offset?: number | string;
|
|
1411
|
+
opacity?: number | string;
|
|
1412
|
+
operator?: number | string;
|
|
1413
|
+
order?: number | string;
|
|
1414
|
+
orient?: number | string;
|
|
1415
|
+
orientation?: number | string;
|
|
1416
|
+
origin?: number | string;
|
|
1417
|
+
overflow?: number | string;
|
|
1307
1418
|
'overline-position'?: number | string;
|
|
1308
1419
|
'overline-thickness'?: number | string;
|
|
1309
1420
|
'paint-order'?: number | string;
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1421
|
+
panose1?: number | string;
|
|
1422
|
+
pathLength?: number | string;
|
|
1423
|
+
patternContentUnits?: string;
|
|
1424
|
+
patternTransform?: number | string;
|
|
1425
|
+
patternUnits?: string;
|
|
1315
1426
|
'pointer-events'?: number | string;
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1427
|
+
points?: string;
|
|
1428
|
+
pointsAtX?: number | string;
|
|
1429
|
+
pointsAtY?: number | string;
|
|
1430
|
+
pointsAtZ?: number | string;
|
|
1431
|
+
preserveAlpha?: number | string;
|
|
1432
|
+
preserveAspectRatio?: string;
|
|
1433
|
+
primitiveUnits?: number | string;
|
|
1434
|
+
r?: number | string;
|
|
1435
|
+
radius?: number | string;
|
|
1436
|
+
refX?: number | string;
|
|
1437
|
+
refY?: number | string;
|
|
1327
1438
|
'rendering-intent'?: number | string;
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1439
|
+
repeatCount?: number | string;
|
|
1440
|
+
repeatDur?: number | string;
|
|
1441
|
+
requiredextensions?: number | string;
|
|
1442
|
+
requiredFeatures?: number | string;
|
|
1443
|
+
restart?: number | string;
|
|
1444
|
+
result?: string;
|
|
1445
|
+
rotate?: number | string;
|
|
1446
|
+
rx?: number | string;
|
|
1447
|
+
ry?: number | string;
|
|
1448
|
+
scale?: number | string;
|
|
1449
|
+
seed?: number | string;
|
|
1339
1450
|
'shape-rendering'?: number | string;
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1451
|
+
slope?: number | string;
|
|
1452
|
+
spacing?: number | string;
|
|
1453
|
+
specularConstant?: number | string;
|
|
1454
|
+
specularExponent?: number | string;
|
|
1455
|
+
speed?: number | string;
|
|
1456
|
+
spreadMethod?: string;
|
|
1457
|
+
startOffset?: number | string;
|
|
1458
|
+
stdDeviation?: number | string;
|
|
1459
|
+
stemh?: number | string;
|
|
1460
|
+
stemv?: number | string;
|
|
1461
|
+
stitchTiles?: number | string;
|
|
1351
1462
|
'stop-color'?: string;
|
|
1352
1463
|
'stop-opacity'?: number | string;
|
|
1353
1464
|
'strikethrough-position'?: number | string;
|
|
1354
1465
|
'strikethrough-thickness'?: number | string;
|
|
1355
|
-
|
|
1356
|
-
|
|
1466
|
+
string?: number | string;
|
|
1467
|
+
stroke?: string;
|
|
1357
1468
|
'stroke-dasharray'?: string | number;
|
|
1358
1469
|
'stroke-dashoffset'?: string | number;
|
|
1359
1470
|
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit';
|
|
@@ -1361,67 +1472,65 @@ export declare namespace JSXBase {
|
|
|
1361
1472
|
'stroke-miterlimit'?: string;
|
|
1362
1473
|
'stroke-opacity'?: number | string;
|
|
1363
1474
|
'stroke-width'?: number | string;
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1475
|
+
surfaceScale?: number | string;
|
|
1476
|
+
systemLanguage?: number | string;
|
|
1477
|
+
tableValues?: number | string;
|
|
1478
|
+
targetX?: number | string;
|
|
1479
|
+
targetY?: number | string;
|
|
1369
1480
|
'text-anchor'?: string;
|
|
1370
1481
|
'text-decoration'?: number | string;
|
|
1371
|
-
|
|
1482
|
+
textLength?: number | string;
|
|
1372
1483
|
'text-rendering'?: number | string;
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1484
|
+
to?: number | string;
|
|
1485
|
+
transform?: string;
|
|
1486
|
+
u1?: number | string;
|
|
1487
|
+
u2?: number | string;
|
|
1377
1488
|
'underline-position'?: number | string;
|
|
1378
1489
|
'underline-thickness'?: number | string;
|
|
1379
|
-
|
|
1490
|
+
unicode?: number | string;
|
|
1380
1491
|
'unicode-bidi'?: number | string;
|
|
1381
1492
|
'unicode-range'?: number | string;
|
|
1382
1493
|
'units-per-em'?: number | string;
|
|
1383
1494
|
'v-alphabetic'?: number | string;
|
|
1384
|
-
|
|
1495
|
+
values?: string;
|
|
1385
1496
|
'vector-effect'?: number | string;
|
|
1386
|
-
|
|
1497
|
+
version?: string;
|
|
1387
1498
|
'vert-adv-y'?: number | string;
|
|
1388
1499
|
'vert-origin-x'?: number | string;
|
|
1389
1500
|
'vert-origin-y'?: number | string;
|
|
1390
1501
|
'v-hanging'?: number | string;
|
|
1391
1502
|
'v-ideographic'?: number | string;
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1503
|
+
viewBox?: string;
|
|
1504
|
+
viewTarget?: number | string;
|
|
1505
|
+
visibility?: number | string;
|
|
1395
1506
|
'v-mathematical'?: number | string;
|
|
1396
|
-
|
|
1507
|
+
widths?: number | string;
|
|
1397
1508
|
'word-spacing'?: number | string;
|
|
1398
1509
|
'writing-mode'?: number | string;
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1510
|
+
x1?: number | string;
|
|
1511
|
+
x2?: number | string;
|
|
1512
|
+
x?: number | string;
|
|
1402
1513
|
'x-channel-selector'?: string;
|
|
1403
1514
|
'x-height'?: number | string;
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1515
|
+
xlinkActuate?: string;
|
|
1516
|
+
xlinkArcrole?: string;
|
|
1517
|
+
xlinkHref?: string;
|
|
1518
|
+
xlinkRole?: string;
|
|
1519
|
+
xlinkShow?: string;
|
|
1520
|
+
xlinkTitle?: string;
|
|
1521
|
+
xlinkType?: string;
|
|
1522
|
+
xmlBase?: string;
|
|
1523
|
+
xmlLang?: string;
|
|
1524
|
+
xmlns?: string;
|
|
1525
|
+
xmlSpace?: string;
|
|
1526
|
+
y1?: number | string;
|
|
1527
|
+
y2?: number | string;
|
|
1528
|
+
y?: number | string;
|
|
1529
|
+
yChannelSelector?: string;
|
|
1530
|
+
z?: number | string;
|
|
1531
|
+
zoomAndPan?: string;
|
|
1421
1532
|
}
|
|
1422
|
-
interface DOMAttributes<T
|
|
1423
|
-
key?: string | number;
|
|
1424
|
-
ref?: (elm?: T) => void;
|
|
1533
|
+
interface DOMAttributes<T> extends JSXAttributes<T> {
|
|
1425
1534
|
slot?: string;
|
|
1426
1535
|
part?: string;
|
|
1427
1536
|
exportparts?: string;
|
|
@@ -1431,12 +1540,12 @@ export declare namespace JSXBase {
|
|
|
1431
1540
|
onCutCapture?: (event: ClipboardEvent) => void;
|
|
1432
1541
|
onPaste?: (event: ClipboardEvent) => void;
|
|
1433
1542
|
onPasteCapture?: (event: ClipboardEvent) => void;
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1543
|
+
onCompositionend?: (event: CompositionEvent) => void;
|
|
1544
|
+
onCompositionendCapture?: (event: CompositionEvent) => void;
|
|
1545
|
+
onCompositionstart?: (event: CompositionEvent) => void;
|
|
1546
|
+
onCompositionstartCapture?: (event: CompositionEvent) => void;
|
|
1547
|
+
onCompositionupdate?: (event: CompositionEvent) => void;
|
|
1548
|
+
onCompositionupdateCapture?: (event: CompositionEvent) => void;
|
|
1440
1549
|
onFocus?: (event: FocusEvent) => void;
|
|
1441
1550
|
onFocusCapture?: (event: FocusEvent) => void;
|
|
1442
1551
|
onFocusin?: (event: FocusEvent) => void;
|
|
@@ -1447,8 +1556,8 @@ export declare namespace JSXBase {
|
|
|
1447
1556
|
onBlurCapture?: (event: FocusEvent) => void;
|
|
1448
1557
|
onChange?: (event: Event) => void;
|
|
1449
1558
|
onChangeCapture?: (event: Event) => void;
|
|
1450
|
-
onInput?: (event:
|
|
1451
|
-
onInputCapture?: (event:
|
|
1559
|
+
onInput?: (event: InputEvent) => void;
|
|
1560
|
+
onInputCapture?: (event: InputEvent) => void;
|
|
1452
1561
|
onReset?: (event: Event) => void;
|
|
1453
1562
|
onResetCapture?: (event: Event) => void;
|
|
1454
1563
|
onSubmit?: (event: Event) => void;
|
|
@@ -1538,10 +1647,20 @@ export declare namespace JSXBase {
|
|
|
1538
1647
|
onAnimationEndCapture?: (event: AnimationEvent) => void;
|
|
1539
1648
|
onAnimationIteration?: (event: AnimationEvent) => void;
|
|
1540
1649
|
onAnimationIterationCapture?: (event: AnimationEvent) => void;
|
|
1650
|
+
onTransitionCancel?: (event: TransitionEvent) => void;
|
|
1651
|
+
onTransitionCancelCapture?: (event: TransitionEvent) => void;
|
|
1541
1652
|
onTransitionEnd?: (event: TransitionEvent) => void;
|
|
1542
1653
|
onTransitionEndCapture?: (event: TransitionEvent) => void;
|
|
1654
|
+
onTransitionRun?: (event: TransitionEvent) => void;
|
|
1655
|
+
onTransitionRunCapture?: (event: TransitionEvent) => void;
|
|
1656
|
+
onTransitionStart?: (event: TransitionEvent) => void;
|
|
1657
|
+
onTransitionStartCapture?: (event: TransitionEvent) => void;
|
|
1543
1658
|
}
|
|
1544
1659
|
}
|
|
1660
|
+
export interface JSXAttributes<T = Element> {
|
|
1661
|
+
key?: string | number;
|
|
1662
|
+
ref?: (elm?: T) => void;
|
|
1663
|
+
}
|
|
1545
1664
|
export interface CustomElementsDefineOptions {
|
|
1546
1665
|
exclude?: string[];
|
|
1547
1666
|
resourcesUrl?: string;
|