@siemens/ix 1.0.0 → 1.1.0-beta.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/README.md +4 -0
- package/dist/cjs/ix-blind.cjs.entry.js +1 -1
- package/dist/cjs/ix-breadcrumb_2.cjs.entry.js +1 -1
- package/dist/cjs/ix-button.cjs.entry.js +1 -1
- package/dist/cjs/ix-category-filter.cjs.entry.js +1 -1
- package/dist/cjs/ix-chip.cjs.entry.js +1 -1
- package/dist/cjs/ix-date-picker_2.cjs.entry.js +214 -56
- package/dist/cjs/ix-date-time-card.cjs.entry.js +1 -1
- package/dist/cjs/ix-datetime-picker.cjs.entry.js +79 -10
- package/dist/cjs/ix-dropdown_2.cjs.entry.js +1 -1
- package/dist/cjs/ix-event-list_2.cjs.entry.js +3 -3
- package/dist/cjs/ix-expanding-search.cjs.entry.js +2 -1
- package/dist/cjs/ix-filter-chip.cjs.entry.js +1 -1
- package/dist/cjs/ix-map-navigation_2.cjs.entry.js +0 -25
- package/dist/cjs/ix-menu_9.cjs.entry.js +32 -16
- package/dist/cjs/ix-select_2.cjs.entry.js +1 -1
- package/dist/cjs/ix-tile.cjs.entry.js +1 -1
- package/dist/cjs/ix-toast_2.cjs.entry.js +4 -0
- package/dist/cjs/ix-tree_2.cjs.entry.js +1 -1
- package/dist/cjs/ix-validation-tooltip.cjs.entry.js +1 -1
- package/dist/cjs/{ix-workflow-step.cjs.entry.js → ix-workflow-step_2.cjs.entry.js} +77 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/siemens-ix.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +6 -0
- package/dist/collection/components/blind/blind.css +1 -1
- package/dist/collection/components/breadcrumb/breadcrumb.css +1 -1
- package/dist/collection/components/button/button.css +3 -0
- package/dist/collection/components/button/button.js +1 -1
- package/dist/collection/components/category-filter/category-filter.css +2 -3
- package/dist/collection/components/chip/chip.css +8 -8
- package/dist/collection/components/date-picker/date-picker.css +51 -49
- package/dist/collection/components/date-picker/date-picker.js +371 -57
- package/dist/collection/components/date-picker/events.js +1 -0
- package/dist/collection/components/date-time-card/date-time-card.css +3 -1
- package/dist/collection/components/datetime-picker/datetime-picker.css +12 -3
- package/dist/collection/components/datetime-picker/datetime-picker.js +361 -21
- package/dist/collection/components/datetime-picker/event.js +9 -0
- package/dist/collection/components/dropdown/dropdown.css +1 -1
- package/dist/collection/components/event-list/event-list.css +2 -2
- package/dist/collection/components/event-list-item/event-list-item.css +36 -19
- package/dist/collection/components/event-list-item/event-list-item.js +2 -2
- package/dist/collection/components/expanding-search/expanding-search.css +6 -3
- package/dist/collection/components/expanding-search/expanding-search.js +1 -0
- package/dist/collection/components/filter-chip/filter-chip.css +2 -2
- package/dist/collection/components/map-navigation/map-navigation.js +1 -28
- package/dist/collection/components/menu/menu.js +36 -17
- package/dist/collection/components/menu-about/menu-about.js +13 -34
- package/dist/collection/components/menu-item/menu-item.css +2 -2
- package/dist/collection/components/menu-settings/menu-settings.js +1 -1
- package/dist/collection/components/select/select.css +1 -1
- package/dist/collection/components/tile/tile.css +1 -1
- package/dist/collection/components/time-picker/time-picker.js +188 -31
- package/dist/collection/components/toast/toast.js +6 -1
- package/dist/collection/components/tree-item/tree-item.css +9 -3
- package/dist/collection/components/validation-tooltip/validation-tooltip.css +2 -1
- package/dist/collection/exports.js +2 -0
- package/dist/components/button.js +2 -2
- package/dist/components/date-picker.js +162 -45
- package/dist/components/date-time-card.js +1 -1
- package/dist/components/dropdown.js +1 -1
- package/dist/components/filter-chip.js +1 -1
- package/dist/components/ix-blind.js +1 -1
- package/dist/components/ix-breadcrumb.js +1 -1
- package/dist/components/ix-category-filter.js +1 -1
- package/dist/components/ix-chip.js +1 -1
- package/dist/components/ix-datetime-picker.js +90 -11
- package/dist/components/ix-event-list-item.js +2 -2
- package/dist/components/ix-event-list.js +1 -1
- package/dist/components/ix-expanding-search.js +2 -1
- package/dist/components/ix-map-navigation.js +6 -51
- package/dist/components/ix-menu-about.js +115 -1
- package/dist/components/ix-menu.js +20 -2
- package/dist/components/ix-select.js +1 -1
- package/dist/components/ix-tile.js +1 -1
- package/dist/components/ix-validation-tooltip.js +1 -1
- package/dist/components/menu-item.js +1 -1
- package/dist/components/time-picker.js +70 -17
- package/dist/components/toast.js +4 -0
- package/dist/components/tree-item.js +1 -1
- package/dist/esm/ix-blind.entry.js +1 -1
- package/dist/esm/ix-breadcrumb_2.entry.js +1 -1
- package/dist/esm/ix-button.entry.js +1 -1
- package/dist/esm/ix-category-filter.entry.js +1 -1
- package/dist/esm/ix-chip.entry.js +1 -1
- package/dist/esm/ix-date-picker_2.entry.js +214 -56
- package/dist/esm/ix-date-time-card.entry.js +1 -1
- package/dist/esm/ix-datetime-picker.entry.js +79 -10
- package/dist/esm/ix-dropdown_2.entry.js +1 -1
- package/dist/esm/ix-event-list_2.entry.js +3 -3
- package/dist/esm/ix-expanding-search.entry.js +2 -1
- package/dist/esm/ix-filter-chip.entry.js +1 -1
- package/dist/esm/ix-map-navigation_2.entry.js +0 -25
- package/dist/esm/ix-menu_9.entry.js +32 -16
- package/dist/esm/ix-select_2.entry.js +1 -1
- package/dist/esm/ix-tile.entry.js +1 -1
- package/dist/esm/ix-toast_2.entry.js +4 -0
- package/dist/esm/ix-tree_2.entry.js +1 -1
- package/dist/esm/ix-validation-tooltip.entry.js +1 -1
- package/dist/esm/{ix-workflow-step.entry.js → ix-workflow-step_2.entry.js} +78 -2
- package/dist/esm/loader.js +1 -1
- package/dist/esm/siemens-ix.js +1 -1
- package/dist/siemens-ix/p-02501b64.entry.js +1 -0
- package/dist/siemens-ix/{p-03d95feb.entry.js → p-1d56d9b6.entry.js} +1 -1
- package/dist/siemens-ix/p-2b7ed5d4.entry.js +1 -0
- package/dist/siemens-ix/p-334b7d5c.entry.js +1 -0
- package/dist/siemens-ix/{p-cde8f20e.entry.js → p-4287bd7e.entry.js} +1 -1
- package/dist/siemens-ix/{p-7ec8a00e.entry.js → p-52d99490.entry.js} +1 -1
- package/dist/siemens-ix/{p-2cda7278.entry.js → p-5fed62f8.entry.js} +1 -1
- package/dist/siemens-ix/p-71de6498.entry.js +1 -0
- package/dist/siemens-ix/p-77823732.entry.js +1 -0
- package/dist/siemens-ix/{p-2ce29bcd.entry.js → p-94b86dec.entry.js} +1 -1
- package/dist/siemens-ix/{p-40842bea.entry.js → p-a49005f3.entry.js} +1 -1
- package/dist/siemens-ix/{p-e1f54836.entry.js → p-a8396077.entry.js} +1 -1
- package/dist/siemens-ix/{p-504927a0.entry.js → p-b93c2fab.entry.js} +1 -1
- package/dist/siemens-ix/p-bf5513a0.entry.js +1 -0
- package/dist/siemens-ix/p-c0c9fb81.entry.js +1 -0
- package/dist/siemens-ix/p-c792adb4.entry.js +1 -0
- package/dist/siemens-ix/{p-7a4c744e.entry.js → p-c9a5d942.entry.js} +1 -1
- package/dist/siemens-ix/p-cb6e62ff.entry.js +1 -0
- package/dist/siemens-ix/p-cbd0f8a7.entry.js +1 -0
- package/dist/siemens-ix/p-fa44655a.entry.js +1 -0
- package/dist/siemens-ix/siemens-ix.css +13 -13
- package/dist/siemens-ix/siemens-ix.esm.js +1 -1
- package/dist/types/components/date-picker/date-picker.d.ts +93 -13
- package/dist/types/components/date-picker/events.d.ts +5 -0
- package/dist/types/components/datetime-picker/datetime-picker.d.ts +106 -9
- package/dist/types/components/datetime-picker/event.d.ts +5 -0
- package/dist/types/components/map-navigation/map-navigation.d.ts +0 -8
- package/dist/types/components/menu/menu.d.ts +2 -0
- package/dist/types/components/menu-about/menu-about.d.ts +1 -4
- package/dist/types/components/time-picker/time-picker.d.ts +42 -8
- package/dist/types/components.d.ts +274 -38
- package/dist/types/exports.d.ts +2 -0
- package/package.json +10 -1
- package/scss/components/_buttons.scss +15 -5
- package/scss/components/_checkboxes.scss +26 -14
- package/scss/components/_dropdown.scss +1 -1
- package/scss/components/_forms.scss +2 -1
- package/scss/components/_radiobuttons.scss +26 -14
- package/scss/mixins/_hover.scss +0 -1
- package/src/components/date-picker/readme.md +31 -10
- package/src/components/datetime-picker/readme.md +23 -10
- package/src/components/menu-about/readme.md +5 -6
- package/src/components/time-picker/readme.md +25 -8
- package/dist/cjs/ix-workflow-steps.cjs.entry.js +0 -83
- package/dist/components/menu-about.js +0 -120
- package/dist/esm/ix-workflow-steps.entry.js +0 -79
- package/dist/siemens-ix/p-1e111d1d.entry.js +0 -1
- package/dist/siemens-ix/p-240d22b6.entry.js +0 -1
- package/dist/siemens-ix/p-3613be96.entry.js +0 -1
- package/dist/siemens-ix/p-5990f0cb.entry.js +0 -1
- package/dist/siemens-ix/p-59c81e2a.entry.js +0 -1
- package/dist/siemens-ix/p-61b032bf.entry.js +0 -1
- package/dist/siemens-ix/p-662d756f.entry.js +0 -1
- package/dist/siemens-ix/p-9d9b8ad1.entry.js +0 -1
- package/dist/siemens-ix/p-ca71538c.entry.js +0 -1
- package/dist/siemens-ix/p-caf856f2.entry.js +0 -1
- package/dist/siemens-ix/p-d31bf6db.entry.js +0 -1
- package/dist/siemens-ix/p-fe020fa3.entry.js +0 -1
|
@@ -15,5 +15,5 @@ const patchBrowser = () => {
|
|
|
15
15
|
};
|
|
16
16
|
|
|
17
17
|
patchBrowser().then(options => {
|
|
18
|
-
return index.bootstrapLazy(JSON.parse("[[\"ix-icon.cjs\",[[6,\"ix-icon\",{\"size\":[1],\"color\":[1],\"name\":[513]}]]],[\"ix-datetime-picker.cjs\",[[2,\"ix-datetime-picker\",{\"range\":[4],\"showHour\":[4,\"show-hour\"],\"showMinutes\":[4,\"show-minutes\"],\"showSeconds\":[4,\"show-seconds\"],\"showTimeReference\":[4,\"show-time-reference\"]}]]],[\"ix-modal-example.cjs\",[[0,\"ix-modal-example\"]]],[\"ix-split-button_2.cjs\",[[6,\"ix-split-button\",{\"variant\":[1],\"outline\":[4],\"invisible\":[4],\"ghost\":[4],\"label\":[1],\"icon\":[1],\"splitIcon\":[1,\"split-icon\"],\"disabled\":[4],\"placement\":[1],\"toggle\":[32]}],[2,\"ix-split-button-item\",{\"icon\":[1],\"label\":[1]}]]],[\"ix-breadcrumb_2.cjs\",[[6,\"ix-breadcrumb\",{\"visibleItemCount\":[2,\"visible-item-count\"],\"nextItems\":[16],\"ghost\":[4],\"previousButtonRef\":[32],\"nextButtonRef\":[32],\"items\":[32]}],[6,\"ix-breadcrumb-item\",{\"label\":[1],\"icon\":[1]}]]],[\"ix-flip-tile_2.cjs\",[[6,\"ix-flip-tile\",{\"state\":[1],\"footer\":[1],\"index\":[32],\"isFlipAnimationActive\":[32]}],[1,\"ix-flip-tile-content\"]]],[\"ix-category-filter.cjs\",[[2,\"ix-category-filter\",{\"initialState\":[16],\"filterState\":[16],\"placeholder\":[1],\"categories\":[16],\"nonSelectableCategories\":[16],\"suggestions\":[16],\"icon\":[1],\"hideIcon\":[4,\"hide-icon\"],\"repeatCategories\":[4,\"repeat-categories\"],\"tmpDisableScrollIntoView\":[4,\"tmp-disable-scroll-into-view\"],\"labelCategories\":[1,\"label-categories\"],\"i18nPlainText\":[1,\"i-1-8n-plain-text\"],\"hasFocus\":[32],\"showCategorySelection\":[32],\"categoryLogicalOperator\":[32],\"inputValue\":[32],\"category\":[32],\"filterTokens\":[32],\"offsetDropdownX\":[32],\"offsetDropdownY\":[32],\"maxHeightDropdown\":[32],\"maxWidthDropdown\":[32]},[[9,\"resize\",\"setDropdownOffset\"]]]]],[\"ix-drawer.cjs\",[[6,\"ix-drawer\",{\"show\":[1028],\"closeOnClickOutside\":[4,\"close-on-click-outside\"],\"fullHeight\":[4,\"full-height\"],\"minWidth\":[2,\"min-width\"],\"maxWidth\":[2,\"max-width\"],\"width\":[8],\"toggleDrawer\":[64]}]]],[\"ix-expanding-search.cjs\",[[2,\"ix-expanding-search\",{\"icon\":[1],\"placeholder\":[1],\"value\":[1025],\"isFieldChanged\":[32],\"expanded\":[32],\"hasFocus\":[32]}]]],[\"ix-message-bar.cjs\",[[6,\"ix-message-bar\",{\"type\":[1],\"dismissible\":[4],\"icon\":[32],\"color\":[32]}]]],[\"ix-upload.cjs\",[[2,\"ix-upload\",{\"accept\":[1],\"multiple\":[4],\"multiline\":[4],\"disabled\":[4],\"state\":[1],\"selectFileText\":[1,\"select-file-text\"],\"loadingText\":[1,\"loading-text\"],\"uploadFailedText\":[1,\"upload-failed-text\"],\"uploadSuccessText\":[1,\"upload-success-text\"],\"i18nUploadFile\":[1,\"i-1-8n-upload-file\"],\"i18nUploadDisabled\":[1,\"i-1-8n-upload-disabled\"],\"isFileOver\":[32],\"setFilesToUpload\":[64]}]]],[\"ix-animated-tab_2.cjs\",[[6,\"ix-animated-tabs\",{\"disableAnimations\":[4,\"disable-animations\"],\"selectedIndex\":[2,\"selected-index\"],\"tabPlacement\":[1,\"tab-placement\"],\"tabs\":[32],\"activeIndex\":[32]},[[1,\"mouseup\",\"onMouseDown\"]]],[6,\"ix-animated-tab\",{\"icon\":[1],\"count\":[514]}]]],[\"ix-application-header.cjs\",[[1,\"ix-application-header\",{\"name\":[1]}]]],[\"ix-basic-navigation.cjs\",[[6,\"ix-basic-navigation\",{\"applicationName\":[1,\"application-name\"],\"hideHeader\":[4,\"hide-header\"]}]]],[\"ix-chip.cjs\",[[6,\"ix-chip\",{\"variant\":[513],\"active\":[4],\"closable\":[4],\"icon\":[1],\"background\":[1],\"color\":[1],\"outline\":[4]}]]],[\"ix-kpi.cjs\",[[2,\"ix-kpi\",{\"label\":[1],\"value\":[8],\"unit\":[1],\"state\":[1],\"orientation\":[1]}]]],[\"ix-pill.cjs\",[[6,\"ix-pill\",{\"variant\":[513],\"outline\":[4],\"icon\":[1],\"background\":[1],\"color\":[1],\"alignLeft\":[4,\"align-left\"]}]]],[\"ix-workflow-step.cjs\",[[6,\"ix-workflow-step\",{\"vertical\":[4],\"disabled\":[4],\"status\":[1],\"clickable\":[4],\"selected\":[1028],\"position\":[1],\"iconName\":[32],\"iconColor\":[32]}]]],[\"ix-event-list_2.cjs\",[[6,\"ix-event-list\",{\"itemHeight\":[8,\"item-height\"],\"compact\":[4],\"animated\":[4],\"chevron\":[4]}],[4,\"ix-event-list-item\",{\"color\":[1],\"selected\":[4],\"disabled\":[4],\"chevron\":[4],\"opacity\":[2]},[[1,\"click\",\"handleItemClick\"]]]]],[\"ix-blind.cjs\",[[6,\"ix-blind\",{\"collapsed\":[1540],\"label\":[1]}]]],[\"ix-counter-pill.cjs\",[[6,\"ix-counter-pill\",{\"variant\":[513],\"outline\":[4],\"background\":[1],\"color\":[1],\"alignLeft\":[4,\"align-left\"]}]]],[\"ix-input-group.cjs\",[[6,\"ix-input-group\"]]],[\"ix-tile.cjs\",[[6,\"ix-tile\",{\"size\":[1]}]]],[\"ix-toggle.cjs\",[[2,\"ix-toggle\",{\"checked\":[1540],\"disabled\":[4],\"indeterminate\":[4],\"color\":[1],\"textOn\":[1,\"text-on\"],\"textOff\":[1,\"text-off\"],\"textIndeterminate\":[1,\"text-indeterminate\"],\"hideText\":[4,\"hide-text\"]},[[8,\"keydown\",\"onKeyDown\"]]]]],[\"ix-validation-tooltip.cjs\",[[6,\"ix-validation-tooltip\",{\"message\":[1],\"placement\":[1],\"isInputValid\":[32]}]]],[\"ix-workflow-steps.cjs\",[[6,\"ix-workflow-steps\",{\"vertical\":[4],\"linear\":[4],\"clickable\":[4],\"selectedIndex\":[2,\"selected-index\"]}]]],[\"my-component.cjs\",[[2,\"my-component\"]]],[\"ix-map-navigation_2.cjs\",[[6,\"ix-map-navigation\",{\"applicationName\":[1,\"application-name\"],\"navigationTitle\":[1,\"navigation-title\"],\"hideContextMenu\":[4,\"hide-context-menu\"],\"isSidebarOpen\":[32],\"isAboutOpen\":[32],\"isSettingsOpen\":[32],\"openOverlay\":[64],\"closeOverlay\":[64]}],[6,\"ix-map-navigation-overlay\",{\"name\":[1],\"icon\":[1],\"color\":[1]}]]],[\"ix-select_2.cjs\",[[6,\"ix-select\",{\"selectedIndices\":[1025,\"selected-indices\"],\"allowClear\":[4,\"allow-clear\"],\"mode\":[1],\"editable\":[4],\"disabled\":[4],\"readonly\":[4],\"i18nPlaceholder\":[1,\"i-1-8n-placeholder\"],\"i18nPlaceholderEditable\":[1,\"i-1-8n-placeholder-editable\"],\"i18nSelectListHeader\":[1,\"i-1-8n-select-list-header\"],\"dropdownShow\":[32],\"value\":[32],\"dropdownWrapperRef\":[32],\"dropdownAnchor\":[32],\"isDropdownEmpty\":[32],\"hasFocus\":[32],\"navigationItem\":[32],\"inputText\":[32]},[[0,\"itemClick\",\"onItemClicked\"],[8,\"keydown\",\"onKeyDown\"]]],[2,\"ix-select-item\",{\"label\":[513],\"value\":[520],\"selected\":[4],\"hover\":[4],\"onItemClick\":[64]}]]],[\"ix-group_3.cjs\",[[6,\"ix-group\",{\"suppressHeaderSelection\":[4,\"suppress-header-selection\"],\"header\":[1],\"subHeader\":[1,\"sub-header\"],\"collapsed\":[1540],\"selected\":[1540],\"index\":[1538],\"expandOnHeaderClick\":[4,\"expand-on-header-click\"],\"dropdownTriggerRef\":[32]},[[8,\"keydown\",\"onKeyDown\"]]],[6,\"ix-group-dropdown-item\",{\"label\":[1],\"icon\":[1]}],[6,\"ix-group-item\",{\"icon\":[1],\"text\":[1],\"secondaryText\":[1,\"secondary-text\"],\"suppressSelection\":[4,\"suppress-selection\"],\"selected\":[4],\"focusable\":[4],\"index\":[2]},[[1,\"click\",\"clickListen\"]]]]],[\"ix-toast_2.cjs\",[[2,\"ix-toast-container\",{\"containerId\":[1,\"container-id\"],\"containerClass\":[1,\"container-class\"],\"position\":[1],\"showToast\":[64]}],[6,\"ix-toast\",{\"type\":[1],\"toastTitle\":[1,\"toast-title\"],\"autoCloseDelay\":[2,\"auto-close-delay\"],\"autoClose\":[4,\"auto-close\"],\"icon\":[1],\"iconColor\":[1,\"icon-color\"],\"progress\":[32],\"isRunning\":[32],\"touched\":[32]}]]],[\"ix-tree_2.cjs\",[[6,\"ix-tree\",{\"root\":[1],\"model\":[16],\"renderItem\":[16],\"context\":[1040]}],[6,\"ix-tree-item\",{\"text\":[1],\"hasChildren\":[4,\"has-children\"],\"context\":[16]}]]],[\"ix-spinner.cjs\",[[2,\"ix-spinner\",{\"variant\":[1],\"size\":[1]}]]],[\"ix-date-picker_2.cjs\",[[2,\"ix-date-picker\",{\"format\":[1],\"range\":[4],\"individual\":[4],\"corners\":[1],\"year\":[32],\"month\":[32],\"calendar\":[32],\"today\":[32],\"years\":[32],\"tempYear\":[32],\"tempMonth\":[32],\"start\":[32],\"end\":[32],\"dropdownButtonRef\":[32],\"yearContainerRef\":[32]}],[2,\"ix-time-picker\",{\"corners\":[1],\"individual\":[4],\"showHour\":[4,\"show-hour\"],\"showMinutes\":[4,\"show-minutes\"],\"showSeconds\":[4,\"show-seconds\"],\"showTimeReference\":[4,\"show-time-reference\"],\"hourInputRef\":[32],\"minuteInputRef\":[32],\"secondInputRef\":[32],\"referenceInputRef\":[32]}]]],[\"ix-filter-chip.cjs\",[[6,\"ix-filter-chip\",{\"disabled\":[4]}]]],[\"ix-menu_9.cjs\",[[6,\"ix-menu-avatar\",{\"top\":[1],\"bottom\":[1],\"i18nLogout\":[1,\"i-1-8n-logout\"],\"displayMenu\":[32]},[[1,\"click\",\"toggleMenu\"]]],[6,\"ix-menu-settings\",{\"activeTabLabel\":[1025,\"active-tab-label\"],\"label\":[1],\"show\":[4]}],[4,\"ix-menu\",{\"showSettings\":[1028,\"show-settings\"],\"showAbout\":[1028,\"show-about\"],\"enableToggleTheme\":[4,\"enable-toggle-theme\"],\"enableSettings\":[4,\"enable-settings\"],\"enableMapExpand\":[4,\"enable-map-expand\"],\"applicationName\":[1,\"application-name\"],\"applicationDescription\":[1,\"application-description\"],\"maxVisibleMenuItems\":[2,\"max-visible-menu-items\"],\"i18nLegal\":[1,\"i-1-8n-legal\"],\"i18nSettings\":[1,\"i-1-8n-settings\"],\"i18nToggleTheme\":[1,\"i-1-8n-toggle-theme\"],\"i18nExpand\":[1,\"i-1-8n-expand\"],\"i18nCollapse\":[1,\"i-1-8n-collapse\"],\"i18nMore\":[1,\"i-1-8n-more\"],\"expand\":[1540],\"showMoreItems\":[32],\"visibleMenuItems\":[32],\"countMoreNotifications\":[32],\"mapExpand\":[32],\"activeTab\":[32],\"isMoreTabEmpty\":[32],\"toggleMapExpand\":[64],\"toggleMenu\":[64],\"toggleSettings\":[64],\"toggleAbout\":[64]},[[9,\"resize\",\"onWindowResize\"]]],[6,\"ix-menu-about-news\",{\"show\":[1540],\"label\":[1],\"i18nShowMore\":[1,\"i-1-8n-show-more\"],\"aboutItemLabel\":[1,\"about-item-label\"],\"offsetBottom\":[2,\"offset-bottom\"],\"expanded\":[4]}],[6,\"ix-menu-about-item\",{\"label\":[513]}],[6,\"ix-menu-settings-item\",{\"label\":[1]}],[6,\"ix-menu-about\",{\"i18nImprintLabel\":[513,\"i-1-8n-imprint-label\"],\"activeTabLabel\":[1537,\"active-tab-label\"],\"label\":[1],\"show\":[4],\"labels\":[32]}],[2,\"ix-menu-avatar-item\",{\"icon\":[1],\"label\":[1]}],[4,\"ix-menu-item\",{\"home\":[4],\"bottom\":[4],\"tabIcon\":[1,\"tab-icon\"],\"notifications\":[2],\"active\":[4],\"disabled\":[4],\"title\":[32]}]]],[\"ix-modal_2.cjs\",[[2,\"ix-modal-container\",{\"showModal\":[64]}],[6,\"ix-modal\",{\"animation\":[4],\"ariaDescribedBy\":[1,\"aria-described-by\"],\"ariaLabelledBy\":[1,\"aria-labelled-by\"],\"backdrop\":[8],\"backdropClass\":[1,\"backdrop-class\"],\"beforeDismiss\":[16],\"centered\":[4],\"content\":[1],\"keyboard\":[4],\"icon\":[1],\"iconColor\":[1,\"icon-color\"],\"modalDialogClass\":[1,\"modal-dialog-class\"],\"scrollable\":[4],\"size\":[1],\"headerTitle\":[1,\"header-title\"],\"windowClass\":[1,\"window-class\"],\"dismiss\":[64],\"close\":[64]}]]],[\"ix-date-time-card.cjs\",[[6,\"ix-date-time-card\",{\"individual\":[4],\"corners\":[1]}]]],[\"ix-tab-item.cjs\",[[4,\"ix-tab-item\",{\"selected\":[4],\"disabled\":[4],\"small\":[4],\"icon\":[4],\"rounded\":[4],\"counter\":[2],\"layout\":[1],\"placement\":[1]}]]],[\"ix-tabs.cjs\",[[4,\"ix-tabs\",{\"small\":[4],\"rounded\":[4],\"selected\":[1026],\"layout\":[1],\"placement\":[1],\"totalItems\":[32],\"currentScrollAmount\":[32],\"scrollAmount\":[32],\"scrollActionAmount\":[32]},[[9,\"resize\",\"onWindowResize\"]]]]],[\"ix-button.cjs\",[[6,\"ix-button\",{\"variant\":[1],\"outline\":[4],\"invisible\":[4],\"ghost\":[4],\"selected\":[4],\"disabled\":[4],\"type\":[1]}]]],[\"ix-dropdown_2.cjs\",[[6,\"ix-dropdown-item\",{\"label\":[1],\"icon\":[1],\"hover\":[4],\"disabled\":[4],\"checked\":[4],\"emitItemClick\":[64]}],[1,\"ix-dropdown\",{\"show\":[1540],\"trigger\":[1],\"anchor\":[1],\"closeBehavior\":[8,\"close-behavior\"],\"placement\":[1],\"positioningStrategy\":[1,\"positioning-strategy\"],\"adjustDropdownWidthToReferenceWith\":[4,\"adjust-dropdown-width-to-reference-with\"],\"adjustDropdownWidthToReferenceWidth\":[4,\"adjust-dropdown-width-to-reference-width\"],\"header\":[1],\"updatePosition\":[64]},[[8,\"click\",\"clickOutside\"]]]]],[\"ix-icon-button.cjs\",[[6,\"ix-icon-button\",{\"variant\":[1],\"outline\":[4],\"invisible\":[4],\"ghost\":[4],\"oval\":[4],\"icon\":[1],\"size\":[1],\"color\":[1],\"selected\":[4],\"disabled\":[4],\"type\":[1]}]]]]"), options);
|
|
18
|
+
return index.bootstrapLazy(JSON.parse("[[\"ix-icon.cjs\",[[6,\"ix-icon\",{\"size\":[1],\"color\":[1],\"name\":[513]}]]],[\"ix-datetime-picker.cjs\",[[2,\"ix-datetime-picker\",{\"range\":[4],\"showHour\":[4,\"show-hour\"],\"showMinutes\":[4,\"show-minutes\"],\"showSeconds\":[4,\"show-seconds\"],\"minDate\":[1,\"min-date\"],\"maxDate\":[1,\"max-date\"],\"dateFormat\":[1,\"date-format\"],\"timeFormat\":[1,\"time-format\"],\"from\":[1],\"to\":[1],\"time\":[1],\"showTimeReference\":[8,\"show-time-reference\"],\"eventDelimiter\":[1,\"event-delimiter\"],\"timeReference\":[1,\"time-reference\"],\"textSelectDate\":[1,\"text-select-date\"]}]]],[\"ix-modal-example.cjs\",[[0,\"ix-modal-example\"]]],[\"ix-split-button_2.cjs\",[[6,\"ix-split-button\",{\"variant\":[1],\"outline\":[4],\"invisible\":[4],\"ghost\":[4],\"label\":[1],\"icon\":[1],\"splitIcon\":[1,\"split-icon\"],\"disabled\":[4],\"placement\":[1],\"toggle\":[32]}],[2,\"ix-split-button-item\",{\"icon\":[1],\"label\":[1]}]]],[\"ix-breadcrumb_2.cjs\",[[6,\"ix-breadcrumb\",{\"visibleItemCount\":[2,\"visible-item-count\"],\"nextItems\":[16],\"ghost\":[4],\"previousButtonRef\":[32],\"nextButtonRef\":[32],\"items\":[32]}],[6,\"ix-breadcrumb-item\",{\"label\":[1],\"icon\":[1]}]]],[\"ix-flip-tile_2.cjs\",[[6,\"ix-flip-tile\",{\"state\":[1],\"footer\":[1],\"index\":[32],\"isFlipAnimationActive\":[32]}],[1,\"ix-flip-tile-content\"]]],[\"ix-category-filter.cjs\",[[2,\"ix-category-filter\",{\"initialState\":[16],\"filterState\":[16],\"placeholder\":[1],\"categories\":[16],\"nonSelectableCategories\":[16],\"suggestions\":[16],\"icon\":[1],\"hideIcon\":[4,\"hide-icon\"],\"repeatCategories\":[4,\"repeat-categories\"],\"tmpDisableScrollIntoView\":[4,\"tmp-disable-scroll-into-view\"],\"labelCategories\":[1,\"label-categories\"],\"i18nPlainText\":[1,\"i-1-8n-plain-text\"],\"hasFocus\":[32],\"showCategorySelection\":[32],\"categoryLogicalOperator\":[32],\"inputValue\":[32],\"category\":[32],\"filterTokens\":[32],\"offsetDropdownX\":[32],\"offsetDropdownY\":[32],\"maxHeightDropdown\":[32],\"maxWidthDropdown\":[32]},[[9,\"resize\",\"setDropdownOffset\"]]]]],[\"ix-drawer.cjs\",[[6,\"ix-drawer\",{\"show\":[1028],\"closeOnClickOutside\":[4,\"close-on-click-outside\"],\"fullHeight\":[4,\"full-height\"],\"minWidth\":[2,\"min-width\"],\"maxWidth\":[2,\"max-width\"],\"width\":[8],\"toggleDrawer\":[64]}]]],[\"ix-expanding-search.cjs\",[[2,\"ix-expanding-search\",{\"icon\":[1],\"placeholder\":[1],\"value\":[1025],\"isFieldChanged\":[32],\"expanded\":[32],\"hasFocus\":[32]}]]],[\"ix-message-bar.cjs\",[[6,\"ix-message-bar\",{\"type\":[1],\"dismissible\":[4],\"icon\":[32],\"color\":[32]}]]],[\"ix-upload.cjs\",[[2,\"ix-upload\",{\"accept\":[1],\"multiple\":[4],\"multiline\":[4],\"disabled\":[4],\"state\":[1],\"selectFileText\":[1,\"select-file-text\"],\"loadingText\":[1,\"loading-text\"],\"uploadFailedText\":[1,\"upload-failed-text\"],\"uploadSuccessText\":[1,\"upload-success-text\"],\"i18nUploadFile\":[1,\"i-1-8n-upload-file\"],\"i18nUploadDisabled\":[1,\"i-1-8n-upload-disabled\"],\"isFileOver\":[32],\"setFilesToUpload\":[64]}]]],[\"ix-animated-tab_2.cjs\",[[6,\"ix-animated-tabs\",{\"disableAnimations\":[4,\"disable-animations\"],\"selectedIndex\":[2,\"selected-index\"],\"tabPlacement\":[1,\"tab-placement\"],\"tabs\":[32],\"activeIndex\":[32]},[[1,\"mouseup\",\"onMouseDown\"]]],[6,\"ix-animated-tab\",{\"icon\":[1],\"count\":[514]}]]],[\"ix-workflow-step_2.cjs\",[[6,\"ix-workflow-step\",{\"vertical\":[4],\"disabled\":[4],\"status\":[1],\"clickable\":[4],\"selected\":[1028],\"position\":[1],\"iconName\":[32],\"iconColor\":[32]}],[6,\"ix-workflow-steps\",{\"vertical\":[4],\"linear\":[4],\"clickable\":[4],\"selectedIndex\":[2,\"selected-index\"]}]]],[\"ix-application-header.cjs\",[[1,\"ix-application-header\",{\"name\":[1]}]]],[\"ix-basic-navigation.cjs\",[[6,\"ix-basic-navigation\",{\"applicationName\":[1,\"application-name\"],\"hideHeader\":[4,\"hide-header\"]}]]],[\"ix-chip.cjs\",[[6,\"ix-chip\",{\"variant\":[513],\"active\":[4],\"closable\":[4],\"icon\":[1],\"background\":[1],\"color\":[1],\"outline\":[4]}]]],[\"ix-kpi.cjs\",[[2,\"ix-kpi\",{\"label\":[1],\"value\":[8],\"unit\":[1],\"state\":[1],\"orientation\":[1]}]]],[\"ix-pill.cjs\",[[6,\"ix-pill\",{\"variant\":[513],\"outline\":[4],\"icon\":[1],\"background\":[1],\"color\":[1],\"alignLeft\":[4,\"align-left\"]}]]],[\"ix-event-list_2.cjs\",[[6,\"ix-event-list\",{\"itemHeight\":[8,\"item-height\"],\"compact\":[4],\"animated\":[4],\"chevron\":[4]}],[4,\"ix-event-list-item\",{\"color\":[1],\"selected\":[4],\"disabled\":[4],\"chevron\":[4],\"opacity\":[2]},[[1,\"click\",\"handleItemClick\"]]]]],[\"ix-blind.cjs\",[[6,\"ix-blind\",{\"collapsed\":[1540],\"label\":[1]}]]],[\"ix-counter-pill.cjs\",[[6,\"ix-counter-pill\",{\"variant\":[513],\"outline\":[4],\"background\":[1],\"color\":[1],\"alignLeft\":[4,\"align-left\"]}]]],[\"ix-input-group.cjs\",[[6,\"ix-input-group\"]]],[\"ix-tile.cjs\",[[6,\"ix-tile\",{\"size\":[1]}]]],[\"ix-toggle.cjs\",[[2,\"ix-toggle\",{\"checked\":[1540],\"disabled\":[4],\"indeterminate\":[4],\"color\":[1],\"textOn\":[1,\"text-on\"],\"textOff\":[1,\"text-off\"],\"textIndeterminate\":[1,\"text-indeterminate\"],\"hideText\":[4,\"hide-text\"]},[[8,\"keydown\",\"onKeyDown\"]]]]],[\"ix-validation-tooltip.cjs\",[[6,\"ix-validation-tooltip\",{\"message\":[1],\"placement\":[1],\"isInputValid\":[32]}]]],[\"my-component.cjs\",[[2,\"my-component\"]]],[\"ix-select_2.cjs\",[[6,\"ix-select\",{\"selectedIndices\":[1025,\"selected-indices\"],\"allowClear\":[4,\"allow-clear\"],\"mode\":[1],\"editable\":[4],\"disabled\":[4],\"readonly\":[4],\"i18nPlaceholder\":[1,\"i-1-8n-placeholder\"],\"i18nPlaceholderEditable\":[1,\"i-1-8n-placeholder-editable\"],\"i18nSelectListHeader\":[1,\"i-1-8n-select-list-header\"],\"dropdownShow\":[32],\"value\":[32],\"dropdownWrapperRef\":[32],\"dropdownAnchor\":[32],\"isDropdownEmpty\":[32],\"hasFocus\":[32],\"navigationItem\":[32],\"inputText\":[32]},[[0,\"itemClick\",\"onItemClicked\"],[8,\"keydown\",\"onKeyDown\"]]],[2,\"ix-select-item\",{\"label\":[513],\"value\":[520],\"selected\":[4],\"hover\":[4],\"onItemClick\":[64]}]]],[\"ix-group_3.cjs\",[[6,\"ix-group\",{\"suppressHeaderSelection\":[4,\"suppress-header-selection\"],\"header\":[1],\"subHeader\":[1,\"sub-header\"],\"collapsed\":[1540],\"selected\":[1540],\"index\":[1538],\"expandOnHeaderClick\":[4,\"expand-on-header-click\"],\"dropdownTriggerRef\":[32]},[[8,\"keydown\",\"onKeyDown\"]]],[6,\"ix-group-dropdown-item\",{\"label\":[1],\"icon\":[1]}],[6,\"ix-group-item\",{\"icon\":[1],\"text\":[1],\"secondaryText\":[1,\"secondary-text\"],\"suppressSelection\":[4,\"suppress-selection\"],\"selected\":[4],\"focusable\":[4],\"index\":[2]},[[1,\"click\",\"clickListen\"]]]]],[\"ix-map-navigation_2.cjs\",[[6,\"ix-map-navigation\",{\"applicationName\":[1,\"application-name\"],\"navigationTitle\":[1,\"navigation-title\"],\"hideContextMenu\":[4,\"hide-context-menu\"],\"isSidebarOpen\":[32],\"openOverlay\":[64],\"closeOverlay\":[64]}],[6,\"ix-map-navigation-overlay\",{\"name\":[1],\"icon\":[1],\"color\":[1]}]]],[\"ix-toast_2.cjs\",[[2,\"ix-toast-container\",{\"containerId\":[1,\"container-id\"],\"containerClass\":[1,\"container-class\"],\"position\":[1],\"showToast\":[64]}],[6,\"ix-toast\",{\"type\":[1],\"toastTitle\":[1,\"toast-title\"],\"autoCloseDelay\":[2,\"auto-close-delay\"],\"autoClose\":[4,\"auto-close\"],\"icon\":[1],\"iconColor\":[1,\"icon-color\"],\"progress\":[32],\"isRunning\":[32],\"touched\":[32]}]]],[\"ix-tree_2.cjs\",[[6,\"ix-tree\",{\"root\":[1],\"model\":[16],\"renderItem\":[16],\"context\":[1040]}],[6,\"ix-tree-item\",{\"text\":[1],\"hasChildren\":[4,\"has-children\"],\"context\":[16]}]]],[\"ix-spinner.cjs\",[[2,\"ix-spinner\",{\"variant\":[1],\"size\":[1]}]]],[\"ix-menu_9.cjs\",[[6,\"ix-menu-about\",{\"activeTabLabel\":[1025,\"active-tab-label\"],\"label\":[1],\"show\":[4],\"labels\":[32]}],[6,\"ix-menu-avatar\",{\"top\":[1],\"bottom\":[1],\"i18nLogout\":[1,\"i-1-8n-logout\"],\"displayMenu\":[32]},[[1,\"click\",\"toggleMenu\"]]],[6,\"ix-menu-settings\",{\"activeTabLabel\":[1025,\"active-tab-label\"],\"label\":[1],\"show\":[4]}],[4,\"ix-menu\",{\"showSettings\":[1028,\"show-settings\"],\"showAbout\":[1028,\"show-about\"],\"enableToggleTheme\":[4,\"enable-toggle-theme\"],\"enableSettings\":[4,\"enable-settings\"],\"enableMapExpand\":[4,\"enable-map-expand\"],\"applicationName\":[1,\"application-name\"],\"applicationDescription\":[1,\"application-description\"],\"maxVisibleMenuItems\":[2,\"max-visible-menu-items\"],\"i18nLegal\":[1,\"i-1-8n-legal\"],\"i18nSettings\":[1,\"i-1-8n-settings\"],\"i18nToggleTheme\":[1,\"i-1-8n-toggle-theme\"],\"i18nExpand\":[1,\"i-1-8n-expand\"],\"i18nCollapse\":[1,\"i-1-8n-collapse\"],\"i18nMore\":[1,\"i-1-8n-more\"],\"expand\":[1540],\"showMoreItems\":[32],\"visibleMenuItems\":[32],\"countMoreNotifications\":[32],\"mapExpand\":[32],\"activeTab\":[32],\"isMoreTabEmpty\":[32],\"toggleMapExpand\":[64],\"toggleMenu\":[64],\"toggleSettings\":[64],\"toggleAbout\":[64]},[[9,\"resize\",\"onWindowResize\"]]],[6,\"ix-menu-about-news\",{\"show\":[1540],\"label\":[1],\"i18nShowMore\":[1,\"i-1-8n-show-more\"],\"aboutItemLabel\":[1,\"about-item-label\"],\"offsetBottom\":[2,\"offset-bottom\"],\"expanded\":[4]}],[6,\"ix-menu-about-item\",{\"label\":[513]}],[6,\"ix-menu-settings-item\",{\"label\":[1]}],[2,\"ix-menu-avatar-item\",{\"icon\":[1],\"label\":[1]}],[4,\"ix-menu-item\",{\"home\":[4],\"bottom\":[4],\"tabIcon\":[1,\"tab-icon\"],\"notifications\":[2],\"active\":[4],\"disabled\":[4],\"title\":[32]}]]],[\"ix-date-picker_2.cjs\",[[2,\"ix-date-picker\",{\"format\":[1],\"range\":[4],\"individual\":[4],\"corners\":[1],\"from\":[1],\"to\":[1],\"minDate\":[1,\"min-date\"],\"maxDate\":[1,\"max-date\"],\"eventDelimiter\":[1,\"event-delimiter\"],\"textSelectDate\":[1,\"text-select-date\"],\"yearValue\":[32],\"today\":[32],\"monthValue\":[32],\"calendar\":[32],\"years\":[32],\"tempYear\":[32],\"tempMonth\":[32],\"start\":[32],\"end\":[32],\"dropdownButtonRef\":[32],\"yearContainerRef\":[32],\"getCurrentDate\":[64]}],[2,\"ix-time-picker\",{\"format\":[1],\"corners\":[1],\"individual\":[4],\"showHour\":[4,\"show-hour\"],\"showMinutes\":[4,\"show-minutes\"],\"showSeconds\":[4,\"show-seconds\"],\"time\":[1],\"showTimeReference\":[1032,\"show-time-reference\"],\"timeReference\":[1,\"time-reference\"],\"textSelectTime\":[1,\"text-select-time\"],\"hourInputRef\":[32],\"minuteInputRef\":[32],\"secondInputRef\":[32],\"referenceInputRef\":[32],\"getCurrentTime\":[64]}]]],[\"ix-filter-chip.cjs\",[[6,\"ix-filter-chip\",{\"disabled\":[4]}]]],[\"ix-tab-item.cjs\",[[4,\"ix-tab-item\",{\"selected\":[4],\"disabled\":[4],\"small\":[4],\"icon\":[4],\"rounded\":[4],\"counter\":[2],\"layout\":[1],\"placement\":[1]}]]],[\"ix-tabs.cjs\",[[4,\"ix-tabs\",{\"small\":[4],\"rounded\":[4],\"selected\":[1026],\"layout\":[1],\"placement\":[1],\"totalItems\":[32],\"currentScrollAmount\":[32],\"scrollAmount\":[32],\"scrollActionAmount\":[32]},[[9,\"resize\",\"onWindowResize\"]]]]],[\"ix-modal_2.cjs\",[[2,\"ix-modal-container\",{\"showModal\":[64]}],[6,\"ix-modal\",{\"animation\":[4],\"ariaDescribedBy\":[1,\"aria-described-by\"],\"ariaLabelledBy\":[1,\"aria-labelled-by\"],\"backdrop\":[8],\"backdropClass\":[1,\"backdrop-class\"],\"beforeDismiss\":[16],\"centered\":[4],\"content\":[1],\"keyboard\":[4],\"icon\":[1],\"iconColor\":[1,\"icon-color\"],\"modalDialogClass\":[1,\"modal-dialog-class\"],\"scrollable\":[4],\"size\":[1],\"headerTitle\":[1,\"header-title\"],\"windowClass\":[1,\"window-class\"],\"dismiss\":[64],\"close\":[64]}]]],[\"ix-date-time-card.cjs\",[[6,\"ix-date-time-card\",{\"individual\":[4],\"corners\":[1]}]]],[\"ix-button.cjs\",[[6,\"ix-button\",{\"variant\":[1],\"outline\":[4],\"invisible\":[4],\"ghost\":[4],\"selected\":[4],\"disabled\":[516],\"type\":[1]}]]],[\"ix-dropdown_2.cjs\",[[6,\"ix-dropdown-item\",{\"label\":[1],\"icon\":[1],\"hover\":[4],\"disabled\":[4],\"checked\":[4],\"emitItemClick\":[64]}],[1,\"ix-dropdown\",{\"show\":[1540],\"trigger\":[1],\"anchor\":[1],\"closeBehavior\":[8,\"close-behavior\"],\"placement\":[1],\"positioningStrategy\":[1,\"positioning-strategy\"],\"adjustDropdownWidthToReferenceWith\":[4,\"adjust-dropdown-width-to-reference-with\"],\"adjustDropdownWidthToReferenceWidth\":[4,\"adjust-dropdown-width-to-reference-width\"],\"header\":[1],\"updatePosition\":[64]},[[8,\"click\",\"clickOutside\"]]]]],[\"ix-icon-button.cjs\",[[6,\"ix-icon-button\",{\"variant\":[1],\"outline\":[4],\"invisible\":[4],\"ghost\":[4],\"oval\":[4],\"icon\":[1],\"size\":[1],\"color\":[1],\"selected\":[4],\"disabled\":[4],\"type\":[1]}]]]]"), options);
|
|
19
19
|
});
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
:host .blind-header:not(.disabled):not(:disabled):active .glyph {
|
|
104
104
|
color: var(--theme-blind-header-icon-open--color--active);
|
|
105
105
|
}
|
|
106
|
-
:host .blind-header:not(.disabled):not(:disabled):focus
|
|
106
|
+
:host .blind-header:not(.disabled):not(:disabled):focus-visible {
|
|
107
107
|
border-color: var(--theme-focus--border-color);
|
|
108
108
|
}
|
|
109
109
|
:host .blind-header.closed {
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
-webkit-padding-end: 0.25rem;
|
|
110
110
|
padding-inline-end: 0.25rem;
|
|
111
111
|
}
|
|
112
|
-
:host .crumb.clickable:not(.remove-hover):not(.disabled):not(:disabled):focus
|
|
112
|
+
:host .crumb.clickable:not(.remove-hover):not(.disabled):not(:disabled):focus-visible {
|
|
113
113
|
border-color: var(--theme-focus--border-color);
|
|
114
114
|
}
|
|
115
115
|
:host .crumb:not(:last-of-type) {
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@charset "UTF-8";
|
|
2
1
|
/*
|
|
3
2
|
* SPDX-FileCopyrightText: 2022 Siemens AG
|
|
4
3
|
*
|
|
@@ -95,7 +94,7 @@
|
|
|
95
94
|
flex-grow: 1;
|
|
96
95
|
height: 1.75rem;
|
|
97
96
|
}
|
|
98
|
-
:host .text-input, :host .text-input:hover, :host .text-input:focus {
|
|
97
|
+
:host .text-input, :host .text-input:hover, :host .text-input:focus-visible {
|
|
99
98
|
border: none;
|
|
100
99
|
outline: none;
|
|
101
100
|
}
|
|
@@ -176,7 +175,7 @@
|
|
|
176
175
|
background-color: var(--theme-generic-bg-active);
|
|
177
176
|
outline: none;
|
|
178
177
|
}
|
|
179
|
-
:host .category-selection-container .plain-text-suggestion
|
|
178
|
+
:host .category-selection-container .plain-text-suggestion {
|
|
180
179
|
border-radius: 1rem;
|
|
181
180
|
}
|
|
182
181
|
:host ul {
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
:host[variant=primary]:active {
|
|
77
77
|
background-color: var(--theme-chip-primary--background--active);
|
|
78
78
|
}
|
|
79
|
-
:host[variant=primary]:focus
|
|
79
|
+
:host[variant=primary]:focus-visible {
|
|
80
80
|
outline: 1px solid #199fff;
|
|
81
81
|
outline-offset: var(--theme-btn--focus--outline-offset);
|
|
82
82
|
}
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
:host[variant=alarm].outline.active, :host[variant=alarm].outline:active {
|
|
149
149
|
background-color: var(--theme-chip-outline--background--active);
|
|
150
150
|
}
|
|
151
|
-
:host[variant=alarm]:focus
|
|
151
|
+
:host[variant=alarm]:focus-visible {
|
|
152
152
|
outline: 1px solid #199fff;
|
|
153
153
|
outline-offset: var(--theme-btn--focus--outline-offset);
|
|
154
154
|
}
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
:host[variant=critical].outline.active, :host[variant=critical].outline:active {
|
|
207
207
|
background-color: var(--theme-chip-outline--background--active);
|
|
208
208
|
}
|
|
209
|
-
:host[variant=critical]:focus
|
|
209
|
+
:host[variant=critical]:focus-visible {
|
|
210
210
|
outline: 1px solid #199fff;
|
|
211
211
|
outline-offset: var(--theme-btn--focus--outline-offset);
|
|
212
212
|
}
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
:host[variant=warning].outline.active, :host[variant=warning].outline:active {
|
|
265
265
|
background-color: var(--theme-chip-outline--background--active);
|
|
266
266
|
}
|
|
267
|
-
:host[variant=warning]:focus
|
|
267
|
+
:host[variant=warning]:focus-visible {
|
|
268
268
|
outline: 1px solid #199fff;
|
|
269
269
|
outline-offset: var(--theme-btn--focus--outline-offset);
|
|
270
270
|
}
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
:host[variant=info].outline.active, :host[variant=info].outline:active {
|
|
323
323
|
background-color: var(--theme-chip-outline--background--active);
|
|
324
324
|
}
|
|
325
|
-
:host[variant=info]:focus
|
|
325
|
+
:host[variant=info]:focus-visible {
|
|
326
326
|
outline: 1px solid #199fff;
|
|
327
327
|
outline-offset: var(--theme-btn--focus--outline-offset);
|
|
328
328
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
:host[variant=neutral].outline.active, :host[variant=neutral].outline:active {
|
|
381
381
|
background-color: var(--theme-chip-outline--background--active);
|
|
382
382
|
}
|
|
383
|
-
:host[variant=neutral]:focus
|
|
383
|
+
:host[variant=neutral]:focus-visible {
|
|
384
384
|
outline: 1px solid #199fff;
|
|
385
385
|
outline-offset: var(--theme-btn--focus--outline-offset);
|
|
386
386
|
}
|
|
@@ -438,7 +438,7 @@
|
|
|
438
438
|
:host[variant=success].outline.active, :host[variant=success].outline:active {
|
|
439
439
|
background-color: var(--theme-chip-outline--background--active);
|
|
440
440
|
}
|
|
441
|
-
:host[variant=success]:focus
|
|
441
|
+
:host[variant=success]:focus-visible {
|
|
442
442
|
outline: 1px solid #199fff;
|
|
443
443
|
outline-offset: var(--theme-btn--focus--outline-offset);
|
|
444
444
|
}
|
|
@@ -464,7 +464,7 @@
|
|
|
464
464
|
border-radius: 100px;
|
|
465
465
|
pointer-events: none;
|
|
466
466
|
}
|
|
467
|
-
:host[variant=custom]:focus
|
|
467
|
+
:host[variant=custom]:focus-visible {
|
|
468
468
|
outline: 1px solid #199fff;
|
|
469
469
|
outline-offset: var(--theme-btn--focus--outline-offset);
|
|
470
470
|
}
|
|
@@ -18,66 +18,63 @@
|
|
|
18
18
|
/* Font sizes */
|
|
19
19
|
/* Line heights */
|
|
20
20
|
/* Animation timings */
|
|
21
|
-
.header {
|
|
21
|
+
:host .header {
|
|
22
22
|
display: flex;
|
|
23
23
|
align-items: center;
|
|
24
24
|
justify-content: space-between;
|
|
25
25
|
}
|
|
26
|
-
|
|
27
|
-
.selector {
|
|
26
|
+
:host .selector {
|
|
28
27
|
flex-basis: 100%;
|
|
29
28
|
display: flex;
|
|
30
29
|
align-items: center;
|
|
31
30
|
justify-content: center;
|
|
32
31
|
padding: 0.25rem 1rem;
|
|
33
32
|
}
|
|
34
|
-
.selector .dropdown {
|
|
33
|
+
:host .selector .dropdown {
|
|
35
34
|
color: var(--theme-menu-item--color);
|
|
36
35
|
font-size: 14px;
|
|
37
36
|
line-height: 20px;
|
|
38
37
|
}
|
|
39
|
-
.selector .fontSize {
|
|
38
|
+
:host .selector .fontSize {
|
|
40
39
|
font-size: 16px;
|
|
41
40
|
}
|
|
42
|
-
.selector .capitalize {
|
|
41
|
+
:host .selector .capitalize {
|
|
43
42
|
text-transform: capitalize;
|
|
44
43
|
}
|
|
45
|
-
.selector .arrowYear {
|
|
44
|
+
:host .selector .arrowYear {
|
|
46
45
|
display: flex;
|
|
47
46
|
position: relative;
|
|
48
47
|
padding: 0.75rem 2rem;
|
|
49
48
|
align-items: center;
|
|
50
49
|
cursor: pointer;
|
|
51
50
|
}
|
|
52
|
-
.selector .arrowYear:hover {
|
|
51
|
+
:host .selector .arrowYear:hover {
|
|
53
52
|
background-color: var(--theme-select-list-item--background--hover);
|
|
54
53
|
}
|
|
55
|
-
.selector .arrowYear.selected {
|
|
54
|
+
:host .selector .arrowYear.selected {
|
|
56
55
|
background-color: var(--theme-select-list-item--background--selected);
|
|
57
56
|
}
|
|
58
|
-
.selector .arrowYear .arrowPosition {
|
|
57
|
+
:host .selector .arrowYear .arrowPosition {
|
|
59
58
|
position: absolute;
|
|
60
59
|
left: calc(1rem - 6px);
|
|
61
60
|
top: calc(50% - 6px);
|
|
62
61
|
}
|
|
63
|
-
.selector .arrowYear .checkPosition {
|
|
62
|
+
:host .selector .arrowYear .checkPosition {
|
|
64
63
|
position: absolute;
|
|
65
64
|
left: calc(1rem - 6px);
|
|
66
65
|
top: calc(50% - 8px);
|
|
67
66
|
}
|
|
68
|
-
.selector .arrowYear .monthMargin {
|
|
67
|
+
:host .selector .arrowYear .monthMargin {
|
|
69
68
|
margin-left: 10px;
|
|
70
69
|
}
|
|
71
|
-
|
|
72
|
-
.wrapper {
|
|
70
|
+
:host .wrapper {
|
|
73
71
|
display: flex;
|
|
74
72
|
}
|
|
75
|
-
.wrapper .overflow {
|
|
73
|
+
:host .wrapper .overflow {
|
|
76
74
|
overflow-y: scroll;
|
|
77
75
|
max-height: 250px;
|
|
78
76
|
}
|
|
79
|
-
|
|
80
|
-
.grid {
|
|
77
|
+
:host .grid {
|
|
81
78
|
display: grid;
|
|
82
79
|
grid-template-columns: repeat(8, 40px);
|
|
83
80
|
grid-template-rows: repeat(7, 40px);
|
|
@@ -86,7 +83,7 @@
|
|
|
86
83
|
justify-content: center;
|
|
87
84
|
color: var(--theme-datepicker-today--color);
|
|
88
85
|
}
|
|
89
|
-
.grid .calendar-item {
|
|
86
|
+
:host .grid .calendar-item {
|
|
90
87
|
position: relative;
|
|
91
88
|
display: flex;
|
|
92
89
|
justify-content: center;
|
|
@@ -97,92 +94,99 @@
|
|
|
97
94
|
height: 40px;
|
|
98
95
|
cursor: pointer;
|
|
99
96
|
}
|
|
100
|
-
.grid .calendar-item.today {
|
|
97
|
+
:host .grid .calendar-item.today {
|
|
101
98
|
border: 1px solid var(--theme-datepicker-today--border-color);
|
|
102
99
|
}
|
|
103
|
-
.grid .calendar-item.today:hover {
|
|
100
|
+
:host .grid .calendar-item.today:hover {
|
|
104
101
|
background-color: var(--theme-datepicker-day--background--hover);
|
|
105
102
|
}
|
|
106
|
-
.grid .calendar-item.today:active {
|
|
103
|
+
:host .grid .calendar-item.today:active {
|
|
107
104
|
background-color: var(--theme-datepicker-day--background--active);
|
|
108
105
|
}
|
|
109
|
-
.grid .calendar-item.today.selected {
|
|
106
|
+
:host .grid .calendar-item.today.selected {
|
|
110
107
|
box-shadow: inset 0 0 0 1px white;
|
|
111
108
|
}
|
|
112
|
-
.grid .calendar-item.today.selected:hover {
|
|
109
|
+
:host .grid .calendar-item.today.selected:hover {
|
|
113
110
|
background-color: var(--theme-datepicker-day--background--selected-hover);
|
|
114
111
|
}
|
|
115
|
-
.grid .calendar-item.today.selected:active {
|
|
112
|
+
:host .grid .calendar-item.today.selected:active {
|
|
116
113
|
background-color: var(--theme-datepicker-day--background--selected-active);
|
|
117
114
|
}
|
|
118
|
-
.grid .calendar-item.today.selected.disabled {
|
|
115
|
+
:host .grid .calendar-item.today.selected.disabled {
|
|
116
|
+
pointer-events: none;
|
|
119
117
|
background-color: var(--theme-datepicker-day--background--selected-disabled);
|
|
120
118
|
border: 1px solid var(--theme-datepicker-day--background--selected-disabled);
|
|
121
119
|
color: var(--theme-datepicker-day--color--selected-disabled);
|
|
122
120
|
}
|
|
123
|
-
.grid .calendar-item.today.range {
|
|
121
|
+
:host .grid .calendar-item.today.range {
|
|
124
122
|
background-color: var(--theme-datepicker-day--background--range);
|
|
125
123
|
color: var(--theme-datepicker-day--color--range);
|
|
126
124
|
border: 1px solid var(--theme-datepicker-today--border-color--range);
|
|
127
125
|
box-shadow: inset 0 0 0 1px white;
|
|
128
126
|
}
|
|
129
|
-
.grid .calendar-item.today.range:hover {
|
|
127
|
+
:host .grid .calendar-item.today.range:hover {
|
|
130
128
|
background-color: var(--theme-datepicker-day--background--range-hover);
|
|
131
129
|
border: 1px solid var(--theme-datepicker-today--border-color--range-hover);
|
|
132
130
|
}
|
|
133
|
-
.grid .calendar-item.today.range:active {
|
|
131
|
+
:host .grid .calendar-item.today.range:active {
|
|
134
132
|
background-color: var(--theme-datepicker-day--background--range-active);
|
|
135
133
|
border: 1px solid var(--theme-datepicker-today--border-color--range-active);
|
|
136
134
|
}
|
|
137
|
-
.grid .calendar-item.today.range.disabled {
|
|
135
|
+
:host .grid .calendar-item.today.range.disabled {
|
|
138
136
|
background-color: var(--theme-datepicker-day--background--range-disabled);
|
|
139
137
|
color: var(--theme-datepicker-day--color--range-disabled);
|
|
140
138
|
border: 1px solid var(--theme-datepicker-today--border-color--range-disabled);
|
|
141
139
|
}
|
|
142
|
-
.grid .calendar-item.today.disabled {
|
|
140
|
+
:host .grid .calendar-item.today.disabled {
|
|
141
|
+
pointer-events: none;
|
|
143
142
|
background-color: var(--theme-datepicker-day--background--disabled);
|
|
144
143
|
color: var(--theme-datepicker-day--color--disabled);
|
|
144
|
+
cursor: default;
|
|
145
|
+
pointer-events: none;
|
|
145
146
|
}
|
|
146
|
-
.grid .calendar-item:hover {
|
|
147
|
+
:host .grid .calendar-item:hover {
|
|
147
148
|
background-color: var(--theme-datepicker-day--background--hover);
|
|
148
149
|
}
|
|
149
|
-
.grid .calendar-item:active {
|
|
150
|
+
:host .grid .calendar-item:active {
|
|
150
151
|
background-color: var(--theme-datepicker-day--background--active);
|
|
151
152
|
}
|
|
152
|
-
.grid .calendar-item.selected {
|
|
153
|
+
:host .grid .calendar-item.selected {
|
|
153
154
|
background-color: var(--theme-datepicker-day--background--selected);
|
|
154
155
|
color: var(--theme-datepicker-day--color--selected);
|
|
155
156
|
border: 1px solid var(--theme-datepicker-day--background--selected);
|
|
156
157
|
}
|
|
157
|
-
.grid .calendar-item.selected:hover {
|
|
158
|
+
:host .grid .calendar-item.selected:hover {
|
|
158
159
|
background-color: var(--theme-datepicker-day--background--selected-hover);
|
|
159
160
|
}
|
|
160
|
-
.grid .calendar-item.selected:active {
|
|
161
|
+
:host .grid .calendar-item.selected:active {
|
|
161
162
|
background-color: var(--theme-datepicker-day--background--selected-active);
|
|
162
163
|
}
|
|
163
|
-
.grid .calendar-item.selected.disabled {
|
|
164
|
+
:host .grid .calendar-item.selected.disabled {
|
|
165
|
+
pointer-events: none;
|
|
164
166
|
background-color: var(--theme-datepicker-day--background--selected-disabled);
|
|
165
167
|
color: var(--theme-datepicker-day--color--selected-disabled);
|
|
166
168
|
}
|
|
167
|
-
.grid .calendar-item.range {
|
|
169
|
+
:host .grid .calendar-item.range {
|
|
168
170
|
background-color: var(--theme-datepicker-day--background--range);
|
|
169
171
|
color: var(--theme-datepicker-day--color--range);
|
|
170
172
|
}
|
|
171
|
-
.grid .calendar-item.range:hover {
|
|
173
|
+
:host .grid .calendar-item.range:hover {
|
|
172
174
|
background-color: var(--theme-datepicker-day--background--range-hover);
|
|
173
175
|
}
|
|
174
|
-
.grid .calendar-item.range:active {
|
|
176
|
+
:host .grid .calendar-item.range:active {
|
|
175
177
|
background-color: var(--theme-datepicker-day--background--range-active);
|
|
176
178
|
}
|
|
177
|
-
.grid .calendar-item.range.disabled {
|
|
179
|
+
:host .grid .calendar-item.range.disabled {
|
|
180
|
+
pointer-events: none;
|
|
178
181
|
background-color: var(--theme-datepicker-day--background--range-disabled);
|
|
179
182
|
color: var(--theme-datepicker-day--color--range-disabled);
|
|
180
183
|
}
|
|
181
|
-
.grid .calendar-item.disabled {
|
|
184
|
+
:host .grid .calendar-item.disabled {
|
|
185
|
+
pointer-events: none;
|
|
182
186
|
background-color: var(--theme-datepicker-day--background--disabled);
|
|
183
187
|
color: var(--theme-datepicker-day--color--disabled);
|
|
184
188
|
}
|
|
185
|
-
.grid .calendar-item.week-day {
|
|
189
|
+
:host .grid .calendar-item.week-day {
|
|
186
190
|
color: var(--theme-datepicker-weekday--color);
|
|
187
191
|
font-size: 12px;
|
|
188
192
|
line-height: 20px;
|
|
@@ -190,12 +194,12 @@
|
|
|
190
194
|
background: none;
|
|
191
195
|
cursor: initial;
|
|
192
196
|
}
|
|
193
|
-
.grid .calendar-item.empty-day {
|
|
197
|
+
:host .grid .calendar-item.empty-day {
|
|
194
198
|
border: none;
|
|
195
199
|
background: none;
|
|
196
200
|
cursor: initial;
|
|
197
201
|
}
|
|
198
|
-
.grid .calendar-item.week-number {
|
|
202
|
+
:host .grid .calendar-item.week-number {
|
|
199
203
|
font-size: 10px;
|
|
200
204
|
line-height: 14px;
|
|
201
205
|
color: var(--theme-datepicker-ix--color);
|
|
@@ -203,7 +207,7 @@
|
|
|
203
207
|
background: none;
|
|
204
208
|
cursor: initial;
|
|
205
209
|
}
|
|
206
|
-
.grid .calendar-item:focus-visible {
|
|
210
|
+
:host .grid .calendar-item:focus-visible {
|
|
207
211
|
background-color: var(--theme-datepicker-day--background--selected);
|
|
208
212
|
border: inset 1px solid var(--theme-datepicker-day--border-color--selected);
|
|
209
213
|
color: var(--theme-datepicker-day--color--selected);
|
|
@@ -211,12 +215,10 @@
|
|
|
211
215
|
line-height: 20px;
|
|
212
216
|
letter-spacing: 0;
|
|
213
217
|
}
|
|
214
|
-
|
|
215
|
-
.button {
|
|
218
|
+
:host .button {
|
|
216
219
|
display: flex;
|
|
217
220
|
justify-content: flex-end;
|
|
218
221
|
}
|
|
219
|
-
|
|
220
|
-
.hidden {
|
|
222
|
+
:host .hidden {
|
|
221
223
|
display: none;
|
|
222
224
|
}
|