@refinitiv-ui/elements 5.3.3 → 5.7.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/CHANGELOG.md +70 -0
- package/lib/accordion/custom-elements.json +49 -0
- package/lib/accordion/custom-elements.md +18 -0
- package/lib/accordion/index.d.ts +76 -0
- package/lib/accordion/index.js +136 -0
- package/lib/accordion/themes/halo/dark/index.js +3 -0
- package/lib/accordion/themes/halo/light/index.js +3 -0
- package/lib/accordion/themes/solar/charcoal/index.js +3 -0
- package/lib/accordion/themes/solar/pearl/index.js +3 -0
- package/lib/appstate-bar/custom-elements.json +49 -0
- package/lib/appstate-bar/custom-elements.md +22 -0
- package/lib/appstate-bar/index.d.ts +65 -0
- package/lib/appstate-bar/index.js +100 -0
- package/lib/appstate-bar/themes/halo/dark/index.js +3 -0
- package/lib/appstate-bar/themes/halo/light/index.js +3 -0
- package/lib/appstate-bar/themes/solar/charcoal/index.js +3 -0
- package/lib/appstate-bar/themes/solar/pearl/index.js +3 -0
- package/lib/autosuggest/custom-elements.json +233 -0
- package/lib/autosuggest/custom-elements.md +47 -0
- package/lib/autosuggest/helpers/types.d.ts +54 -0
- package/lib/autosuggest/helpers/types.js +1 -0
- package/lib/autosuggest/helpers/utils.d.ts +39 -0
- package/lib/autosuggest/helpers/utils.js +75 -0
- package/lib/autosuggest/index.d.ts +534 -0
- package/lib/autosuggest/index.js +1251 -0
- package/lib/autosuggest/themes/halo/dark/index.js +5 -0
- package/lib/autosuggest/themes/halo/light/index.js +5 -0
- package/lib/autosuggest/themes/solar/charcoal/index.js +5 -0
- package/lib/autosuggest/themes/solar/pearl/index.js +5 -0
- package/lib/button/custom-elements.json +119 -0
- package/lib/button/custom-elements.md +23 -0
- package/lib/button/index.d.ts +132 -0
- package/lib/button/index.js +223 -0
- package/lib/button/themes/halo/dark/index.js +3 -0
- package/lib/button/themes/halo/light/index.js +3 -0
- package/lib/button/themes/solar/charcoal/index.js +3 -0
- package/lib/button/themes/solar/pearl/index.js +3 -0
- package/lib/button-bar/custom-elements.json +26 -0
- package/lib/button-bar/custom-elements.md +9 -0
- package/lib/button-bar/index.d.ts +76 -0
- package/lib/button-bar/index.js +155 -0
- package/lib/button-bar/themes/halo/dark/index.js +3 -0
- package/lib/button-bar/themes/halo/light/index.js +3 -0
- package/lib/button-bar/themes/solar/charcoal/index.js +3 -0
- package/lib/button-bar/themes/solar/pearl/index.js +3 -0
- package/lib/calendar/constants.d.ts +22 -0
- package/lib/calendar/constants.js +23 -0
- package/lib/calendar/custom-elements.json +199 -0
- package/lib/calendar/custom-elements.md +35 -0
- package/lib/calendar/index.d.ts +321 -0
- package/lib/calendar/index.js +906 -0
- package/lib/calendar/locales.d.ts +1 -0
- package/lib/calendar/locales.js +40 -0
- package/lib/calendar/themes/halo/dark/index.js +3 -0
- package/lib/calendar/themes/halo/light/index.js +3 -0
- package/lib/calendar/themes/solar/charcoal/index.js +3 -0
- package/lib/calendar/themes/solar/pearl/index.js +3 -0
- package/lib/calendar/types.d.ts +29 -0
- package/lib/calendar/types.js +1 -0
- package/lib/calendar/utils.d.ts +42 -0
- package/lib/calendar/utils.js +119 -0
- package/lib/canvas/custom-elements.json +69 -0
- package/lib/canvas/custom-elements.md +27 -0
- package/lib/canvas/index.d.ts +100 -0
- package/lib/canvas/index.js +172 -0
- package/lib/canvas/themes/halo/dark/index.js +2 -0
- package/lib/canvas/themes/halo/light/index.js +2 -0
- package/lib/canvas/themes/solar/charcoal/index.js +2 -0
- package/lib/canvas/themes/solar/pearl/index.js +2 -0
- package/lib/card/custom-elements.json +59 -0
- package/lib/card/custom-elements.md +24 -0
- package/lib/card/helpers/types.d.ts +12 -0
- package/lib/card/helpers/types.js +1 -0
- package/lib/card/index.d.ts +140 -0
- package/lib/card/index.js +246 -0
- package/lib/card/themes/halo/dark/index.js +5 -0
- package/lib/card/themes/halo/light/index.js +5 -0
- package/lib/card/themes/solar/charcoal/index.js +5 -0
- package/lib/card/themes/solar/pearl/index.js +5 -0
- package/lib/chart/custom-elements.json +42 -0
- package/lib/chart/custom-elements.md +16 -0
- package/lib/chart/helpers/index.d.ts +2 -0
- package/lib/chart/helpers/index.js +2 -0
- package/lib/chart/helpers/legend.d.ts +5 -0
- package/lib/chart/helpers/legend.js +78 -0
- package/lib/chart/helpers/merge.d.ts +15 -0
- package/lib/chart/helpers/merge.js +28 -0
- package/lib/chart/helpers/types.d.ts +69 -0
- package/lib/chart/helpers/types.js +1 -0
- package/lib/chart/index.d.ts +187 -0
- package/lib/chart/index.js +491 -0
- package/lib/chart/plugins/doughnut-center-label.d.ts +3 -0
- package/lib/chart/plugins/doughnut-center-label.js +196 -0
- package/lib/chart/themes/halo/dark/index.js +4 -0
- package/lib/chart/themes/halo/light/index.js +4 -0
- package/lib/chart/themes/solar/charcoal/index.js +4 -0
- package/lib/chart/themes/solar/pearl/index.js +4 -0
- package/lib/checkbox/custom-elements.json +67 -0
- package/lib/checkbox/custom-elements.md +18 -0
- package/lib/checkbox/index.d.ts +95 -0
- package/lib/checkbox/index.js +193 -0
- package/lib/checkbox/themes/halo/dark/index.js +4 -0
- package/lib/checkbox/themes/halo/light/index.js +4 -0
- package/lib/checkbox/themes/solar/charcoal/index.js +4 -0
- package/lib/checkbox/themes/solar/pearl/index.js +4 -0
- package/lib/clock/custom-elements.json +121 -0
- package/lib/clock/custom-elements.md +28 -0
- package/lib/clock/index.d.ts +319 -0
- package/lib/clock/index.js +581 -0
- package/lib/clock/themes/halo/dark/index.js +2 -0
- package/lib/clock/themes/halo/light/index.js +2 -0
- package/lib/clock/themes/solar/charcoal/index.js +2 -0
- package/lib/clock/themes/solar/pearl/index.js +2 -0
- package/lib/clock/utils/TickManager.d.ts +14 -0
- package/lib/clock/utils/TickManager.js +66 -0
- package/lib/clock/utils/timestamps.d.ts +6 -0
- package/lib/clock/utils/timestamps.js +6 -0
- package/lib/collapse/custom-elements.json +79 -0
- package/lib/collapse/custom-elements.md +27 -0
- package/lib/collapse/index.d.ts +119 -0
- package/lib/collapse/index.js +197 -0
- package/lib/collapse/themes/halo/dark/index.js +5 -0
- package/lib/collapse/themes/halo/light/index.js +5 -0
- package/lib/collapse/themes/solar/charcoal/index.js +5 -0
- package/lib/collapse/themes/solar/pearl/index.js +5 -0
- package/lib/color-dialog/custom-elements.json +193 -0
- package/lib/color-dialog/custom-elements.md +39 -0
- package/lib/color-dialog/elements/color-palettes.d.ts +52 -0
- package/lib/color-dialog/elements/color-palettes.js +101 -0
- package/lib/color-dialog/elements/grayscale-palettes.d.ts +67 -0
- package/lib/color-dialog/elements/grayscale-palettes.js +161 -0
- package/lib/color-dialog/elements/palettes.d.ts +65 -0
- package/lib/color-dialog/elements/palettes.js +132 -0
- package/lib/color-dialog/helpers/color-helpers.d.ts +16 -0
- package/lib/color-dialog/helpers/color-helpers.js +161 -0
- package/lib/color-dialog/helpers/value-model.d.ts +75 -0
- package/lib/color-dialog/helpers/value-model.js +141 -0
- package/lib/color-dialog/index.d.ts +232 -0
- package/lib/color-dialog/index.js +459 -0
- package/lib/color-dialog/themes/halo/dark/index.js +7 -0
- package/lib/color-dialog/themes/halo/light/index.js +7 -0
- package/lib/color-dialog/themes/solar/charcoal/index.js +7 -0
- package/lib/color-dialog/themes/solar/pearl/index.js +7 -0
- package/lib/combo-box/custom-elements.json +210 -0
- package/lib/combo-box/custom-elements.md +35 -0
- package/lib/combo-box/helpers/filter.d.ts +10 -0
- package/lib/combo-box/helpers/filter.js +29 -0
- package/lib/combo-box/helpers/keyboard-event.d.ts +17 -0
- package/lib/combo-box/helpers/keyboard-event.js +19 -0
- package/lib/combo-box/helpers/types.d.ts +11 -0
- package/lib/combo-box/helpers/types.js +1 -0
- package/lib/combo-box/index.d.ts +523 -0
- package/lib/combo-box/index.js +1146 -0
- package/lib/combo-box/themes/halo/dark/index.js +8 -0
- package/lib/combo-box/themes/halo/light/index.js +8 -0
- package/lib/combo-box/themes/solar/charcoal/index.js +8 -0
- package/lib/combo-box/themes/solar/pearl/index.js +8 -0
- package/lib/counter/custom-elements.json +35 -0
- package/lib/counter/custom-elements.md +11 -0
- package/lib/counter/index.d.ts +89 -0
- package/lib/counter/index.js +152 -0
- package/lib/counter/themes/halo/dark/index.js +3 -0
- package/lib/counter/themes/halo/light/index.js +3 -0
- package/lib/counter/themes/solar/charcoal/index.js +3 -0
- package/lib/counter/themes/solar/pearl/index.js +3 -0
- package/lib/counter/utils.d.ts +13 -0
- package/lib/counter/utils.js +52 -0
- package/lib/datetime-picker/custom-elements.json +333 -0
- package/lib/datetime-picker/custom-elements.md +49 -0
- package/lib/datetime-picker/index.d.ts +498 -0
- package/lib/datetime-picker/index.js +1164 -0
- package/lib/datetime-picker/locales.d.ts +8 -0
- package/lib/datetime-picker/locales.js +57 -0
- package/lib/datetime-picker/themes/halo/dark/index.js +7 -0
- package/lib/datetime-picker/themes/halo/light/index.js +7 -0
- package/lib/datetime-picker/themes/solar/charcoal/index.js +7 -0
- package/lib/datetime-picker/themes/solar/pearl/index.js +7 -0
- package/lib/datetime-picker/types.d.ts +3 -0
- package/lib/datetime-picker/types.js +1 -0
- package/lib/datetime-picker/utils.d.ts +55 -0
- package/lib/datetime-picker/utils.js +92 -0
- package/lib/dialog/custom-elements.json +136 -0
- package/lib/dialog/custom-elements.md +47 -0
- package/lib/dialog/draggable-element.d.ts +14 -0
- package/lib/dialog/draggable-element.js +221 -0
- package/lib/dialog/index.d.ts +199 -0
- package/lib/dialog/index.js +331 -0
- package/lib/dialog/themes/halo/dark/index.js +7 -0
- package/lib/dialog/themes/halo/light/index.js +7 -0
- package/lib/dialog/themes/solar/charcoal/index.js +7 -0
- package/lib/dialog/themes/solar/pearl/index.js +7 -0
- package/lib/email-field/custom-elements.json +199 -0
- package/lib/email-field/custom-elements.md +35 -0
- package/lib/email-field/index.d.ts +152 -0
- package/lib/email-field/index.js +286 -0
- package/lib/email-field/themes/halo/dark/index.js +3 -0
- package/lib/email-field/themes/halo/light/index.js +3 -0
- package/lib/email-field/themes/solar/charcoal/index.js +3 -0
- package/lib/email-field/themes/solar/pearl/index.js +3 -0
- package/lib/events.d.ts +121 -0
- package/lib/events.js +1 -0
- package/lib/flag/custom-elements.json +35 -0
- package/lib/flag/custom-elements.md +10 -0
- package/lib/flag/index.d.ts +94 -0
- package/lib/flag/index.js +166 -0
- package/lib/flag/themes/halo/dark/index.js +2 -0
- package/lib/flag/themes/halo/light/index.js +2 -0
- package/lib/flag/themes/solar/charcoal/index.js +2 -0
- package/lib/flag/themes/solar/pearl/index.js +2 -0
- package/lib/flag/utils/FlagLoader.d.ts +47 -0
- package/lib/flag/utils/FlagLoader.js +86 -0
- package/lib/header/custom-elements.json +36 -0
- package/lib/header/custom-elements.md +18 -0
- package/lib/header/index.d.ts +46 -0
- package/lib/header/index.js +73 -0
- package/lib/header/themes/halo/dark/index.js +2 -0
- package/lib/header/themes/halo/light/index.js +2 -0
- package/lib/header/themes/solar/charcoal/index.js +2 -0
- package/lib/header/themes/solar/pearl/index.js +2 -0
- package/lib/heatmap/custom-elements.json +151 -0
- package/lib/heatmap/custom-elements.md +26 -0
- package/lib/heatmap/helpers/color.d.ts +30 -0
- package/lib/heatmap/helpers/color.js +68 -0
- package/lib/heatmap/helpers/text.d.ts +26 -0
- package/lib/heatmap/helpers/text.js +91 -0
- package/lib/heatmap/helpers/track.d.ts +102 -0
- package/lib/heatmap/helpers/track.js +160 -0
- package/lib/heatmap/helpers/types.d.ts +40 -0
- package/lib/heatmap/helpers/types.js +1 -0
- package/lib/heatmap/index.d.ts +453 -0
- package/lib/heatmap/index.js +1103 -0
- package/lib/heatmap/themes/halo/dark/index.js +4 -0
- package/lib/heatmap/themes/halo/light/index.js +4 -0
- package/lib/heatmap/themes/solar/charcoal/index.js +4 -0
- package/lib/heatmap/themes/solar/pearl/index.js +4 -0
- package/lib/icon/custom-elements.json +36 -0
- package/lib/icon/custom-elements.md +8 -0
- package/lib/icon/index.d.ts +88 -0
- package/lib/icon/index.js +169 -0
- package/lib/icon/themes/halo/dark/index.js +2 -0
- package/lib/icon/themes/halo/light/index.js +2 -0
- package/lib/icon/themes/solar/charcoal/index.js +2 -0
- package/lib/icon/themes/solar/pearl/index.js +2 -0
- package/lib/icon/utils/IconLoader.d.ts +52 -0
- package/lib/icon/utils/IconLoader.js +93 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +3 -0
- package/lib/interactive-chart/custom-elements.json +86 -0
- package/lib/interactive-chart/custom-elements.md +32 -0
- package/lib/interactive-chart/helpers/merge.d.ts +15 -0
- package/lib/interactive-chart/helpers/merge.js +28 -0
- package/lib/interactive-chart/helpers/types.d.ts +45 -0
- package/lib/interactive-chart/helpers/types.js +6 -0
- package/lib/interactive-chart/index.d.ts +380 -0
- package/lib/interactive-chart/index.js +1090 -0
- package/lib/interactive-chart/themes/halo/dark/index.js +3 -0
- package/lib/interactive-chart/themes/halo/light/index.js +3 -0
- package/lib/interactive-chart/themes/solar/charcoal/index.js +3 -0
- package/lib/interactive-chart/themes/solar/pearl/index.js +3 -0
- package/lib/item/custom-elements.json +151 -0
- package/lib/item/custom-elements.md +29 -0
- package/lib/item/helpers/types.d.ts +57 -0
- package/lib/item/helpers/types.js +1 -0
- package/lib/item/index.d.ts +158 -0
- package/lib/item/index.js +271 -0
- package/lib/item/themes/halo/dark/index.js +4 -0
- package/lib/item/themes/halo/light/index.js +4 -0
- package/lib/item/themes/solar/charcoal/index.js +4 -0
- package/lib/item/themes/solar/pearl/index.js +4 -0
- package/lib/jsx.d.ts +223 -0
- package/lib/label/custom-elements.json +52 -0
- package/lib/label/custom-elements.md +11 -0
- package/lib/label/index.d.ts +102 -0
- package/lib/label/index.js +244 -0
- package/lib/label/themes/halo/dark/index.js +3 -0
- package/lib/label/themes/halo/light/index.js +3 -0
- package/lib/label/themes/solar/charcoal/index.js +3 -0
- package/lib/label/themes/solar/pearl/index.js +3 -0
- package/lib/layout/custom-elements.json +163 -0
- package/lib/layout/custom-elements.md +26 -0
- package/lib/layout/index.d.ts +107 -0
- package/lib/layout/index.js +212 -0
- package/lib/layout/themes/halo/dark/index.js +2 -0
- package/lib/layout/themes/halo/light/index.js +2 -0
- package/lib/layout/themes/solar/charcoal/index.js +2 -0
- package/lib/layout/themes/solar/pearl/index.js +2 -0
- package/lib/led-gauge/custom-elements.json +113 -0
- package/lib/led-gauge/custom-elements.md +17 -0
- package/lib/led-gauge/index.d.ts +143 -0
- package/lib/led-gauge/index.js +437 -0
- package/lib/led-gauge/themes/halo/dark/index.js +3 -0
- package/lib/led-gauge/themes/halo/light/index.js +3 -0
- package/lib/led-gauge/themes/solar/charcoal/index.js +3 -0
- package/lib/led-gauge/themes/solar/pearl/index.js +3 -0
- package/lib/list/custom-elements.json +111 -0
- package/lib/list/custom-elements.md +30 -0
- package/lib/list/extensible-function.d.ts +8 -0
- package/lib/list/extensible-function.js +13 -0
- package/lib/list/helpers/list-renderer.d.ts +9 -0
- package/lib/list/helpers/list-renderer.js +35 -0
- package/lib/list/helpers/types.d.ts +3 -0
- package/lib/list/helpers/types.js +1 -0
- package/lib/list/index.d.ts +292 -0
- package/lib/list/index.js +600 -0
- package/lib/list/renderer.d.ts +36 -0
- package/lib/list/renderer.js +9 -0
- package/lib/list/themes/halo/dark/index.js +3 -0
- package/lib/list/themes/halo/light/index.js +3 -0
- package/lib/list/themes/solar/charcoal/index.js +3 -0
- package/lib/list/themes/solar/pearl/index.js +3 -0
- package/lib/loader/custom-elements.json +9 -0
- package/lib/loader/custom-elements.md +5 -0
- package/lib/loader/index.d.ts +41 -0
- package/lib/loader/index.js +61 -0
- package/lib/loader/themes/halo/dark/index.js +2 -0
- package/lib/loader/themes/halo/light/index.js +2 -0
- package/lib/loader/themes/solar/charcoal/index.js +2 -0
- package/lib/loader/themes/solar/pearl/index.js +2 -0
- package/lib/multi-input/custom-elements.json +238 -0
- package/lib/multi-input/custom-elements.md +43 -0
- package/lib/multi-input/helpers/types.d.ts +11 -0
- package/lib/multi-input/helpers/types.js +1 -0
- package/lib/multi-input/index.d.ts +297 -0
- package/lib/multi-input/index.js +590 -0
- package/lib/multi-input/themes/halo/dark/index.js +4 -0
- package/lib/multi-input/themes/halo/light/index.js +4 -0
- package/lib/multi-input/themes/solar/charcoal/index.js +4 -0
- package/lib/multi-input/themes/solar/pearl/index.js +4 -0
- package/lib/notification/custom-elements.json +95 -0
- package/lib/notification/custom-elements.md +26 -0
- package/lib/notification/elements/notification-tray.d.ts +97 -0
- package/lib/notification/elements/notification-tray.js +167 -0
- package/lib/notification/elements/notification.d.ts +90 -0
- package/lib/notification/elements/notification.js +154 -0
- package/lib/notification/helpers/status.d.ts +30 -0
- package/lib/notification/helpers/status.js +130 -0
- package/lib/notification/helpers/types.d.ts +10 -0
- package/lib/notification/helpers/types.js +1 -0
- package/lib/notification/index.d.ts +2 -0
- package/lib/notification/index.js +2 -0
- package/lib/notification/themes/halo/dark/index.js +5 -0
- package/lib/notification/themes/halo/light/index.js +5 -0
- package/lib/notification/themes/solar/charcoal/index.js +5 -0
- package/lib/notification/themes/solar/pearl/index.js +5 -0
- package/lib/number-field/custom-elements.json +200 -0
- package/lib/number-field/custom-elements.md +37 -0
- package/lib/number-field/index.d.ts +294 -0
- package/lib/number-field/index.js +707 -0
- package/lib/number-field/themes/halo/dark/index.js +3 -0
- package/lib/number-field/themes/halo/light/index.js +3 -0
- package/lib/number-field/themes/solar/charcoal/index.js +3 -0
- package/lib/number-field/themes/solar/pearl/index.js +3 -0
- package/lib/overlay/custom-elements.json +345 -0
- package/lib/overlay/custom-elements.md +54 -0
- package/lib/overlay/elements/overlay-backdrop.d.ts +46 -0
- package/lib/overlay/elements/overlay-backdrop.js +64 -0
- package/lib/overlay/elements/overlay-viewport.d.ts +40 -0
- package/lib/overlay/elements/overlay-viewport.js +52 -0
- package/lib/overlay/elements/overlay.d.ts +403 -0
- package/lib/overlay/elements/overlay.js +1426 -0
- package/lib/overlay/helpers/functions.d.ts +13 -0
- package/lib/overlay/helpers/functions.js +16 -0
- package/lib/overlay/helpers/types.d.ts +97 -0
- package/lib/overlay/helpers/types.js +16 -0
- package/lib/overlay/index.d.ts +2 -0
- package/lib/overlay/index.js +1 -0
- package/lib/overlay/managers/backdrop-manager.d.ts +45 -0
- package/lib/overlay/managers/backdrop-manager.js +96 -0
- package/lib/overlay/managers/close-manager.d.ts +54 -0
- package/lib/overlay/managers/close-manager.js +138 -0
- package/lib/overlay/managers/focus-manager.d.ts +71 -0
- package/lib/overlay/managers/focus-manager.js +228 -0
- package/lib/overlay/managers/interaction-lock-manager.d.ts +138 -0
- package/lib/overlay/managers/interaction-lock-manager.js +375 -0
- package/lib/overlay/managers/viewport-manager.d.ts +93 -0
- package/lib/overlay/managers/viewport-manager.js +211 -0
- package/lib/overlay/managers/zindex-manager.d.ts +80 -0
- package/lib/overlay/managers/zindex-manager.js +195 -0
- package/lib/overlay/themes/halo/dark/index.js +4 -0
- package/lib/overlay/themes/halo/light/index.js +4 -0
- package/lib/overlay/themes/solar/charcoal/index.js +4 -0
- package/lib/overlay/themes/solar/pearl/index.js +4 -0
- package/lib/overlay-menu/custom-elements.json +194 -0
- package/lib/overlay-menu/custom-elements.md +44 -0
- package/lib/overlay-menu/helpers/types.d.ts +8 -0
- package/lib/overlay-menu/helpers/types.js +1 -0
- package/lib/overlay-menu/index.d.ts +385 -0
- package/lib/overlay-menu/index.js +933 -0
- package/lib/overlay-menu/managers/menu-manager.d.ts +98 -0
- package/lib/overlay-menu/managers/menu-manager.js +240 -0
- package/lib/overlay-menu/themes/halo/dark/index.js +5 -0
- package/lib/overlay-menu/themes/halo/light/index.js +5 -0
- package/lib/overlay-menu/themes/solar/charcoal/index.js +5 -0
- package/lib/overlay-menu/themes/solar/pearl/index.js +5 -0
- package/lib/pagination/custom-elements.json +93 -0
- package/lib/pagination/custom-elements.md +27 -0
- package/lib/pagination/helpers/types.d.ts +9 -0
- package/lib/pagination/helpers/types.js +1 -0
- package/lib/pagination/index.d.ts +207 -0
- package/lib/pagination/index.js +398 -0
- package/lib/pagination/themes/halo/dark/index.js +6 -0
- package/lib/pagination/themes/halo/light/index.js +6 -0
- package/lib/pagination/themes/solar/charcoal/index.js +6 -0
- package/lib/pagination/themes/solar/pearl/index.js +6 -0
- package/lib/panel/custom-elements.json +39 -0
- package/lib/panel/custom-elements.md +11 -0
- package/lib/panel/index.d.ts +48 -0
- package/lib/panel/index.js +74 -0
- package/lib/panel/themes/halo/dark/index.js +2 -0
- package/lib/panel/themes/halo/light/index.js +2 -0
- package/lib/panel/themes/solar/charcoal/index.js +2 -0
- package/lib/panel/themes/solar/pearl/index.js +2 -0
- package/lib/password-field/custom-elements.json +156 -0
- package/lib/password-field/custom-elements.md +31 -0
- package/lib/password-field/index.d.ts +141 -0
- package/lib/password-field/index.js +258 -0
- package/lib/password-field/themes/halo/dark/index.js +3 -0
- package/lib/password-field/themes/halo/light/index.js +3 -0
- package/lib/password-field/themes/solar/charcoal/index.js +3 -0
- package/lib/password-field/themes/solar/pearl/index.js +3 -0
- package/lib/pill/custom-elements.json +95 -0
- package/lib/pill/custom-elements.md +22 -0
- package/lib/pill/index.d.ts +97 -0
- package/lib/pill/index.js +160 -0
- package/lib/pill/themes/halo/dark/index.js +3 -0
- package/lib/pill/themes/halo/light/index.js +3 -0
- package/lib/pill/themes/solar/charcoal/index.js +3 -0
- package/lib/pill/themes/solar/pearl/index.js +3 -0
- package/lib/progress-bar/custom-elements.json +58 -0
- package/lib/progress-bar/custom-elements.md +18 -0
- package/lib/progress-bar/index.d.ts +82 -0
- package/lib/progress-bar/index.js +157 -0
- package/lib/progress-bar/themes/halo/dark/index.js +2 -0
- package/lib/progress-bar/themes/halo/light/index.js +2 -0
- package/lib/progress-bar/themes/solar/charcoal/index.js +2 -0
- package/lib/progress-bar/themes/solar/pearl/index.js +2 -0
- package/lib/radio-button/custom-elements.json +82 -0
- package/lib/radio-button/custom-elements.md +19 -0
- package/lib/radio-button/index.d.ts +122 -0
- package/lib/radio-button/index.js +257 -0
- package/lib/radio-button/radio-button-registry.d.ts +22 -0
- package/lib/radio-button/radio-button-registry.js +93 -0
- package/lib/radio-button/themes/halo/dark/index.js +3 -0
- package/lib/radio-button/themes/halo/light/index.js +3 -0
- package/lib/radio-button/themes/solar/charcoal/index.js +3 -0
- package/lib/radio-button/themes/solar/pearl/index.js +3 -0
- package/lib/rating/custom-elements.json +58 -0
- package/lib/rating/custom-elements.md +17 -0
- package/lib/rating/index.d.ts +91 -0
- package/lib/rating/index.js +157 -0
- package/lib/rating/themes/halo/dark/index.js +2 -0
- package/lib/rating/themes/halo/light/index.js +2 -0
- package/lib/rating/themes/solar/charcoal/index.js +2 -0
- package/lib/rating/themes/solar/pearl/index.js +2 -0
- package/lib/search-field/custom-elements.json +173 -0
- package/lib/search-field/custom-elements.md +33 -0
- package/lib/search-field/index.d.ts +134 -0
- package/lib/search-field/index.js +253 -0
- package/lib/search-field/themes/halo/dark/index.js +3 -0
- package/lib/search-field/themes/halo/light/index.js +3 -0
- package/lib/search-field/themes/solar/charcoal/index.js +3 -0
- package/lib/search-field/themes/solar/pearl/index.js +3 -0
- package/lib/select/custom-elements.json +103 -0
- package/lib/select/custom-elements.md +24 -0
- package/lib/select/helpers/types.d.ts +3 -0
- package/lib/select/helpers/types.js +1 -0
- package/lib/select/index.d.ts +388 -0
- package/lib/select/index.js +942 -0
- package/lib/select/themes/halo/dark/index.js +5 -0
- package/lib/select/themes/halo/light/index.js +5 -0
- package/lib/select/themes/solar/charcoal/index.js +5 -0
- package/lib/select/themes/solar/pearl/index.js +5 -0
- package/lib/sidebar-layout/custom-elements.json +72 -0
- package/lib/sidebar-layout/custom-elements.md +22 -0
- package/lib/sidebar-layout/index.d.ts +69 -0
- package/lib/sidebar-layout/index.js +134 -0
- package/lib/sidebar-layout/themes/halo/dark/index.js +3 -0
- package/lib/sidebar-layout/themes/halo/light/index.js +3 -0
- package/lib/sidebar-layout/themes/solar/charcoal/index.js +3 -0
- package/lib/sidebar-layout/themes/solar/pearl/index.js +3 -0
- package/lib/slider/custom-elements.json +181 -0
- package/lib/slider/custom-elements.md +28 -0
- package/lib/slider/index.d.ts +409 -0
- package/lib/slider/index.js +1187 -0
- package/lib/slider/themes/halo/dark/index.js +3 -0
- package/lib/slider/themes/halo/light/index.js +3 -0
- package/lib/slider/themes/solar/charcoal/index.js +3 -0
- package/lib/slider/themes/solar/pearl/index.js +3 -0
- package/lib/sparkline/custom-elements.json +59 -0
- package/lib/sparkline/custom-elements.md +16 -0
- package/lib/sparkline/index.d.ts +107 -0
- package/lib/sparkline/index.js +186 -0
- package/lib/sparkline/themes/halo/dark/index.js +2 -0
- package/lib/sparkline/themes/halo/light/index.js +2 -0
- package/lib/sparkline/themes/solar/charcoal/index.js +2 -0
- package/lib/sparkline/themes/solar/pearl/index.js +2 -0
- package/lib/swing-gauge/const.d.ts +22 -0
- package/lib/swing-gauge/const.js +26 -0
- package/lib/swing-gauge/custom-elements.json +109 -0
- package/lib/swing-gauge/custom-elements.md +17 -0
- package/lib/swing-gauge/helpers.d.ts +8 -0
- package/lib/swing-gauge/helpers.js +105 -0
- package/lib/swing-gauge/index.d.ts +294 -0
- package/lib/swing-gauge/index.js +762 -0
- package/lib/swing-gauge/themes/halo/dark/index.js +3 -0
- package/lib/swing-gauge/themes/halo/light/index.js +3 -0
- package/lib/swing-gauge/themes/solar/charcoal/index.js +3 -0
- package/lib/swing-gauge/themes/solar/pearl/index.js +3 -0
- package/lib/swing-gauge/types.d.ts +34 -0
- package/lib/swing-gauge/types.js +1 -0
- package/lib/tab/custom-elements.json +123 -0
- package/lib/tab/custom-elements.md +22 -0
- package/lib/tab/index.d.ts +118 -0
- package/lib/tab/index.js +208 -0
- package/lib/tab/themes/halo/dark/index.js +4 -0
- package/lib/tab/themes/halo/light/index.js +4 -0
- package/lib/tab/themes/solar/charcoal/index.js +4 -0
- package/lib/tab/themes/solar/pearl/index.js +4 -0
- package/lib/tab-bar/custom-elements.json +52 -0
- package/lib/tab-bar/custom-elements.md +11 -0
- package/lib/tab-bar/helpers/animate.d.ts +16 -0
- package/lib/tab-bar/helpers/animate.js +53 -0
- package/lib/tab-bar/index.d.ts +108 -0
- package/lib/tab-bar/index.js +218 -0
- package/lib/tab-bar/themes/halo/dark/index.js +4 -0
- package/lib/tab-bar/themes/halo/light/index.js +4 -0
- package/lib/tab-bar/themes/solar/charcoal/index.js +4 -0
- package/lib/tab-bar/themes/solar/pearl/index.js +4 -0
- package/lib/text-field/custom-elements.json +210 -0
- package/lib/text-field/custom-elements.md +37 -0
- package/lib/text-field/index.d.ts +193 -0
- package/lib/text-field/index.js +409 -0
- package/lib/text-field/themes/halo/dark/index.js +3 -0
- package/lib/text-field/themes/halo/light/index.js +3 -0
- package/lib/text-field/themes/solar/charcoal/index.js +3 -0
- package/lib/text-field/themes/solar/pearl/index.js +3 -0
- package/lib/time-picker/custom-elements.json +124 -0
- package/lib/time-picker/custom-elements.md +28 -0
- package/lib/time-picker/index.d.ts +379 -0
- package/lib/time-picker/index.js +775 -0
- package/lib/time-picker/themes/halo/dark/index.js +4 -0
- package/lib/time-picker/themes/halo/light/index.js +4 -0
- package/lib/time-picker/themes/solar/charcoal/index.js +4 -0
- package/lib/time-picker/themes/solar/pearl/index.js +4 -0
- package/lib/toggle/custom-elements.json +82 -0
- package/lib/toggle/custom-elements.md +19 -0
- package/lib/toggle/index.d.ts +86 -0
- package/lib/toggle/index.js +152 -0
- package/lib/toggle/themes/halo/dark/index.js +2 -0
- package/lib/toggle/themes/halo/light/index.js +2 -0
- package/lib/toggle/themes/solar/charcoal/index.js +2 -0
- package/lib/toggle/themes/solar/pearl/index.js +2 -0
- package/lib/tooltip/custom-elements.json +62 -0
- package/lib/tooltip/custom-elements.md +14 -0
- package/lib/tooltip/elements/title-tooltip.d.ts +1 -0
- package/lib/tooltip/elements/title-tooltip.js +18 -0
- package/lib/tooltip/elements/tooltip-element.d.ts +21 -0
- package/lib/tooltip/elements/tooltip-element.js +54 -0
- package/lib/tooltip/helpers/overflow-tooltip.d.ts +9 -0
- package/lib/tooltip/helpers/overflow-tooltip.js +19 -0
- package/lib/tooltip/helpers/renderer.d.ts +8 -0
- package/lib/tooltip/helpers/renderer.js +11 -0
- package/lib/tooltip/helpers/types.d.ts +23 -0
- package/lib/tooltip/helpers/types.js +1 -0
- package/lib/tooltip/index.d.ts +232 -0
- package/lib/tooltip/index.js +477 -0
- package/lib/tooltip/managers/tooltip-manager.d.ts +15 -0
- package/lib/tooltip/managers/tooltip-manager.js +140 -0
- package/lib/tooltip/themes/halo/dark/index.js +3 -0
- package/lib/tooltip/themes/halo/light/index.js +3 -0
- package/lib/tooltip/themes/solar/charcoal/index.js +3 -0
- package/lib/tooltip/themes/solar/pearl/index.js +3 -0
- package/lib/tornado-chart/custom-elements.json +45 -0
- package/lib/tornado-chart/custom-elements.md +18 -0
- package/lib/tornado-chart/elements/tornado-chart.d.ts +78 -0
- package/lib/tornado-chart/elements/tornado-chart.js +122 -0
- package/lib/tornado-chart/elements/tornado-item.d.ts +110 -0
- package/lib/tornado-chart/elements/tornado-item.js +207 -0
- package/lib/tornado-chart/index.d.ts +2 -0
- package/lib/tornado-chart/index.js +2 -0
- package/lib/tornado-chart/themes/halo/dark/index.js +6 -0
- package/lib/tornado-chart/themes/halo/light/index.js +6 -0
- package/lib/tornado-chart/themes/solar/charcoal/index.js +6 -0
- package/lib/tornado-chart/themes/solar/pearl/index.js +6 -0
- package/lib/tree/custom-elements.json +113 -0
- package/lib/tree/custom-elements.md +32 -0
- package/lib/tree/elements/tree-item.d.ts +96 -0
- package/lib/tree/elements/tree-item.js +179 -0
- package/lib/tree/elements/tree.d.ts +201 -0
- package/lib/tree/elements/tree.js +412 -0
- package/lib/tree/helpers/filter.d.ts +8 -0
- package/lib/tree/helpers/filter.js +33 -0
- package/lib/tree/helpers/renderer.d.ts +5 -0
- package/lib/tree/helpers/renderer.js +33 -0
- package/lib/tree/helpers/types.d.ts +25 -0
- package/lib/tree/helpers/types.js +1 -0
- package/lib/tree/index.d.ts +4 -0
- package/lib/tree/index.js +3 -0
- package/lib/tree/managers/tree-manager.d.ts +248 -0
- package/lib/tree/managers/tree-manager.js +395 -0
- package/lib/tree/themes/halo/dark/index.js +7 -0
- package/lib/tree/themes/halo/light/index.js +7 -0
- package/lib/tree/themes/solar/charcoal/index.js +7 -0
- package/lib/tree/themes/solar/pearl/index.js +7 -0
- package/lib/tree-select/custom-elements.json +107 -0
- package/lib/tree-select/custom-elements.md +26 -0
- package/lib/tree-select/helpers/types.d.ts +4 -0
- package/lib/tree-select/helpers/types.js +1 -0
- package/lib/tree-select/index.d.ts +402 -0
- package/lib/tree-select/index.js +890 -0
- package/lib/tree-select/themes/halo/dark/index.js +12 -0
- package/lib/tree-select/themes/halo/light/index.js +12 -0
- package/lib/tree-select/themes/solar/charcoal/index.js +12 -0
- package/lib/tree-select/themes/solar/pearl/index.js +12 -0
- package/lib/version.d.ts +1 -0
- package/lib/version.js +1 -0
- package/package.json +298 -15
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
import type { CollectionComposer } from '@refinitiv-ui/utils/lib/collection';
|
|
2
|
+
import type { TreeDataItem } from '../helpers/types';
|
|
3
|
+
export declare enum CheckedState {
|
|
4
|
+
CHECKED = 1,
|
|
5
|
+
UNCHECKED = 0,
|
|
6
|
+
INDETERMINATE = -1
|
|
7
|
+
}
|
|
8
|
+
export declare enum TreeManagerMode {
|
|
9
|
+
/**
|
|
10
|
+
* Maintains relationship states across children and parents.
|
|
11
|
+
*/
|
|
12
|
+
RELATIONAL = 1,
|
|
13
|
+
/**
|
|
14
|
+
* Items are independent of each other and do not maintain relationship states.
|
|
15
|
+
*/
|
|
16
|
+
INDEPENDENT = 0
|
|
17
|
+
}
|
|
18
|
+
export declare class TreeManager<T extends TreeDataItem> {
|
|
19
|
+
/**
|
|
20
|
+
* Internal composer used for managing the data
|
|
21
|
+
*/
|
|
22
|
+
private composer;
|
|
23
|
+
/**
|
|
24
|
+
* Mode (algorithm) the tree manage is using
|
|
25
|
+
*/
|
|
26
|
+
private mode;
|
|
27
|
+
constructor(composer: CollectionComposer<T>, mode?: TreeManagerMode);
|
|
28
|
+
/**
|
|
29
|
+
* Is the manager maintaining parent/child relationships
|
|
30
|
+
*/
|
|
31
|
+
private get manageRelationships();
|
|
32
|
+
/**
|
|
33
|
+
* Returns all items in the tree
|
|
34
|
+
*/
|
|
35
|
+
private get items();
|
|
36
|
+
/**
|
|
37
|
+
* Return all items which have children
|
|
38
|
+
*/
|
|
39
|
+
private get parentItems();
|
|
40
|
+
/**
|
|
41
|
+
* Returns all checked items.
|
|
42
|
+
* When managing relationships, this excludes groups/parents from the result.
|
|
43
|
+
*/
|
|
44
|
+
get checkedItems(): readonly T[];
|
|
45
|
+
/**
|
|
46
|
+
* Items which should be visibly displayed.
|
|
47
|
+
* This can be used to render items.
|
|
48
|
+
*/
|
|
49
|
+
get editableItems(): readonly T[];
|
|
50
|
+
/**
|
|
51
|
+
* Internal query for getting visible items/nodes
|
|
52
|
+
* @param items Data item collection
|
|
53
|
+
* @param result Resulting array of visible items
|
|
54
|
+
* @returns Collection of visible items
|
|
55
|
+
*/
|
|
56
|
+
private getEditableItems;
|
|
57
|
+
/**
|
|
58
|
+
* Items which should be visibly displayed.
|
|
59
|
+
* This can be used to render items.
|
|
60
|
+
*/
|
|
61
|
+
get visibleItems(): readonly T[];
|
|
62
|
+
/**
|
|
63
|
+
* Internal query for getting visible items/nodes
|
|
64
|
+
* @param items Data item collection
|
|
65
|
+
* @param result Resulting array of visible items
|
|
66
|
+
* @returns Collection of visible items
|
|
67
|
+
*/
|
|
68
|
+
private getVisibleItems;
|
|
69
|
+
/**
|
|
70
|
+
* Is the item hidden?
|
|
71
|
+
* @param item Original data item
|
|
72
|
+
* @returns `True` if the item is hidden
|
|
73
|
+
*/
|
|
74
|
+
private isItemHidden;
|
|
75
|
+
/**
|
|
76
|
+
* Is the item checked?
|
|
77
|
+
* @param item Original data item
|
|
78
|
+
* @returns `True` if the item is checked
|
|
79
|
+
*/
|
|
80
|
+
private isItemChecked;
|
|
81
|
+
/**
|
|
82
|
+
* Is the item checked indeterminately?
|
|
83
|
+
* @param item Original data item
|
|
84
|
+
* @returns `True` if the item has managed relationships and contains checked descendants
|
|
85
|
+
*/
|
|
86
|
+
private isItemCheckedIndeterminate;
|
|
87
|
+
/**
|
|
88
|
+
* Determines whether the item is unchecked and can be changed to a checked state.
|
|
89
|
+
* @param item Original data item
|
|
90
|
+
* @returns True if the item can be changed to 'checked'.
|
|
91
|
+
*/
|
|
92
|
+
private canCheckItem;
|
|
93
|
+
/**
|
|
94
|
+
* Determines whether the item is checked and can be changed to an unchecked state.
|
|
95
|
+
* @param item Original data item
|
|
96
|
+
* @returns True if the item can be changed to 'unchecked'.
|
|
97
|
+
*/
|
|
98
|
+
private canUncheckItem;
|
|
99
|
+
/**
|
|
100
|
+
* Makes an item visible
|
|
101
|
+
* @param item Original data item
|
|
102
|
+
* @returns {void}
|
|
103
|
+
*/
|
|
104
|
+
private showItem;
|
|
105
|
+
/**
|
|
106
|
+
* Hides an item from the visible collection
|
|
107
|
+
* @param item Original data item
|
|
108
|
+
* @returns {void}
|
|
109
|
+
*/
|
|
110
|
+
private hideItem;
|
|
111
|
+
/**
|
|
112
|
+
* Forces a modification event, so that the renderer can update.
|
|
113
|
+
* @param item Item of which to find path
|
|
114
|
+
* @returns {void}
|
|
115
|
+
*/
|
|
116
|
+
private forceUpdateOnPath;
|
|
117
|
+
/**
|
|
118
|
+
* Sets the mode (algorithm) the manager should use
|
|
119
|
+
* @param mode Tree manager mode
|
|
120
|
+
* @returns {void}
|
|
121
|
+
*/
|
|
122
|
+
setMode(mode: TreeManagerMode): void;
|
|
123
|
+
/**
|
|
124
|
+
* Updates the data item, forcing a render
|
|
125
|
+
* @param item Original data item
|
|
126
|
+
* @returns {void}
|
|
127
|
+
*/
|
|
128
|
+
updateItem(item: T): void;
|
|
129
|
+
/**
|
|
130
|
+
* Includes an item as part of the tree.
|
|
131
|
+
* @param item Item to include
|
|
132
|
+
* @returns `True` if the item is newly included
|
|
133
|
+
*/
|
|
134
|
+
includeItem(item: T): boolean;
|
|
135
|
+
/**
|
|
136
|
+
* Excludes an item as part of the tree.
|
|
137
|
+
* @param item Item to exclude
|
|
138
|
+
* @returns `True` if the item is newly excluded
|
|
139
|
+
*/
|
|
140
|
+
excludeItem(item: T): boolean;
|
|
141
|
+
/**
|
|
142
|
+
* Is the item checkable?
|
|
143
|
+
* @param item Original data item
|
|
144
|
+
* @returns `True` if the item is not disabled or readonly
|
|
145
|
+
*/
|
|
146
|
+
isItemCheckable(item: T): boolean;
|
|
147
|
+
/**
|
|
148
|
+
* Is the item expanded?
|
|
149
|
+
* @param item Original data item
|
|
150
|
+
* @returns `True` if the item is expanded and its children should be visible
|
|
151
|
+
*/
|
|
152
|
+
isItemExpanded(item: T): boolean;
|
|
153
|
+
/**
|
|
154
|
+
* Is the item a parent?
|
|
155
|
+
* @param item Original data item
|
|
156
|
+
* @returns `True` if the item has children
|
|
157
|
+
*/
|
|
158
|
+
isItemParent(item: T): boolean;
|
|
159
|
+
/**
|
|
160
|
+
* Is the item a child?
|
|
161
|
+
* @param item Original data item
|
|
162
|
+
* @returns `True` if the item has a parent
|
|
163
|
+
*/
|
|
164
|
+
isItemChild(item: T): boolean;
|
|
165
|
+
/**
|
|
166
|
+
* Calculates the checked stated of the item
|
|
167
|
+
* @param item Original data item
|
|
168
|
+
* @returns Checked state of the item
|
|
169
|
+
*/
|
|
170
|
+
getItemCheckedState(item: T): CheckedState;
|
|
171
|
+
/**
|
|
172
|
+
* Gets an item's ancestors
|
|
173
|
+
* @param item Original data item
|
|
174
|
+
* @returns A list of ancestors
|
|
175
|
+
*/
|
|
176
|
+
getItemAncestors(item: T): readonly T[];
|
|
177
|
+
/**
|
|
178
|
+
* Gets an item's descendants
|
|
179
|
+
* @param item Original data item
|
|
180
|
+
* @param depth Depth to retrieve
|
|
181
|
+
* @returns A list of descendants
|
|
182
|
+
*/
|
|
183
|
+
getItemDescendants(item: T, depth?: number): readonly T[];
|
|
184
|
+
/**
|
|
185
|
+
* Gets an item's parent, if it has one.
|
|
186
|
+
* @param item Original data item
|
|
187
|
+
* @returns Item parent or `null`
|
|
188
|
+
*/
|
|
189
|
+
getItemParent(item: T): T | null;
|
|
190
|
+
/**
|
|
191
|
+
* Gets an item's child collection
|
|
192
|
+
* @param item Original data item
|
|
193
|
+
* @returns A list of children
|
|
194
|
+
*/
|
|
195
|
+
getItemChildren(item: T): readonly T[];
|
|
196
|
+
/**
|
|
197
|
+
* Expand an item to show its children
|
|
198
|
+
* @param item Original data item
|
|
199
|
+
* @returns {void}
|
|
200
|
+
*/
|
|
201
|
+
expandItem(item: T): void;
|
|
202
|
+
/**
|
|
203
|
+
* Collapse an item to hide its children
|
|
204
|
+
* @param item Original data item
|
|
205
|
+
* @returns {void}
|
|
206
|
+
*/
|
|
207
|
+
collapseItem(item: T): void;
|
|
208
|
+
/**
|
|
209
|
+
* Expands all items in the tree
|
|
210
|
+
* @returns {void}
|
|
211
|
+
*/
|
|
212
|
+
expandAllItems(): void;
|
|
213
|
+
/**
|
|
214
|
+
* Collapses all items in the tree
|
|
215
|
+
* @returns {void}
|
|
216
|
+
*/
|
|
217
|
+
collapseAllItems(): void;
|
|
218
|
+
/**
|
|
219
|
+
* Checks the item
|
|
220
|
+
* @param item Original data item
|
|
221
|
+
* @returns `True` if the item is modified
|
|
222
|
+
*/
|
|
223
|
+
checkItem(item: T): boolean;
|
|
224
|
+
private _checkItem;
|
|
225
|
+
/**
|
|
226
|
+
* Unchecks the item
|
|
227
|
+
* @param item Original data item
|
|
228
|
+
* @returns `True` if the item is modified
|
|
229
|
+
*/
|
|
230
|
+
uncheckItem(item: T): boolean;
|
|
231
|
+
private _uncheckItem;
|
|
232
|
+
/**
|
|
233
|
+
* Toggles the item checked state
|
|
234
|
+
* @param item Original data item
|
|
235
|
+
* @returns `True` if the item is modified
|
|
236
|
+
*/
|
|
237
|
+
toggleItem(item: T): boolean;
|
|
238
|
+
/**
|
|
239
|
+
* Checks all items
|
|
240
|
+
* @returns {void}
|
|
241
|
+
*/
|
|
242
|
+
checkAllItems(): void;
|
|
243
|
+
/**
|
|
244
|
+
* Unchecks all items
|
|
245
|
+
* @returns {void}
|
|
246
|
+
*/
|
|
247
|
+
uncheckAllItems(): void;
|
|
248
|
+
}
|
|
@@ -0,0 +1,395 @@
|
|
|
1
|
+
export var CheckedState;
|
|
2
|
+
(function (CheckedState) {
|
|
3
|
+
CheckedState[CheckedState["CHECKED"] = 1] = "CHECKED";
|
|
4
|
+
CheckedState[CheckedState["UNCHECKED"] = 0] = "UNCHECKED";
|
|
5
|
+
CheckedState[CheckedState["INDETERMINATE"] = -1] = "INDETERMINATE";
|
|
6
|
+
})(CheckedState || (CheckedState = {}));
|
|
7
|
+
export var TreeManagerMode;
|
|
8
|
+
(function (TreeManagerMode) {
|
|
9
|
+
/**
|
|
10
|
+
* Maintains relationship states across children and parents.
|
|
11
|
+
*/
|
|
12
|
+
TreeManagerMode[TreeManagerMode["RELATIONAL"] = 1] = "RELATIONAL";
|
|
13
|
+
/**
|
|
14
|
+
* Items are independent of each other and do not maintain relationship states.
|
|
15
|
+
*/
|
|
16
|
+
TreeManagerMode[TreeManagerMode["INDEPENDENT"] = 0] = "INDEPENDENT";
|
|
17
|
+
})(TreeManagerMode || (TreeManagerMode = {}));
|
|
18
|
+
export class TreeManager {
|
|
19
|
+
constructor(composer, mode = TreeManagerMode.RELATIONAL) {
|
|
20
|
+
/**
|
|
21
|
+
* Mode (algorithm) the tree manage is using
|
|
22
|
+
*/
|
|
23
|
+
this.mode = TreeManagerMode.RELATIONAL;
|
|
24
|
+
this.composer = composer;
|
|
25
|
+
this.mode = mode;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Is the manager maintaining parent/child relationships
|
|
29
|
+
*/
|
|
30
|
+
get manageRelationships() {
|
|
31
|
+
return this.mode === TreeManagerMode.RELATIONAL;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Returns all items in the tree
|
|
35
|
+
*/
|
|
36
|
+
get items() {
|
|
37
|
+
return this.composer.queryItems(() => true, Infinity);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Return all items which have children
|
|
41
|
+
*/
|
|
42
|
+
get parentItems() {
|
|
43
|
+
return this.items.filter(item => this.isItemParent(item));
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns all checked items.
|
|
47
|
+
* When managing relationships, this excludes groups/parents from the result.
|
|
48
|
+
*/
|
|
49
|
+
get checkedItems() {
|
|
50
|
+
return this.composer.queryItems((item) => {
|
|
51
|
+
if (this.manageRelationships && this.isItemParent(item)) {
|
|
52
|
+
return false;
|
|
53
|
+
}
|
|
54
|
+
return this.isItemChecked(item);
|
|
55
|
+
}, Infinity);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Items which should be visibly displayed.
|
|
59
|
+
* This can be used to render items.
|
|
60
|
+
*/
|
|
61
|
+
get editableItems() {
|
|
62
|
+
const topLevel = this.composer.queryItems(() => true, 0);
|
|
63
|
+
return this.getEditableItems(topLevel);
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Internal query for getting visible items/nodes
|
|
67
|
+
* @param items Data item collection
|
|
68
|
+
* @param result Resulting array of visible items
|
|
69
|
+
* @returns Collection of visible items
|
|
70
|
+
*/
|
|
71
|
+
getEditableItems(items, result = []) {
|
|
72
|
+
for (const item of items) {
|
|
73
|
+
if (this.isItemCheckable(item)) {
|
|
74
|
+
result.push(item);
|
|
75
|
+
const children = this.getItemChildren(item);
|
|
76
|
+
children.length && this.getEditableItems(children, result);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return result;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Items which should be visibly displayed.
|
|
83
|
+
* This can be used to render items.
|
|
84
|
+
*/
|
|
85
|
+
get visibleItems() {
|
|
86
|
+
const topLevel = this.composer.queryItems(() => true, 0);
|
|
87
|
+
return this.getVisibleItems(topLevel);
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* Internal query for getting visible items/nodes
|
|
91
|
+
* @param items Data item collection
|
|
92
|
+
* @param result Resulting array of visible items
|
|
93
|
+
* @returns Collection of visible items
|
|
94
|
+
*/
|
|
95
|
+
getVisibleItems(items, result = []) {
|
|
96
|
+
for (const item of items) {
|
|
97
|
+
if (!this.isItemHidden(item) && result.push(item) && this.isItemExpanded(item)) {
|
|
98
|
+
const children = this.getItemChildren(item);
|
|
99
|
+
children.length && this.getVisibleItems(children, result);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
return result;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Is the item hidden?
|
|
106
|
+
* @param item Original data item
|
|
107
|
+
* @returns `True` if the item is hidden
|
|
108
|
+
*/
|
|
109
|
+
isItemHidden(item) {
|
|
110
|
+
return this.composer.getItemPropertyValue(item, 'hidden') === true;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Is the item checked?
|
|
114
|
+
* @param item Original data item
|
|
115
|
+
* @returns `True` if the item is checked
|
|
116
|
+
*/
|
|
117
|
+
isItemChecked(item) {
|
|
118
|
+
if (this.manageRelationships && this.isItemParent(item)) {
|
|
119
|
+
return !this.getItemChildren(item).some(child => !this.isItemChecked(child));
|
|
120
|
+
}
|
|
121
|
+
return this.composer.getItemPropertyValue(item, 'selected') === true;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* Is the item checked indeterminately?
|
|
125
|
+
* @param item Original data item
|
|
126
|
+
* @returns `True` if the item has managed relationships and contains checked descendants
|
|
127
|
+
*/
|
|
128
|
+
isItemCheckedIndeterminate(item) {
|
|
129
|
+
if (this.manageRelationships && this.isItemParent(item)) {
|
|
130
|
+
return this.getItemDescendants(item).some(desc => this.isItemChecked(desc));
|
|
131
|
+
}
|
|
132
|
+
return false;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* Determines whether the item is unchecked and can be changed to a checked state.
|
|
136
|
+
* @param item Original data item
|
|
137
|
+
* @returns True if the item can be changed to 'checked'.
|
|
138
|
+
*/
|
|
139
|
+
canCheckItem(item) {
|
|
140
|
+
if (this.manageRelationships && this.isItemParent(item)) {
|
|
141
|
+
return this.getItemChildren(item).some(child => this.canCheckItem(child));
|
|
142
|
+
}
|
|
143
|
+
return this.isItemCheckable(item) && this.composer.getItemPropertyValue(item, 'selected') !== true;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* Determines whether the item is checked and can be changed to an unchecked state.
|
|
147
|
+
* @param item Original data item
|
|
148
|
+
* @returns True if the item can be changed to 'unchecked'.
|
|
149
|
+
*/
|
|
150
|
+
canUncheckItem(item) {
|
|
151
|
+
if (this.manageRelationships && this.isItemParent(item)) {
|
|
152
|
+
return this.getItemChildren(item).some(child => this.canUncheckItem(child));
|
|
153
|
+
}
|
|
154
|
+
return this.isItemCheckable(item) && this.composer.getItemPropertyValue(item, 'selected') === true;
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* Makes an item visible
|
|
158
|
+
* @param item Original data item
|
|
159
|
+
* @returns {void}
|
|
160
|
+
*/
|
|
161
|
+
showItem(item) {
|
|
162
|
+
this.composer.setItemPropertyValue(item, 'hidden', false);
|
|
163
|
+
this.updateItem(item); // Make sure the item is updated
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* Hides an item from the visible collection
|
|
167
|
+
* @param item Original data item
|
|
168
|
+
* @returns {void}
|
|
169
|
+
*/
|
|
170
|
+
hideItem(item) {
|
|
171
|
+
this.composer.setItemPropertyValue(item, 'hidden', true);
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* Forces a modification event, so that the renderer can update.
|
|
175
|
+
* @param item Item of which to find path
|
|
176
|
+
* @returns {void}
|
|
177
|
+
*/
|
|
178
|
+
forceUpdateOnPath(item) {
|
|
179
|
+
const path = [...this.getItemAncestors(item), item];
|
|
180
|
+
path.forEach(item => this.composer.updateItemTimestamp(item));
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* Sets the mode (algorithm) the manager should use
|
|
184
|
+
* @param mode Tree manager mode
|
|
185
|
+
* @returns {void}
|
|
186
|
+
*/
|
|
187
|
+
setMode(mode) {
|
|
188
|
+
this.mode = mode;
|
|
189
|
+
// Force update of all visible parent items, making sure any indeterminate states are remove.
|
|
190
|
+
this.parentItems.forEach(item => this.updateItem(item));
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* Updates the data item, forcing a render
|
|
194
|
+
* @param item Original data item
|
|
195
|
+
* @returns {void}
|
|
196
|
+
*/
|
|
197
|
+
updateItem(item) {
|
|
198
|
+
this.composer.updateItemTimestamp(item);
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* Includes an item as part of the tree.
|
|
202
|
+
* @param item Item to include
|
|
203
|
+
* @returns `True` if the item is newly included
|
|
204
|
+
*/
|
|
205
|
+
includeItem(item) {
|
|
206
|
+
const result = this.composer.unlockItem(item);
|
|
207
|
+
this.showItem(item); // Item must be unlocked first
|
|
208
|
+
return result;
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* Excludes an item as part of the tree.
|
|
212
|
+
* @param item Item to exclude
|
|
213
|
+
* @returns `True` if the item is newly excluded
|
|
214
|
+
*/
|
|
215
|
+
excludeItem(item) {
|
|
216
|
+
this.hideItem(item);
|
|
217
|
+
return this.composer.lockItem(item);
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* Is the item checkable?
|
|
221
|
+
* @param item Original data item
|
|
222
|
+
* @returns `True` if the item is not disabled or readonly
|
|
223
|
+
*/
|
|
224
|
+
isItemCheckable(item) {
|
|
225
|
+
return !this.composer.isItemLocked(item)
|
|
226
|
+
&& this.composer.getItemPropertyValue(item, 'disabled') !== true
|
|
227
|
+
&& this.composer.getItemPropertyValue(item, 'readonly') !== true;
|
|
228
|
+
}
|
|
229
|
+
/**
|
|
230
|
+
* Is the item expanded?
|
|
231
|
+
* @param item Original data item
|
|
232
|
+
* @returns `True` if the item is expanded and its children should be visible
|
|
233
|
+
*/
|
|
234
|
+
isItemExpanded(item) {
|
|
235
|
+
return this.isItemParent(item)
|
|
236
|
+
&& this.composer.getItemPropertyValue(item, 'expanded') === true;
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* Is the item a parent?
|
|
240
|
+
* @param item Original data item
|
|
241
|
+
* @returns `True` if the item has children
|
|
242
|
+
*/
|
|
243
|
+
isItemParent(item) {
|
|
244
|
+
return this.composer.isItemParent(item);
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* Is the item a child?
|
|
248
|
+
* @param item Original data item
|
|
249
|
+
* @returns `True` if the item has a parent
|
|
250
|
+
*/
|
|
251
|
+
isItemChild(item) {
|
|
252
|
+
return this.composer.isItemChild(item);
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* Calculates the checked stated of the item
|
|
256
|
+
* @param item Original data item
|
|
257
|
+
* @returns Checked state of the item
|
|
258
|
+
*/
|
|
259
|
+
getItemCheckedState(item) {
|
|
260
|
+
if (this.isItemChecked(item)) {
|
|
261
|
+
return CheckedState.CHECKED;
|
|
262
|
+
}
|
|
263
|
+
if (this.isItemCheckedIndeterminate(item)) {
|
|
264
|
+
return CheckedState.INDETERMINATE;
|
|
265
|
+
}
|
|
266
|
+
return CheckedState.UNCHECKED;
|
|
267
|
+
}
|
|
268
|
+
/**
|
|
269
|
+
* Gets an item's ancestors
|
|
270
|
+
* @param item Original data item
|
|
271
|
+
* @returns A list of ancestors
|
|
272
|
+
*/
|
|
273
|
+
getItemAncestors(item) {
|
|
274
|
+
return this.composer.getItemAncestors(item);
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* Gets an item's descendants
|
|
278
|
+
* @param item Original data item
|
|
279
|
+
* @param depth Depth to retrieve
|
|
280
|
+
* @returns A list of descendants
|
|
281
|
+
*/
|
|
282
|
+
getItemDescendants(item, depth) {
|
|
283
|
+
return this.composer.getItemDescendants(item, depth);
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* Gets an item's parent, if it has one.
|
|
287
|
+
* @param item Original data item
|
|
288
|
+
* @returns Item parent or `null`
|
|
289
|
+
*/
|
|
290
|
+
getItemParent(item) {
|
|
291
|
+
return this.composer.getItemParent(item);
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* Gets an item's child collection
|
|
295
|
+
* @param item Original data item
|
|
296
|
+
* @returns A list of children
|
|
297
|
+
*/
|
|
298
|
+
getItemChildren(item) {
|
|
299
|
+
return this.composer.getItemChildren(item);
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* Expand an item to show its children
|
|
303
|
+
* @param item Original data item
|
|
304
|
+
* @returns {void}
|
|
305
|
+
*/
|
|
306
|
+
expandItem(item) {
|
|
307
|
+
if (this.isItemParent(item)) {
|
|
308
|
+
this.composer.setItemPropertyValue(item, 'expanded', true);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* Collapse an item to hide its children
|
|
313
|
+
* @param item Original data item
|
|
314
|
+
* @returns {void}
|
|
315
|
+
*/
|
|
316
|
+
collapseItem(item) {
|
|
317
|
+
if (this.isItemParent(item)) {
|
|
318
|
+
this.composer.setItemPropertyValue(item, 'expanded', false);
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* Expands all items in the tree
|
|
323
|
+
* @returns {void}
|
|
324
|
+
*/
|
|
325
|
+
expandAllItems() {
|
|
326
|
+
this.parentItems.forEach(item => this.expandItem(item));
|
|
327
|
+
}
|
|
328
|
+
/**
|
|
329
|
+
* Collapses all items in the tree
|
|
330
|
+
* @returns {void}
|
|
331
|
+
*/
|
|
332
|
+
collapseAllItems() {
|
|
333
|
+
this.parentItems.forEach(item => this.collapseItem(item));
|
|
334
|
+
}
|
|
335
|
+
/**
|
|
336
|
+
* Checks the item
|
|
337
|
+
* @param item Original data item
|
|
338
|
+
* @returns `True` if the item is modified
|
|
339
|
+
*/
|
|
340
|
+
checkItem(item) {
|
|
341
|
+
return this._checkItem(item);
|
|
342
|
+
}
|
|
343
|
+
_checkItem(item, manageRelationships = this.manageRelationships) {
|
|
344
|
+
if (this.canCheckItem(item)) {
|
|
345
|
+
this.composer.setItemPropertyValue(item, 'selected', true);
|
|
346
|
+
if (manageRelationships) {
|
|
347
|
+
this.forceUpdateOnPath(item);
|
|
348
|
+
this.getItemDescendants(item).forEach(descendant => this._checkItem(descendant, false));
|
|
349
|
+
}
|
|
350
|
+
return true;
|
|
351
|
+
}
|
|
352
|
+
return false;
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* Unchecks the item
|
|
356
|
+
* @param item Original data item
|
|
357
|
+
* @returns `True` if the item is modified
|
|
358
|
+
*/
|
|
359
|
+
uncheckItem(item) {
|
|
360
|
+
return this._uncheckItem(item);
|
|
361
|
+
}
|
|
362
|
+
_uncheckItem(item, manageRelationships = this.manageRelationships) {
|
|
363
|
+
if (this.canUncheckItem(item)) {
|
|
364
|
+
this.composer.setItemPropertyValue(item, 'selected', false);
|
|
365
|
+
if (manageRelationships) {
|
|
366
|
+
this.forceUpdateOnPath(item);
|
|
367
|
+
this.getItemDescendants(item).forEach(descendant => this._uncheckItem(descendant, false));
|
|
368
|
+
}
|
|
369
|
+
return true;
|
|
370
|
+
}
|
|
371
|
+
return false;
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* Toggles the item checked state
|
|
375
|
+
* @param item Original data item
|
|
376
|
+
* @returns `True` if the item is modified
|
|
377
|
+
*/
|
|
378
|
+
toggleItem(item) {
|
|
379
|
+
return this.checkItem(item) || this.uncheckItem(item);
|
|
380
|
+
}
|
|
381
|
+
/**
|
|
382
|
+
* Checks all items
|
|
383
|
+
* @returns {void}
|
|
384
|
+
*/
|
|
385
|
+
checkAllItems() {
|
|
386
|
+
this.editableItems.forEach(item => this.checkItem(item));
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* Unchecks all items
|
|
390
|
+
* @returns {void}
|
|
391
|
+
*/
|
|
392
|
+
uncheckAllItems() {
|
|
393
|
+
this.editableItems.forEach(item => this.uncheckItem(item));
|
|
394
|
+
}
|
|
395
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import '@refinitiv-ui/elements/lib/checkbox/themes/halo/dark';
|
|
2
|
+
import '@refinitiv-ui/elements/lib/icon/themes/halo/dark';
|
|
3
|
+
import '@refinitiv-ui/elements/lib/item/themes/halo/dark';
|
|
4
|
+
|
|
5
|
+
elf.customStyles.define('ef-tree-item', '@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){:host(:after){content:\'\';min-height:inherit;font-size:0}}:host([selected]){color:#fff;font-weight:500}:host([readonly]){cursor:default}:host([focused]),:host([highlighted]){background-color:#334bff;color:#fff}:host([focused]:not([selected])),:host([highlighted]:not([selected])){color:#fff}:host [part=center],:host [part=sub-label]{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}:host([disabled]){color:rgba(204,204,204,.5)}:host([type=divider]),:host([type=header]){pointer-events:none;min-height:auto}:host([type=divider]) [part=sub-label],:host([type=header]) [part=sub-label]{display:none}:host([type=header]){color:#999;background-color:transparent;font-size:83%;font-weight:500;border:none;height:24px;align-items:flex-end;margin:0;min-height:0;text-transform:uppercase}:host([type=divider]){border:none;padding:0;margin:0;height:5px;background:linear-gradient(#404040,#404040) 0 center/calc(100% - (0px * 2)) 1px no-repeat}:host [part=checkbox],:host [part=icon],:host [part=left] ::slotted(*){margin:0 .5em 0 0}:host [part=right] ::slotted(*){margin-left:.5em}:host{outline:0;cursor:pointer;padding:0 8px;min-height:24px;box-sizing:border-box;touch-action:manipulation;min-width:300px;display:flex;align-items:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-top:-1px;border-top:1px solid #404040;border-bottom:1px solid #404040;background-color:#1a1a1a;min-height:28px}:host(:after){content:\'\';min-height:inherit;font-size:0}:host [part=indent]{height:0;width:0;flex:none}:host [part=toggle]{width:24px;height:24px;margin-top:-4px;margin-bottom:-4px;margin-left:-4px;max-height:100%;display:flex;align-items:center;justify-content:center;flex:none}:host [part~=toggle-icon]{transition:transform .1s}:host [part~=toggle-icon-expanded]{transform:rotate(90deg)}:host [part=checkbox]{margin:0 8px 0 0;flex:none}:host [part=label]{padding:4px 8px;word-break:break-word;line-height:1.2}:host([type=header]){align-items:center}:host [part=sub-label]{font-size:90%}:host([sub-label]){padding:4px 8px}:host([selected]:not([highlighted]):not([focused])){background-color:#333}:host([selected]:not([multiple])){background-image:linear-gradient(#334bff,#334bff);background-size:4px 100%;background-position:left top;background-repeat:no-repeat}:host([selected][focused]),:host([selected][highlighted]){color:#fff}:host([group]:not([focused]):not([highlighted])){background-color:#262626}:host([group][focused]:not([multiple])),:host([group][highlighted]:not([multiple])){color:#fff;background-color:#333}:host [part=indent]{font-size:20px}');
|
|
6
|
+
|
|
7
|
+
elf.customStyles.define('ef-tree', ':host{--item-indent:8px;--item-height:24px;color:#ccc;background-color:transparent;touch-action:manipulation;scrollbar-face-color:#595959;scrollbar-shadow-color:#595959;scrollbar-highlight-color:#595959;scrollbar-arrow-color:#595959;scrollbar-track-color:#1a1a1a;scrollbar-3dlight-color:#1a1a1a;scrollbar-darkshadow-color:#1a1a1a;scrollbar-color:#595959 #1a1a1a;scrollbar-width:thin;overflow-x:auto}:host(:focus){outline:0}:host([readonly]) [part=list-item]{cursor:default}::-webkit-scrollbar-corner{background:0 0}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-thumb{background:#595959;border-radius:0;border:1px solid transparent}::-webkit-scrollbar-thumb:hover{background:#334bff}::-webkit-scrollbar-thumb:active{background:#0f1e8a}::-webkit-scrollbar-track{background:#1a1a1a}::-webkit-scrollbar-thumb:horizontal{background-size:auto 6px;background-repeat:repeat-x;background-image:linear-gradient(to bottom,#595959,#595959);background-color:transparent;background-position:center}::-webkit-scrollbar-thumb:horizontal:hover{background-image:linear-gradient(to bottom,#334bff,#334bff);background-color:transparent;background-position:center}::-webkit-scrollbar-thumb:horizontal:active{background-image:linear-gradient(to bottom,#0f1e8a,#0f1e8a);background-color:transparent;background-position:center}::-webkit-scrollbar-thumb:vertical{background-size:6px auto;background-repeat:repeat-y;background-image:linear-gradient(to right,#595959,#595959);background-color:transparent;background-position:center}::-webkit-scrollbar-thumb:vertical:hover{background-image:linear-gradient(to right,#334bff,#334bff);background-color:transparent;background-position:center}::-webkit-scrollbar-thumb:vertical:active{background-image:linear-gradient(to right,#0f1e8a,#0f1e8a);background-color:transparent;background-position:center}::-webkit-scrollbar-track:horizontal{border-top:1px solid #0d0d0d;border-bottom:1px solid #0d0d0d}::-webkit-scrollbar-track:vertical{border-left:1px solid #0d0d0d;border-right:1px solid #0d0d0d}::-webkit-scrollbar-button{background:0 0/1px 2px no-repeat #1a1a1a;height:16px;width:16px;display:none;border:1px solid #0d0d0d}::-webkit-scrollbar-button:end:decrement,::-webkit-scrollbar-button:start:increment{display:none}::-webkit-scrollbar-button:hover{background-color:#334bff;border:1px solid #334bff}::-webkit-scrollbar-button:active{background-color:#0f1e8a;border:1px solid #0d0d0d}::-webkit-scrollbar-button:horizontal{background-size:2px 1px}::-webkit-scrollbar-button:vertical:start:decrement{border-bottom-color:#0d0d0d;background-image:linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc);background-position:10.55px 8px,9.55px 7px,8.55px 6px,7.55px 5px,6.55px 4px,5.55px 5px,4.55px 6px,3.55px 7px,2.55px 8px}::-webkit-scrollbar-button:vertical:start:decrement:hover{background-image:linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);background-position:10.55px 8px,9.55px 7px,8.55px 6px,7.55px 5px,6.55px 4px,5.55px 5px,4.55px 6px,3.55px 7px,2.55px 8px;border-bottom-color:#334bff}::-webkit-scrollbar-button:vertical:start:decrement:active{background-image:linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);background-position:10.55px 8px,9.55px 7px,8.55px 6px,7.55px 5px,6.55px 4px,5.55px 5px,4.55px 6px,3.55px 7px,2.55px 8px;border-bottom-color:#0d0d0d}::-webkit-scrollbar-button:vertical:end:increment{border-top-color:#0d0d0d;background-image:linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc);background-position:10.55px 4px,9.55px 5px,8.55px 6px,7.55px 7px,6.55px 8px,5.55px 7px,4.55px 6px,3.55px 5px,2.55px 4px}::-webkit-scrollbar-button:vertical:end:increment:hover{background-image:linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);background-position:10.55px 4px,9.55px 5px,8.55px 6px,7.55px 7px,6.55px 8px,5.55px 7px,4.55px 6px,3.55px 5px,2.55px 4px;border-top-color:#334bff}::-webkit-scrollbar-button:vertical:end:increment:active{background-image:linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);background-position:10.55px 4px,9.55px 5px,8.55px 6px,7.55px 7px,6.55px 8px,5.55px 7px,4.55px 6px,3.55px 5px,2.55px 4px;border-top-color:#0d0d0d}::-webkit-scrollbar-button:horizontal:start:decrement{border-right-color:#0d0d0d;background-image:linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc);background-position:7.5px 10.55px,6.5px 9.55px,5.5px 8.55px,4.5px 7.55px,3.5px 6.55px,4.5px 5.55px,5.5px 4.55px,6.5px 3.55px,7.5px 2.55px}::-webkit-scrollbar-button:horizontal:start:decrement:hover{background-image:linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);background-position:7.5px 10.55px,6.5px 9.55px,5.5px 8.55px,4.5px 7.55px,3.5px 6.55px,4.5px 5.55px,5.5px 4.55px,6.5px 3.55px,7.5px 2.55px;border-right-color:#334bff}::-webkit-scrollbar-button:horizontal:start:decrement:active{background-image:linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);background-position:7.5px 10.55px,6.5px 9.55px,5.5px 8.55px,4.5px 7.55px,3.5px 6.55px,4.5px 5.55px,5.5px 4.55px,6.5px 3.55px,7.5px 2.55px;border-right-color:#0d0d0d}::-webkit-scrollbar-button:horizontal:end:increment{border-left-color:#0d0d0d;background-image:linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc),linear-gradient(#ccc,#ccc);background-position:5px 10.55px,6px 9.55px,7px 8.55px,8px 7.55px,9px 6.55px,8px 5.55px,7px 4.55px,6px 3.55px,5px 2.55px}::-webkit-scrollbar-button:horizontal:end:increment:hover{background-image:linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);background-position:5px 10.55px,6px 9.55px,7px 8.55px,8px 7.55px,9px 6.55px,8px 5.55px,7px 4.55px,6px 3.55px,5px 2.55px;border-left-color:#334bff}::-webkit-scrollbar-button:horizontal:end:increment:active{background-image:linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);background-position:5px 10.55px,6px 9.55px,7px 8.55px,8px 7.55px,9px 6.55px,8px 5.55px,7px 4.55px,6px 3.55px,5px 2.55px;border-left-color:#0d0d0d}');
|