@refinitiv-ui/elements 0.0.0-build.1957399501.1
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 +412 -0
- package/LICENSE +13 -0
- package/README.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 +243 -0
- package/lib/autosuggest/custom-elements.md +54 -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 +538 -0
- package/lib/autosuggest/index.js +1254 -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 +138 -0
- package/lib/button/index.js +241 -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 +125 -0
- package/lib/button-bar/index.js +294 -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 +26 -0
- package/lib/calendar/constants.js +28 -0
- package/lib/calendar/custom-elements.json +201 -0
- package/lib/calendar/custom-elements.md +35 -0
- package/lib/calendar/index.d.ts +412 -0
- package/lib/calendar/index.js +1297 -0
- package/lib/calendar/locales.d.ts +1 -0
- package/lib/calendar/locales.js +41 -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 +32 -0
- package/lib/calendar/types.js +1 -0
- package/lib/calendar/utils.d.ts +42 -0
- package/lib/calendar/utils.js +120 -0
- package/lib/canvas/custom-elements.json +71 -0
- package/lib/canvas/custom-elements.md +27 -0
- package/lib/canvas/index.d.ts +101 -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 +61 -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 +142 -0
- package/lib/card/index.js +247 -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 +484 -0
- package/lib/chart/plugins/doughnut-center-label.d.ts +3 -0
- package/lib/chart/plugins/doughnut-center-label.js +191 -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 +71 -0
- package/lib/checkbox/custom-elements.md +18 -0
- package/lib/checkbox/index.d.ts +97 -0
- package/lib/checkbox/index.js +194 -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 +125 -0
- package/lib/clock/custom-elements.md +28 -0
- package/lib/clock/index.d.ts +321 -0
- package/lib/clock/index.js +583 -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 +81 -0
- package/lib/collapse/custom-elements.md +27 -0
- package/lib/collapse/index.d.ts +123 -0
- package/lib/collapse/index.js +225 -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 +206 -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 +131 -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 +241 -0
- package/lib/combo-box/custom-elements.md +42 -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/renderer.d.ts +8 -0
- package/lib/combo-box/helpers/renderer.js +24 -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 +551 -0
- package/lib/combo-box/index.js +1199 -0
- package/lib/combo-box/themes/halo/dark/index.js +7 -0
- package/lib/combo-box/themes/halo/light/index.js +7 -0
- package/lib/combo-box/themes/solar/charcoal/index.js +7 -0
- package/lib/combo-box/themes/solar/pearl/index.js +7 -0
- package/lib/counter/custom-elements.json +39 -0
- package/lib/counter/custom-elements.md +11 -0
- package/lib/counter/index.d.ts +91 -0
- package/lib/counter/index.js +154 -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 +362 -0
- package/lib/datetime-picker/custom-elements.md +57 -0
- package/lib/datetime-picker/index.d.ts +509 -0
- package/lib/datetime-picker/index.js +1174 -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 +169 -0
- package/lib/dialog/custom-elements.md +48 -0
- package/lib/dialog/draggable-element.d.ts +14 -0
- package/lib/dialog/draggable-element.js +220 -0
- package/lib/dialog/index.d.ts +213 -0
- package/lib/dialog/index.js +353 -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 +186 -0
- package/lib/email-field/custom-elements.md +37 -0
- package/lib/email-field/index.d.ts +80 -0
- package/lib/email-field/index.js +91 -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 +96 -0
- package/lib/flag/index.js +168 -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 +66 -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 +1094 -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 +90 -0
- package/lib/icon/index.js +171 -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 +82 -0
- package/lib/interactive-chart/custom-elements.md +31 -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 +383 -0
- package/lib/interactive-chart/index.js +1089 -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 +153 -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 +159 -0
- package/lib/item/index.js +269 -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 +245 -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 +144 -0
- package/lib/led-gauge/index.js +438 -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 +137 -0
- package/lib/list/custom-elements.md +33 -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 +37 -0
- package/lib/list/helpers/types.d.ts +3 -0
- package/lib/list/helpers/types.js +1 -0
- package/lib/list/index.d.ts +313 -0
- package/lib/list/index.js +640 -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 +239 -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 +301 -0
- package/lib/multi-input/index.js +593 -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 +245 -0
- package/lib/number-field/custom-elements.md +42 -0
- package/lib/number-field/index.d.ts +339 -0
- package/lib/number-field/index.js +751 -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 +355 -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 +408 -0
- package/lib/overlay/elements/overlay.js +1428 -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 +227 -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 +210 -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 +246 -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 +387 -0
- package/lib/overlay-menu/index.js +932 -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 +76 -0
- package/lib/pagination/custom-elements.md +26 -0
- package/lib/pagination/index.d.ts +275 -0
- package/lib/pagination/index.js +551 -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 +151 -0
- package/lib/password-field/custom-elements.md +39 -0
- package/lib/password-field/index.d.ts +89 -0
- package/lib/password-field/index.js +115 -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 +97 -0
- package/lib/pill/custom-elements.md +22 -0
- package/lib/pill/index.d.ts +113 -0
- package/lib/pill/index.js +191 -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 +84 -0
- package/lib/radio-button/custom-elements.md +19 -0
- package/lib/radio-button/index.d.ts +123 -0
- package/lib/radio-button/index.js +261 -0
- package/lib/radio-button/radio-button-registry.d.ts +22 -0
- package/lib/radio-button/radio-button-registry.js +95 -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 +169 -0
- package/lib/search-field/custom-elements.md +41 -0
- package/lib/search-field/index.d.ts +77 -0
- package/lib/search-field/index.js +88 -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 +104 -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 +396 -0
- package/lib/select/index.js +978 -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 +68 -0
- package/lib/sidebar-layout/custom-elements.md +21 -0
- package/lib/sidebar-layout/index.d.ts +70 -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 +1195 -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 +109 -0
- package/lib/sparkline/index.js +187 -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 +111 -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 +296 -0
- package/lib/swing-gauge/index.js +770 -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 +136 -0
- package/lib/tab/custom-elements.md +23 -0
- package/lib/tab/index.d.ts +136 -0
- package/lib/tab/index.js +236 -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 +64 -0
- package/lib/tab-bar/custom-elements.md +18 -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 +198 -0
- package/lib/tab-bar/index.js +428 -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 +199 -0
- package/lib/text-field/custom-elements.md +35 -0
- package/lib/text-field/index.d.ts +164 -0
- package/lib/text-field/index.js +284 -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 +122 -0
- package/lib/time-picker/custom-elements.md +28 -0
- package/lib/time-picker/index.d.ts +412 -0
- package/lib/time-picker/index.js +897 -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 +84 -0
- package/lib/toggle/custom-elements.md +19 -0
- package/lib/toggle/index.d.ts +87 -0
- package/lib/toggle/index.js +153 -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 +475 -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 +114 -0
- package/lib/tree/custom-elements.md +32 -0
- package/lib/tree/elements/tree-item.d.ts +129 -0
- package/lib/tree/elements/tree-item.js +238 -0
- package/lib/tree/elements/tree.d.ts +203 -0
- package/lib/tree/elements/tree.js +414 -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 +111 -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 +404 -0
- package/lib/tree-select/index.js +895 -0
- package/lib/tree-select/themes/halo/dark/index.js +11 -0
- package/lib/tree-select/themes/halo/light/index.js +11 -0
- package/lib/tree-select/themes/solar/charcoal/index.js +11 -0
- package/lib/tree-select/themes/solar/pearl/index.js +11 -0
- package/lib/version.d.ts +1 -0
- package/lib/version.js +1 -0
- package/package.json +355 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [5.12.2](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.12.1...@refinitiv-ui/elements@5.12.2) (2022-02-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [5.12.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.12.0...@refinitiv-ui/elements@5.12.1) (2022-02-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [5.12.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.11.0...@refinitiv-ui/elements@5.12.0) (2022-02-15)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* radio-button not add to group ([#167](https://github.com/Refinitiv/refinitiv-ui/issues/167)) ([fb05273](https://github.com/Refinitiv/refinitiv-ui/commit/fb052730cf8c7eeb376a3a49501b85dc363bf614))
|
|
28
|
+
* **slider:** value-changed event is not fired ([#174](https://github.com/Refinitiv/refinitiv-ui/issues/174)) ([687f244](https://github.com/Refinitiv/refinitiv-ui/commit/687f244b4d848a684dc986158f324974931a3689))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **button-bar:** improve screen reader support ([#176](https://github.com/Refinitiv/refinitiv-ui/issues/176)) ([f121ea6](https://github.com/Refinitiv/refinitiv-ui/commit/f121ea62fbdc160823dff386ec937b45d0a131e7))
|
|
34
|
+
* **collapse:** accessibility support ([#203](https://github.com/Refinitiv/refinitiv-ui/issues/203)) ([12ae2f7](https://github.com/Refinitiv/refinitiv-ui/commit/12ae2f7fe036d0351e69f5daca4369fae4097917))
|
|
35
|
+
* **collapse:** add accessibility support ([#161](https://github.com/Refinitiv/refinitiv-ui/issues/161)) ([158f031](https://github.com/Refinitiv/refinitiv-ui/commit/158f0317dd4df9ab76e1bd27d4aa02151787c252))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Reverts
|
|
39
|
+
|
|
40
|
+
* Revert "feat(collapse): add accessibility support (#161)" (#179) ([9a0ad70](https://github.com/Refinitiv/refinitiv-ui/commit/9a0ad709d71c243fe68dbc38318a04745ea5b23b)), closes [#161](https://github.com/Refinitiv/refinitiv-ui/issues/161) [#179](https://github.com/Refinitiv/refinitiv-ui/issues/179)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
# [5.11.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.10.1...@refinitiv-ui/elements@5.11.0) (2022-01-14)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Features
|
|
50
|
+
|
|
51
|
+
* **tree:** improve screen reader support ([#102](https://github.com/Refinitiv/refinitiv-ui/issues/102)) ([0d6db3b](https://github.com/Refinitiv/refinitiv-ui/commit/0d6db3bbf11eb6793ade6f60cab2f24b98bd9f40))
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## [5.10.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.10.0...@refinitiv-ui/elements@5.10.1) (2022-01-12)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
* **checkbox:** `Enter` key should not check or uncheck checkbox ([ee61255](https://github.com/Refinitiv/refinitiv-ui/commit/ee6125513ab670495ef7b87580fa97ea386c840a))
|
|
63
|
+
* **pagination:** handle case when user input number with string ([#142](https://github.com/Refinitiv/refinitiv-ui/issues/142)) ([975f999](https://github.com/Refinitiv/refinitiv-ui/commit/975f9998bc1cf4b5326b567023984d8a893e6983))
|
|
64
|
+
* **radio-button:** `Enter` key should not check or uncheck radio-button ([145f7bf](https://github.com/Refinitiv/refinitiv-ui/commit/145f7bfc15fe72e95d0719eaa6d691f09fd8a03c))
|
|
65
|
+
* **radio-button:** add IE11 arrow keys navigation support ([#158](https://github.com/Refinitiv/refinitiv-ui/issues/158)) ([6389d00](https://github.com/Refinitiv/refinitiv-ui/commit/6389d006a07cdc5ed04ae77748f12726b7da48e1))
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
# [5.10.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.9.1...@refinitiv-ui/elements@5.10.0) (2021-12-21)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* **label:** break all words when line-clamp is 1 ([#115](https://github.com/Refinitiv/refinitiv-ui/issues/115)) ([3b9f456](https://github.com/Refinitiv/refinitiv-ui/commit/3b9f4566dcf39eba8464df6443be89a156c9692e))
|
|
77
|
+
* **pagiantion:** convert prop toString in setter ([3c32ee9](https://github.com/Refinitiv/refinitiv-ui/commit/3c32ee95a237180da6e2449eb654b749de2340c9))
|
|
78
|
+
* **pagination:** add missing feature blur to set page from the input ([f6ff2e1](https://github.com/Refinitiv/refinitiv-ui/commit/f6ff2e14509627119d8d3e22c8c2005fae81ef0c))
|
|
79
|
+
* **pagination:** getter in internal will retrigger incorrect warning message ([e506885](https://github.com/Refinitiv/refinitiv-ui/commit/e50688509bc668be4592d0be73df891ffd139208))
|
|
80
|
+
* **pagination:** max limit does not work ([715956e](https://github.com/Refinitiv/refinitiv-ui/commit/715956e4936f4a7b219c8d06ce755e7cbf43b755))
|
|
81
|
+
* **pagination:** remove warning when set correct type value ([235b46b](https://github.com/Refinitiv/refinitiv-ui/commit/235b46b3306a1833515858ae421bd53942fe8242))
|
|
82
|
+
* **pagination:** tab on the input to set a value ([675f4d6](https://github.com/Refinitiv/refinitiv-ui/commit/675f4d6039d0a391d34e946e42abf596b5f17e1b))
|
|
83
|
+
* **pagination:** the input does not get disable state from the root ([6603949](https://github.com/Refinitiv/refinitiv-ui/commit/6603949d2cce1eb0c5b59f727b3c8a5273fb67a8))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Features
|
|
87
|
+
|
|
88
|
+
* **pagination:** support max unknown ([d3997ce](https://github.com/Refinitiv/refinitiv-ui/commit/d3997ce16abb9c01ecc43bcf6a80386b02cd3c12))
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
## [5.9.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.9.0...@refinitiv-ui/elements@5.9.1) (2021-12-15)
|
|
95
|
+
|
|
96
|
+
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
# [5.9.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.8.1...@refinitiv-ui/elements@5.9.0) (2021-12-15)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### Features
|
|
106
|
+
|
|
107
|
+
* add named exports to elements, themes and locales to support full backward compatibility ([#114](https://github.com/Refinitiv/refinitiv-ui/issues/114)) ([7d25d50](https://github.com/Refinitiv/refinitiv-ui/commit/7d25d50c649308fc5a17d086e9e01467a0dabfb9))
|
|
108
|
+
* **calendar:** improve screen reader support ([#73](https://github.com/Refinitiv/refinitiv-ui/issues/73)) ([a2576cc](https://github.com/Refinitiv/refinitiv-ui/commit/a2576cc8a1f0229bb5988af0c9d0bbf8ce7f765c))
|
|
109
|
+
* **combo-box:** improve screen reader support ([#116](https://github.com/Refinitiv/refinitiv-ui/issues/116)) ([f603de1](https://github.com/Refinitiv/refinitiv-ui/commit/f603de1d3b1900875d6903477938ecd21d055531))
|
|
110
|
+
* **time-picker:** improve screen reader support ([#121](https://github.com/Refinitiv/refinitiv-ui/issues/121)) ([1eb8bee](https://github.com/Refinitiv/refinitiv-ui/commit/1eb8beeb7d3b0d7be7224943e7d0a7c62c0cb788))
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
## [5.8.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.8.0...@refinitiv-ui/elements@5.8.1) (2021-12-07)
|
|
115
|
+
|
|
116
|
+
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
# [5.8.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.7.0...@refinitiv-ui/elements@5.8.0) (2021-12-03)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Bug Fixes
|
|
126
|
+
|
|
127
|
+
* change default role to more generic type for better extendibility ([#100](https://github.com/Refinitiv/refinitiv-ui/issues/100)) ([fe999dc](https://github.com/Refinitiv/refinitiv-ui/commit/fe999dc66b5f42581a37329ced697ae6ac2dc929))
|
|
128
|
+
* **combo-box:** fix arrow icon not show in Solar when disabled ([55c1008](https://github.com/Refinitiv/refinitiv-ui/commit/55c1008b7b63f915a7575059c6539e63a757e389))
|
|
129
|
+
* **combo-box:** import `counter` instead of `pill` ([6410c03](https://github.com/Refinitiv/refinitiv-ui/commit/6410c03dd12077f25347dddb249b6a6700186abc))
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Features
|
|
133
|
+
|
|
134
|
+
* **list:** improve screen reader ([0bc3a8c](https://github.com/Refinitiv/refinitiv-ui/commit/0bc3a8c9c4051200cd1a5c8ed655d1d3ebbd9021))
|
|
135
|
+
* **select:** improve screen reader support ([#80](https://github.com/Refinitiv/refinitiv-ui/issues/80)) ([a43fbcd](https://github.com/Refinitiv/refinitiv-ui/commit/a43fbcd4b23b2f508ddc94b8007913f66da1ae89))
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
# [5.7.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.6.0...@refinitiv-ui/elements@5.7.0) (2021-11-22)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
### Bug Fixes
|
|
145
|
+
|
|
146
|
+
* **tree:** correctly update dependant checked states ([#82](https://github.com/Refinitiv/refinitiv-ui/issues/82)) ([fdb7018](https://github.com/Refinitiv/refinitiv-ui/commit/fdb7018f9446f933f428448ada60f4a8cacc1acf))
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
### Features
|
|
150
|
+
|
|
151
|
+
* **item:** improve screen reader support ([#74](https://github.com/Refinitiv/refinitiv-ui/issues/74)) ([b14b950](https://github.com/Refinitiv/refinitiv-ui/commit/b14b950897cb96cdc957e12d93b510cc4361c4f3))
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
# [5.6.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.5.0...@refinitiv-ui/elements@5.6.0) (2021-11-08)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Bug Fixes
|
|
161
|
+
|
|
162
|
+
* **datetime-picker:** values are not update synchronously ([#59](https://github.com/Refinitiv/refinitiv-ui/issues/59)) ([55500a3](https://github.com/Refinitiv/refinitiv-ui/commit/55500a30f4daab1110d7664b6c244dd2b83995cb))
|
|
163
|
+
* incorrect tap behaviour ([#57](https://github.com/Refinitiv/refinitiv-ui/issues/57)) ([a245fbe](https://github.com/Refinitiv/refinitiv-ui/commit/a245fbe1999057de0525313e35d5156cc497135f))
|
|
164
|
+
* **multi-input:** only focus input on click clear button ([#64](https://github.com/Refinitiv/refinitiv-ui/issues/64)) ([214452a](https://github.com/Refinitiv/refinitiv-ui/commit/214452ac02f77c91090226597c2c02e95fc3d084))
|
|
165
|
+
* **tree-select:** update selectAll condition when search no match ([#53](https://github.com/Refinitiv/refinitiv-ui/issues/53)) ([c3b5e46](https://github.com/Refinitiv/refinitiv-ui/commit/c3b5e461bdf56ad9d17ae921d1c5f980d44754ac))
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Features
|
|
169
|
+
|
|
170
|
+
* **button:** improve accessibility for screen readers ([#33](https://github.com/Refinitiv/refinitiv-ui/issues/33)) ([89f2e19](https://github.com/Refinitiv/refinitiv-ui/commit/89f2e19f631257e5572d2c74cf7449f9be265aca))
|
|
171
|
+
* **checkbox:** improve accessibility for screen readers ([#37](https://github.com/Refinitiv/refinitiv-ui/issues/37)) ([93509d0](https://github.com/Refinitiv/refinitiv-ui/commit/93509d0ec801b880b9bf68013d83c140075c59dd))
|
|
172
|
+
* **clock:** small analogue clock face ([#54](https://github.com/Refinitiv/refinitiv-ui/issues/54)) ([bc4b2a8](https://github.com/Refinitiv/refinitiv-ui/commit/bc4b2a816135ef70819d826d15ba9b36dda99207))
|
|
173
|
+
* **core:** add latest lit directives, add focused-changed event ([69168f6](https://github.com/Refinitiv/refinitiv-ui/commit/69168f6fe3e6eea8e9abb2a875a2f283eb06d42b))
|
|
174
|
+
* **icon:** support icon names and icon urls ([6d3a92d](https://github.com/Refinitiv/refinitiv-ui/commit/6d3a92db329c5198d56aeed4a1944ef3d0e29f1d))
|
|
175
|
+
* Lit@2 upgrade ([dbda63b](https://github.com/Refinitiv/refinitiv-ui/commit/dbda63be97257f891cb1f2c5ff46b638c70e0b15))
|
|
176
|
+
* **radio-button:** improve radio button accessibility ([#43](https://github.com/Refinitiv/refinitiv-ui/issues/43)) ([12d2b23](https://github.com/Refinitiv/refinitiv-ui/commit/12d2b238c988e880d8055afe280cfb93ace6dd51))
|
|
177
|
+
* **text-field:** improve screen reader support ([#65](https://github.com/Refinitiv/refinitiv-ui/issues/65)) ([65bfa44](https://github.com/Refinitiv/refinitiv-ui/commit/65bfa4404bb4b462f20163c733b75fd509485b1b))
|
|
178
|
+
* **toggle:** improve accessibility for screen readers ([#42](https://github.com/Refinitiv/refinitiv-ui/issues/42)) ([7554471](https://github.com/Refinitiv/refinitiv-ui/commit/755447104777606247bb06bfba5e97accb893ccf))
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Performance Improvements
|
|
182
|
+
|
|
183
|
+
* **icon:** cache svg template results ([463c6ba](https://github.com/Refinitiv/refinitiv-ui/commit/463c6ba1f0403aa25605fd363ac863159ee4c492))
|
|
184
|
+
* **list:** check before positioning element in dom ([244b44f](https://github.com/Refinitiv/refinitiv-ui/commit/244b44fba553e1f40e0a55ecda93e7d943b13994))
|
|
185
|
+
* **tree:** reduce calculations for visible items ([c231f06](https://github.com/Refinitiv/refinitiv-ui/commit/c231f06a1a4a901bafefdee7dcc1e009a7902ac5))
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
# [5.5.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.3.3...@refinitiv-ui/elements@5.5.0) (2021-10-25)
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
### Bug Fixes
|
|
195
|
+
|
|
196
|
+
* dev server should start with source maps and declaration maps ([3e81b33](https://github.com/Refinitiv/refinitiv-ui/commit/3e81b33d4fb2136af2b18eeaf1fc1d740bd38105))
|
|
197
|
+
* **overlay-menu:** interactiveElements list is not reset in some scenarios ([6e17cce](https://github.com/Refinitiv/refinitiv-ui/commit/6e17cce224eafe3e54ee9c2fdfa7bf9bce5dcbfc))
|
|
198
|
+
* **overlay-menu:** remove wrong super call ([0a63e1f](https://github.com/Refinitiv/refinitiv-ui/commit/0a63e1fc9c0bb8a161010fd15df47198a9101bfa))
|
|
199
|
+
* **overlay:** incorrect change check for `interactiveElements` property ([d1da5b6](https://github.com/Refinitiv/refinitiv-ui/commit/d1da5b692df070f0bb8f08644dd30b43673ffb49))
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
### Features
|
|
203
|
+
|
|
204
|
+
* add browsers option to test command ([#27](https://github.com/Refinitiv/refinitiv-ui/issues/27)) ([64a1d46](https://github.com/Refinitiv/refinitiv-ui/commit/64a1d464fb3c4a1f1cf851c3ab070cd9f615fb6c))
|
|
205
|
+
* **tree:** query attribute and property ([ce067c7](https://github.com/Refinitiv/refinitiv-ui/commit/ce067c723cf42a57545589dea4feb57ac1e08822))
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
## [5.3.3](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@5.3.2...@refinitiv-ui/elements@5.3.3) (2021-10-11)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
### Bug Fixes
|
|
215
|
+
|
|
216
|
+
* **accordion:** remove unuse property collapseAnimationDisabled ([0b8bd7b](https://github.com/Refinitiv/refinitiv-ui/commit/0b8bd7bf9e886eb711802b37dbbe90874d52cf21))
|
|
217
|
+
* **card:** use new icon ([af5d7fc](https://github.com/Refinitiv/refinitiv-ui/commit/af5d7fcfa30e4400259d641435e6aebddceba88d))
|
|
218
|
+
* remove source maps reference from the production build ([655d0bb](https://github.com/Refinitiv/refinitiv-ui/commit/655d0bb57290e5fe1276bf1a99bd7a0190d7a2f8))
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
## [5.3.1](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.3.0...@refinitiv-ui/elements@5.3.1) (2021-09-27)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
### Bug Fixes
|
|
228
|
+
|
|
229
|
+
* **button:** remove hover-icon template if hover-icon is not specified ([6459a18](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/6459a18cf6d3d08d79831c35586fa3bc132155b0))
|
|
230
|
+
* **swing-gauge:** label container overflow ([c1760ca](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/c1760cad4dc5426ef473f4a2a45b868e443c8818))
|
|
231
|
+
* **toggle:** fix reflect label attribute ([4878f4e](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/4878f4ee38f774420eb2641e1879461bc9f3356a))
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
# [5.3.0](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.2.1...@refinitiv-ui/elements@5.3.0) (2021-09-15)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
### Features
|
|
241
|
+
|
|
242
|
+
* **heatmap:** add method to retrieve data from cell's events ([d4e03f7](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/d4e03f7a423fd4312c20b3ec1fb84181884c8479))
|
|
243
|
+
* **swing-gauge:** redesign ([fc0bf03](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/fc0bf03941cbd893ebde3c322fc5ff3cc7fe1330))
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
## [5.2.1](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.2.0...@refinitiv-ui/elements@5.2.1) (2021-09-13)
|
|
250
|
+
|
|
251
|
+
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
# [5.2.0](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.1.1...@refinitiv-ui/elements@5.2.0) (2021-09-10)
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
### Bug Fixes
|
|
261
|
+
|
|
262
|
+
* **calendar:** first day of week is not applied in some scenarios ([9001a33](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/9001a334915ddece0b7e63aa451a64f699672326))
|
|
263
|
+
* **card:** fix unsupport css on IE ([f1c67b9](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/f1c67b9169c4d496a87d7cba10aedaaa6fa7b2f0))
|
|
264
|
+
* **card:** integrate with new label ([4f607fb](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/4f607fb9923c509c0f1f459bcf3f411e765db497))
|
|
265
|
+
* **card:** use ef-button import ([57e4de9](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/57e4de98c68f93216df15ef4471027777b66b6b8))
|
|
266
|
+
* **label:** allow single line ellipsis in IE ([2aa3cf6](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/2aa3cf67a095f65ea33c12953d8a45065856c808))
|
|
267
|
+
* **label:** break single long words ([0652629](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/0652629389eadb8963e97a2e143cdad2a1060452))
|
|
268
|
+
* **label:** remove max-line property as it's deprecated ([0463ce0](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/0463ce09ad242482ab00cb7d4a90d0cb0cd4e533))
|
|
269
|
+
* **overlay:** revert merge error ([6fee0da](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/6fee0da06422afff26cc968f83bab529c2b0b2a3))
|
|
270
|
+
* **tab:** remove override label display ([4dc04c5](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/4dc04c58bfebf7c30fa9a5918127fecaa00bd0ca))
|
|
271
|
+
* **tooltip:** add return type ([7ff2d55](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/7ff2d554adb7e1abe9964d994d2dbc52319d7f96))
|
|
272
|
+
* **tooltip:** use passive event listeners ([19f1c03](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/19f1c030accacd520834ffd55f33453423337f0c))
|
|
273
|
+
* **tree-select:** swap position of the action button ([0eb828c](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/0eb828ce7e23fd03c7c3d0a22e979b764b5b0d5c))
|
|
274
|
+
* **tree-select:** unable to select a filtered parent item ([6c7a81f](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/6c7a81fe452975d6ced85cec5c44d209ba17a970))
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
### Features
|
|
278
|
+
|
|
279
|
+
* **coral-tree:** add icon to coral tree ([d4dfc1c](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/d4dfc1c57428fea52002491afce303b5a8626009))
|
|
280
|
+
* **counter:** add counter element ([ee6283b](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/ee6283b20f93b980df51e519618db0cf2f673e41))
|
|
281
|
+
* **label:** add IE support ([2f9d782](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/2f9d7826aedc43fbc6eb20f69c93c0e5bd30d221))
|
|
282
|
+
* **label:** allow all truncation methods ([81a7e57](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/81a7e57e56310c85c55908652de0a59f547fea63))
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
## [5.1.1](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.1.0...@refinitiv-ui/elements@5.1.1) (2021-08-27)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
### Bug Fixes
|
|
292
|
+
|
|
293
|
+
* **chart:** render chart correctly in IE ([575e820](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/575e820d5d8ac8eeb910b510320322b06d8b829b))
|
|
294
|
+
* **email-field:** can focus while disabled ([d045ea8](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/d045ea81a3d916cfb4dc5bbe8ff6722e7ca62f38))
|
|
295
|
+
* **interactive-chart:** legendPriceFormatter should not be called if there is no value ([8f40610](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/8f40610b37cededb60bbf6d1bc51b538feab0ef4))
|
|
296
|
+
* **interactive-chart:** update Trading View logo ([8acda57](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/8acda574874746a216eca9ed234c96e860e21ade))
|
|
297
|
+
* **list:** render order wrong when recycling nodes ([eed56c7](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/eed56c7947ca5974e7f15f81e0aef8bca67a8692))
|
|
298
|
+
* **number-field:** can focus while disabled ([9fd1e65](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/9fd1e65a0d8a75aa4338dc96f504fc13066a0132))
|
|
299
|
+
* **password-field:** can focus while disabled ([7f8f941](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/7f8f941a53ec51262a54aadca887a4122c8a32f6))
|
|
300
|
+
* **search-field:** can focus while disabled ([73aad4a](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/73aad4ae37a4e8570a4bcb5e2cf5ae3d7d33070b))
|
|
301
|
+
* **slider:** add warning invalid property ([70e8a00](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/70e8a007f48c3c289bd9c44a53a73b9099f9645f))
|
|
302
|
+
* **text-field:** can focus while disabled ([25f2733](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/25f273331acb325865fe373223eb51185db2d1a3))
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
# [5.1.0](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.0.0...@refinitiv-ui/elements@5.1.0) (2021-07-30)
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
### Bug Fixes
|
|
312
|
+
|
|
313
|
+
* **dialog:** missing attribute opening quote ([2729247](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/27292471334ab6b83d8c8437fc46d15803121483))
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
### Features
|
|
317
|
+
|
|
318
|
+
* use latest FormatJS polyfills and ICU parser ([b7855e4](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/b7855e409d10d9c8b9f31a34953470549295a8ab))
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
# [5.0.0](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.0.0-beta.3...@refinitiv-ui/elements@5.0.0) (2021-07-16)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
### Bug Fixes
|
|
328
|
+
|
|
329
|
+
* [@types](https://git.sami.int.thomsonreuters.com/types) dependencies incorrect ([09ea997](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/09ea9970c67766e5011686dd9395c93775ad7ee5))
|
|
330
|
+
* chart linting ([84a810f](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/84a810f03d33b45ee86cb97961c50da7d8fd4c11))
|
|
331
|
+
* chart linting ([b0f2599](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/b0f25990d94da4d9aecaedc33457a639167829b6))
|
|
332
|
+
* chart typo ([2d24cd6](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/2d24cd60f79e0014a413850d9a75f2be45bdf7b2))
|
|
333
|
+
* **chart:** improve types ([e83f9f1](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/e83f9f1b098d40fce51fc5ae9fa089275a7afc23))
|
|
334
|
+
* dialog linting ([43f2189](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/43f2189f1b8bdb9b81318c3df452dca02df85244))
|
|
335
|
+
* **dialog:** improve types ([bb98a7d](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/bb98a7d5bd9f7aef0666baa82ac29a4f97411c1b))
|
|
336
|
+
* **icon:** fixed line height in icon ([b6d2820](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/b6d28208e0b7038d446cb0258e42acc2438b2b3e))
|
|
337
|
+
* ignore release script ([0d02a91](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/0d02a914f07d77b89f3ac220a86da005f38f99cd))
|
|
338
|
+
* interactive chart linting ([ade94d2](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/ade94d2bb0d2b5fc73def82037718f232afe69d5))
|
|
339
|
+
* **interactive-chart:** change attribute name to legend-style ([3270b8d](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/3270b8d00e28e0f65455ed060e46b3e9ded958f9))
|
|
340
|
+
* list linting ([428cf91](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/428cf91fdc70a28042bd8bb3cdf08d8538db7b05))
|
|
341
|
+
* tooltip linting ([7f31788](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/7f3178826e7fcd4331c70e30ed2cb5255f9f0708))
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
### Features
|
|
345
|
+
|
|
346
|
+
* add TapEvent into GlobalEventHandlersEventsMap ([5ddbe00](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/5ddbe003edb0725fdd7d0f5774d214e76b088dab))
|
|
347
|
+
* **elements:** move snapshots to individual folders ([c86f35a](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/c86f35a8806dec5f709a68eba702f19e8d6319f9))
|
|
348
|
+
* introduce generic events ([9c3444c](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/9c3444ceb2ca8de151af791f289f3ce5c56866b2))
|
|
349
|
+
* rollback files and folders that do not need to be changed ([83a382a](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/83a382a522c10895b4c31c69fe19f5f7d00c9f66))
|
|
350
|
+
* **tree:** remove deprecated code ([359b96c](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/359b96c500d37501fd6309513a98b48ba63eabce))
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
### Reverts
|
|
354
|
+
|
|
355
|
+
* Revert "fix release-script lint" ([70cd4e7](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/70cd4e772aebca7520c19f2f8870b7d745903034))
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
# [5.0.0-beta.3](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.0.0-beta.1...@refinitiv-ui/elements@5.0.0-beta.3) (2021-07-02)
|
|
362
|
+
|
|
363
|
+
### Bug Fixes
|
|
364
|
+
|
|
365
|
+
- **autosuggest:** remove HTMLElement from CustomEvent type ([5ff47e1](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/5ff47e18dd64d989b29e3a413963c940cb0415c1))
|
|
366
|
+
- **chart:** `@types/chart.js` should be a dependency ([c4168b3](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/c4168b3bec0a4289f74d57ca829b7ecffa507738))
|
|
367
|
+
- **chart:** export interface instead of type ([14fa287](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/14fa287fa7618ebbe9f818e6b29f9db97a1a84c9))
|
|
368
|
+
- **collapse:** do not `setAttribute` when panel is still null ([c25602e](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/c25602ea06cad4ae1ed0fec4c27f50c005731955))
|
|
369
|
+
- **combo-box:** provide default value to generic `ComboBoxData` type ([be111cd](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/be111cdab89911774f85861c99e751761d244ca7))
|
|
370
|
+
- **interactive-chart:** handle no data point on legend ([d4a7775](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/d4a7775b5fc56bfb3983644fb1b393763832ef19))
|
|
371
|
+
- **tree:** provide default type to `TreeData` generic ([5121abd](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/5121abd1334df0b2b4429b6a47db048b8ee3139d))
|
|
372
|
+
|
|
373
|
+
### Features
|
|
374
|
+
|
|
375
|
+
- **autosuggest:** introduce new types with class name as prefix ([81d21df](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/81d21df4201d355fa2ec5225396b53edbe11bc1a))
|
|
376
|
+
- **card:** shortened `CardConfiguration` to just `CardConfig` ([3472daf](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/3472dafaa325e4fa219d22884381bbd192a69fb1))
|
|
377
|
+
- **chart:** export chart configuration type ([b1f8ae5](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/b1f8ae5a4acefd26dd55b4b2e9e6a7fa0707ec52))
|
|
378
|
+
- **chart:** shortened `ChartConfiguration` to just `ChartConfig` ([7596ef8](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/7596ef8fa2be373d06ed8652620ab103725580c7))
|
|
379
|
+
- **collapse:** allow to cancel expanded-changed event ([d850374](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/d850374b9f0de0108ee37140ab237495d52ec730))
|
|
380
|
+
- **combo-box:** introduce `ComboBoxData` type to its `data` property ([686ad15](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/686ad15103c2cbbd62b1239d4a55f1e0b536b140))
|
|
381
|
+
- **combo-box:** introduce `ComboBoxRenderer` and `ComboBoxFilter` type exports ([eb42c4f](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/eb42c4fb5e984273afbe6a7cd822eba2340dc6d3))
|
|
382
|
+
- **header:** use string literal type for `level` ([a45206f](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/a45206fdfd633bcb245ca7b3685fbad74e1962b7))
|
|
383
|
+
- **heatmap:** introduce new types with class name as prefix ([53a12ae](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/53a12aedbc407b3f321a6eb8ae139e1c8626e304))
|
|
384
|
+
- **heatmap:** shortened from `HeatmapConfiguration` to `HeatmapConfig` ([1b3b1c0](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/1b3b1c0f1d82b0976f5fd59cafabbf1bb2f30741))
|
|
385
|
+
- **interactive-chart:** rename `ChartConfig` to `InteractiveChartConfig` and `SeriesInterface` to `InteractiveChartSeries` ([6b4cd72](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/6b4cd72184c11ce6ec64994f6ef07587e20745ac))
|
|
386
|
+
- **list:** introduce `ListData` and `ListRenderer` types ([7cb1ad8](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/7cb1ad8654c547f7bc9c66e383e8e86a9b5c71ff))
|
|
387
|
+
- **multi-input:** introduce `MultiInputData` and `MultiInputDataItem` type ([40dd01e](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/40dd01e03aa0da158c09c87ed4404682310bf8b3))
|
|
388
|
+
- **overlay:** introduce `OverlayPosition`, `OverlayPositionTarget` and `OverlayTransitionStyle` type ([11ac0bb](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/11ac0bbd308c78b70a64b464a2c4f4aa86233c77))
|
|
389
|
+
- **select:** introduce `SelectData` and `SelectDataItem` types ([fded4a2](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/fded4a2cdd6a4998c6ea74b9935c38d9995a8216))
|
|
390
|
+
- **sparkline:** use `@refinitiv-ui/browser-sparkline` ([8b1a898](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/8b1a898bafcc44593485df078fe37dab22bfbde2))
|
|
391
|
+
- **sparkline:** use color conversion from utils ([a694550](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/a694550204a61319299e3df996b02141aab699be))
|
|
392
|
+
- **tab:** add stricter type to `level` ([9b1d5c3](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/9b1d5c3c22c0813796480099f453d245eff8d0fc))
|
|
393
|
+
- **tab-bar:** add stricter type to `level` ([c5f01cb](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/c5f01cb59554025cd74a785784a4f063b1631944))
|
|
394
|
+
- **tooltip:** introduce `TooltipCondition`, `TooltipRenderer`, `TooltipPosition`, `TooltipTransitionStyle` ([ad9c8b1](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/ad9c8b1b2fa6524fe44c3a5873d9694f151b31ee))
|
|
395
|
+
- **tree:** change `TreeItemData` to `TreeDataItem` ([527cd50](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/527cd503295a6aaef6865caff8312a7a11df5508))
|
|
396
|
+
- **tree:** introduce `TreeData` type to tree's data property ([ec89a4b](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/ec89a4b1a1e65582de66fbd43e9c44a3c7491762))
|
|
397
|
+
- **tree:** introduce `TreeRenderer` and `TreeItemData` types ([6064375](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/60643752c4f7e81115666901e13cf0e57806fea3))
|
|
398
|
+
- **tree-select:** introduce `TreeSelectData` and `TreeSelectFilter` types reexported from combobox ([825376a](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/825376a60634d2cca9df4f85e48dcd8a6b8aa50d))
|
|
399
|
+
- **tree-select:** introduce `TreeSelectDataItem` type ([ba9a8a0](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/ba9a8a0ecb24f93f740b07e09b76e97c9234f3d1))
|
|
400
|
+
- **tree-select:** introduce `TreeSelectRenderer` type ([c64ac43](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/c64ac430536456e9e8dfc3d505b75623ebe9da72))
|
|
401
|
+
|
|
402
|
+
### Reverts
|
|
403
|
+
|
|
404
|
+
- Revert "refactor(collapse): remove `no-animation` and header checking logic" ([1af5868](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/commits/1af58681e8503369c9da6678581b852d3f814d52))
|
|
405
|
+
|
|
406
|
+
# [5.0.0-beta.1](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.0.0-beta.0...@refinitiv-ui/elements@5.0.0-beta.1) (2021-06-22)
|
|
407
|
+
|
|
408
|
+
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
409
|
+
|
|
410
|
+
# [5.0.0-beta.0](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/elements@5.0.0-alpha.15...@refinitiv-ui/elements@5.0.0-beta.0) (2021-06-22)
|
|
411
|
+
|
|
412
|
+
**Note:** Version bump only for package @refinitiv-ui/elements
|
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright © 2021, Refinitiv.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Element Framework
|
|
2
|
+
|
|
3
|
+
Element Framework (EF) is a collection of elements that includes theming capability within the Refinitiv's design system. The elements are a set of web components which is a standard web technology and can be utilized across all browsers.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
EF elements are published under single package.
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install @refinitiv-ui/elements
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The elements are required theme to instantiate itself in the app. Refinitiv's design system is called Halo theme and you can install it from npm command.
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
npm install @refinitiv-ui/halo-theme
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Finally, import both elements that you want to use and its themes into your application and it is ready to go. To follow Refinitiv design system, it is required styles of some native elements e.g. typography.
|
|
20
|
+
|
|
21
|
+
<br>
|
|
22
|
+
|
|
23
|
+
>The font "Proxima Nova Fin" shall only be used within Refinitiv products or services. The copyright owner must approve any use of such font outside of Refinitiv products or services, which may be subject to a fee. Please see https://www.fontspring.com/lic/fontspring/webfont#license_text
|
|
24
|
+
|
|
25
|
+
<br>
|
|
26
|
+
|
|
27
|
+
```javascript
|
|
28
|
+
// import native styles for typography, css variables, etc.
|
|
29
|
+
import '@refinitiv-ui/halo-theme/dark/imports/native-elements';
|
|
30
|
+
|
|
31
|
+
// import element and its Halo dark theme
|
|
32
|
+
import '@refinitiv-ui/elements/button';
|
|
33
|
+
import '@refinitiv-ui/elements/panel';
|
|
34
|
+
import '@refinitiv-ui/elements/button/themes/halo/dark';
|
|
35
|
+
import '@refinitiv-ui/elements/panel/themes/halo/dark';
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Now, you can use the elements in your app.
|
|
39
|
+
|
|
40
|
+
```css
|
|
41
|
+
.content {
|
|
42
|
+
width:100%;
|
|
43
|
+
height: 500px;
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
```html
|
|
48
|
+
<ef-panel class="content" spacing>
|
|
49
|
+
<h2>Hello EF!</h2>
|
|
50
|
+
<ef-button cta>OK</ef-button>
|
|
51
|
+
</ef-panel>
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Command Overview
|
|
55
|
+
|
|
56
|
+
| Command | Target | Description | Example |
|
|
57
|
+
| --- |:--- | --- | --- |
|
|
58
|
+
| npm start | `<element>` | Build and serve an element. | npm start button |
|
|
59
|
+
| npm run test | `<element>` | `all` | Run unit tests. | npm run test button |
|
|
60
|
+
| npm run test:watch | `<element>` | Run test server. | npm run test:watch button |
|
|
61
|
+
| npm run test:snapshots | `<element>` | `all` | Update and prune snapshots. | npm run test:watch button |
|
|
62
|
+
| npm run lint | `<element>` | `all` | Run linting tools. | npm run lint button |
|
|
63
|
+
| npm run lint:fix | `<element>` | `all` | Fix linting errors. | npm run lint:fix button |
|
|
64
|
+
|
|
65
|
+
# Documentation
|
|
66
|
+
|
|
67
|
+
See list of elements, demo and more tutorial by visiting [EF Documentation](https://cdn.ppe.refinitiv.com/public/apps/elf-docs/book/en/index.html).
|
|
68
|
+
|
|
69
|
+
# License
|
|
70
|
+
Apache License 2.0. However, Halo theme shall only be used within Refinitiv products or services due to license of the font "Proxima Nova Fin".
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "experimental",
|
|
3
|
+
"tags": [
|
|
4
|
+
{
|
|
5
|
+
"name": "ef-accordion",
|
|
6
|
+
"description": "Used to display a group of `Collapse` control.\nOnly one item will be able to expand by default but you can customize its behavior.",
|
|
7
|
+
"attributes": [
|
|
8
|
+
{
|
|
9
|
+
"name": "auto-collapse-disabled",
|
|
10
|
+
"description": "Allow multiple sections expand at the same time",
|
|
11
|
+
"type": "boolean",
|
|
12
|
+
"default": "false"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "spacing",
|
|
16
|
+
"description": "Add spacing to content section in all collapse items",
|
|
17
|
+
"type": "boolean",
|
|
18
|
+
"default": "false"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"properties": [
|
|
22
|
+
{
|
|
23
|
+
"name": "autoCollapseDisabled",
|
|
24
|
+
"attribute": "auto-collapse-disabled",
|
|
25
|
+
"description": "Allow multiple sections expand at the same time",
|
|
26
|
+
"type": "boolean",
|
|
27
|
+
"default": "false"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "spacing",
|
|
31
|
+
"attribute": "spacing",
|
|
32
|
+
"description": "Add spacing to content section in all collapse items",
|
|
33
|
+
"type": "boolean",
|
|
34
|
+
"default": "false"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"slots": [
|
|
38
|
+
{
|
|
39
|
+
"name": "header-left",
|
|
40
|
+
"description": "Slot to add custom contents to the left side of header e.g. ef-icon, ef-checkbox"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "header-right",
|
|
44
|
+
"description": "Slot to add custom contents to the right side of header e.g. ef-icon, ef-checkbox"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# ef-accordion
|
|
2
|
+
|
|
3
|
+
Used to display a group of `Collapse` control.
|
|
4
|
+
Only one item will be able to expand by default but you can customize its behavior.
|
|
5
|
+
|
|
6
|
+
## Properties
|
|
7
|
+
|
|
8
|
+
| Property | Attribute | Type | Default | Description |
|
|
9
|
+
|------------------------|--------------------------|-----------|---------|--------------------------------------------------|
|
|
10
|
+
| `autoCollapseDisabled` | `auto-collapse-disabled` | `boolean` | false | Allow multiple sections expand at the same time |
|
|
11
|
+
| `spacing` | `spacing` | `boolean` | false | Add spacing to content section in all collapse items |
|
|
12
|
+
|
|
13
|
+
## Slots
|
|
14
|
+
|
|
15
|
+
| Name | Description |
|
|
16
|
+
|----------------|--------------------------------------------------|
|
|
17
|
+
| `header-left` | Slot to add custom contents to the left side of header e.g. ef-icon, ef-checkbox |
|
|
18
|
+
| `header-right` | Slot to add custom contents to the right side of header e.g. ef-icon, ef-checkbox |
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { JSXInterface } from '../jsx';
|
|
2
|
+
import { PropertyValues, TemplateResult, CSSResultGroup } from '@refinitiv-ui/core';
|
|
3
|
+
import { Collapse } from '../collapse/index.js';
|
|
4
|
+
/**
|
|
5
|
+
* Used to display a group of `Collapse` control.
|
|
6
|
+
* Only one item will be able to expand by default but you can customize its behavior.
|
|
7
|
+
*
|
|
8
|
+
* @slot header-left - Slot to add custom contents to the left side of header e.g. ef-icon, ef-checkbox
|
|
9
|
+
* @slot header-right - Slot to add custom contents to the right side of header e.g. ef-icon, ef-checkbox
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
export declare class Accordion extends Collapse {
|
|
13
|
+
/**
|
|
14
|
+
* Element version number
|
|
15
|
+
* @returns version number
|
|
16
|
+
*/
|
|
17
|
+
static get version(): string;
|
|
18
|
+
/**
|
|
19
|
+
* A `CSSResultGroup` that will be used
|
|
20
|
+
* to style the host, slotted children
|
|
21
|
+
* and the internal template of the element.
|
|
22
|
+
* @return CSS template
|
|
23
|
+
*/
|
|
24
|
+
static get styles(): CSSResultGroup;
|
|
25
|
+
/**
|
|
26
|
+
* Allow multiple sections expand at the same time
|
|
27
|
+
*/
|
|
28
|
+
autoCollapseDisabled: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Add spacing to content section in all collapse items
|
|
31
|
+
*/
|
|
32
|
+
spacing: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Called once after the component is first rendered
|
|
35
|
+
* @param changedProperties map of changed properties with old values
|
|
36
|
+
* @returns {void}
|
|
37
|
+
*/
|
|
38
|
+
protected firstUpdated(changedProperties: PropertyValues): void;
|
|
39
|
+
/**
|
|
40
|
+
* handle bubbled clicks from items
|
|
41
|
+
* @param event the click event object
|
|
42
|
+
* @return void
|
|
43
|
+
*/
|
|
44
|
+
private handleClick;
|
|
45
|
+
/**
|
|
46
|
+
* get a list of items
|
|
47
|
+
* @returns array of accordion items
|
|
48
|
+
*/
|
|
49
|
+
private getChildItems;
|
|
50
|
+
/**
|
|
51
|
+
* collapse non selected child items on click
|
|
52
|
+
* @param target currently selected item
|
|
53
|
+
* @return void
|
|
54
|
+
*/
|
|
55
|
+
private processChildrenOnClick;
|
|
56
|
+
/**
|
|
57
|
+
* A `TemplateResult` that will be used
|
|
58
|
+
* to render the updated internal template.
|
|
59
|
+
* @return {TemplateResult} Render template
|
|
60
|
+
*/
|
|
61
|
+
protected render(): TemplateResult;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
declare global {
|
|
65
|
+
interface HTMLElementTagNameMap {
|
|
66
|
+
'ef-accordion': Accordion;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
namespace JSX {
|
|
70
|
+
interface IntrinsicElements {
|
|
71
|
+
'ef-accordion': Partial<Accordion> | JSXInterface.HTMLAttributes<Accordion>;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export {};
|