@skbkontur/react-ui 6.1.4-4e59f.0 → 6.1.4-5ebac.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/FxInput/FxInput.d.ts +1 -1
- package/components/FxInput/FxInput.js.map +1 -1
- package/components/Group/Group.js +2 -3
- package/components/Group/Group.js.map +1 -1
- package/components/Input/Input.d.ts +1 -1
- package/components/Input/Input.js.map +1 -1
- package/components/MaskedInput/MaskedInput.d.ts +3 -2
- package/components/MaskedInput/MaskedInput.js +10 -126
- package/components/MaskedInput/MaskedInput.js.map +1 -1
- package/components/MaskedInput/MaskedInputLegacy.d.ts +3 -0
- package/components/MaskedInput/MaskedInputLegacy.js +142 -0
- package/components/MaskedInput/MaskedInputLegacy.js.map +1 -0
- package/components/MaskedInputV2/MaskedInputV2.d.ts +58 -0
- package/components/MaskedInputV2/MaskedInputV2.helpers.d.ts +9 -0
- package/components/MaskedInputV2/MaskedInputV2.helpers.js +17 -0
- package/components/MaskedInputV2/MaskedInputV2.helpers.js.map +1 -0
- package/components/MaskedInputV2/MaskedInputV2.js +286 -0
- package/components/MaskedInputV2/MaskedInputV2.js.map +1 -0
- package/{internal/TimeInput/TimeInput.styles.d.ts → components/MaskedInputV2/MaskedInputV2.styles.d.ts} +4 -3
- package/components/MaskedInputV2/MaskedInputV2.styles.js +19 -0
- package/components/MaskedInputV2/MaskedInputV2.styles.js.map +1 -0
- package/components/MaskedInputV2/index.d.ts +1 -0
- package/components/MaskedInputV2/index.js +2 -0
- package/components/MaskedInputV2/index.js.map +1 -0
- package/components/MaskedInputV2/internal/MaskOverlay.d.ts +19 -0
- package/components/MaskedInputV2/internal/MaskOverlay.js +54 -0
- package/components/MaskedInputV2/internal/MaskOverlay.js.map +1 -0
- package/components/MaskedInputV2/internal/MaskedCore.d.ts +8 -0
- package/components/MaskedInputV2/internal/MaskedCore.js +186 -0
- package/components/MaskedInputV2/internal/MaskedCore.js.map +1 -0
- package/components/MaskedInputV2/internal/MaskedCore.types.d.ts +37 -0
- package/components/MaskedInputV2/internal/MaskedCore.types.js +2 -0
- package/components/MaskedInputV2/internal/MaskedCore.types.js.map +1 -0
- package/components/MaskedInputV2/internal/MaskedInternal.styles.d.ts +15 -0
- package/components/MaskedInputV2/internal/MaskedInternal.styles.js +34 -0
- package/components/MaskedInputV2/internal/MaskedInternal.styles.js.map +1 -0
- package/components/MaskedInputV2/internal/buildSlotMap.d.ts +11 -0
- package/components/MaskedInputV2/internal/buildSlotMap.js +37 -0
- package/components/MaskedInputV2/internal/buildSlotMap.js.map +1 -0
- package/components/MaskedInputV2/internal/computeMaskAlignPadding.d.ts +6 -0
- package/components/MaskedInputV2/internal/computeMaskAlignPadding.js +47 -0
- package/components/MaskedInputV2/internal/computeMaskAlignPadding.js.map +1 -0
- package/components/MaskedInputV2/internal/computePasteMaskedCursor.d.ts +3 -0
- package/components/MaskedInputV2/internal/computePasteMaskedCursor.js +11 -0
- package/components/MaskedInputV2/internal/computePasteMaskedCursor.js.map +1 -0
- package/components/MaskedInputV2/internal/extractRaw.d.ts +10 -0
- package/components/MaskedInputV2/internal/extractRaw.js +16 -0
- package/components/MaskedInputV2/internal/extractRaw.js.map +1 -0
- package/components/MaskedInputV2/internal/findNearestRawLeft.d.ts +10 -0
- package/components/MaskedInputV2/internal/findNearestRawLeft.js +18 -0
- package/components/MaskedInputV2/internal/findNearestRawLeft.js.map +1 -0
- package/components/MaskedInputV2/internal/helpers.d.ts +8 -0
- package/components/MaskedInputV2/internal/helpers.js +9 -0
- package/components/MaskedInputV2/internal/helpers.js.map +1 -0
- package/components/MaskedInputV2/internal/maskedCoreClipboard.d.ts +25 -0
- package/components/MaskedInputV2/internal/maskedCoreClipboard.js +30 -0
- package/components/MaskedInputV2/internal/maskedCoreClipboard.js.map +1 -0
- package/components/MaskedInputV2/internal/maskedCoreDeletion.d.ts +28 -0
- package/components/MaskedInputV2/internal/maskedCoreDeletion.js +70 -0
- package/components/MaskedInputV2/internal/maskedCoreDeletion.js.map +1 -0
- package/components/MaskedInputV2/internal/maskedCoreInputChange.d.ts +35 -0
- package/components/MaskedInputV2/internal/maskedCoreInputChange.js +31 -0
- package/components/MaskedInputV2/internal/maskedCoreInputChange.js.map +1 -0
- package/components/MaskedInputV2/internal/maskedCoreNavigation.d.ts +13 -0
- package/components/MaskedInputV2/internal/maskedCoreNavigation.js +79 -0
- package/components/MaskedInputV2/internal/maskedCoreNavigation.js.map +1 -0
- package/components/MaskedInputV2/internal/measureInputTextWidth.d.ts +2 -0
- package/components/MaskedInputV2/internal/measureInputTextWidth.js +30 -0
- package/components/MaskedInputV2/internal/measureInputTextWidth.js.map +1 -0
- package/components/MaskedInputV2/internal/setMaskInputSelectionRange.d.ts +2 -0
- package/components/MaskedInputV2/internal/setMaskInputSelectionRange.js +25 -0
- package/components/MaskedInputV2/internal/setMaskInputSelectionRange.js.map +1 -0
- package/components/MaskedInputV2/internal/showOverlay.d.ts +3 -0
- package/components/MaskedInputV2/internal/showOverlay.js +16 -0
- package/components/MaskedInputV2/internal/showOverlay.js.map +1 -0
- package/components/MaskedInputV2/internal/stripMaskChars.d.ts +11 -0
- package/components/MaskedInputV2/internal/stripMaskChars.js +20 -0
- package/components/MaskedInputV2/internal/stripMaskChars.js.map +1 -0
- package/components/MaskedInputV2/internal/types.d.ts +74 -0
- package/components/MaskedInputV2/internal/types.js.map +1 -0
- package/components/MaskedInputV2/internal/useInputOverflow.d.ts +4 -0
- package/components/MaskedInputV2/internal/useInputOverflow.js +34 -0
- package/components/MaskedInputV2/internal/useInputOverflow.js.map +1 -0
- package/components/MaskedInputV2/internal/useMaskAlignPadding.d.ts +2 -0
- package/components/MaskedInputV2/internal/useMaskAlignPadding.js +33 -0
- package/components/MaskedInputV2/internal/useMaskAlignPadding.js.map +1 -0
- package/components/MaskedInputV2/internal/useMaskEngine.d.ts +42 -0
- package/components/MaskedInputV2/internal/useMaskEngine.js +82 -0
- package/components/MaskedInputV2/internal/useMaskEngine.js.map +1 -0
- package/components/MaskedInputV2/internal/useMaskedCoreHandlers.d.ts +33 -0
- package/components/MaskedInputV2/internal/useMaskedCoreHandlers.js +250 -0
- package/components/MaskedInputV2/internal/useMaskedCoreHandlers.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/controls/html-input-mask-element.d.ts +16 -0
- package/components/MaskedInputV2/react-imask/imask/controls/html-input-mask-element.js +59 -0
- package/components/MaskedInputV2/react-imask/imask/controls/html-input-mask-element.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/controls/html-mask-element.d.ts +20 -0
- package/components/MaskedInputV2/react-imask/imask/controls/html-mask-element.js +106 -0
- package/components/MaskedInputV2/react-imask/imask/controls/html-mask-element.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/controls/input-history.d.ts +17 -0
- package/components/MaskedInputV2/react-imask/imask/controls/input-history.js +49 -0
- package/components/MaskedInputV2/react-imask/imask/controls/input-history.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/controls/input.d.ts +95 -0
- package/components/MaskedInputV2/react-imask/imask/controls/input.js +420 -0
- package/components/MaskedInputV2/react-imask/imask/controls/input.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/controls/mask-element.d.ts +30 -0
- package/components/MaskedInputV2/react-imask/imask/controls/mask-element.js +59 -0
- package/components/MaskedInputV2/react-imask/imask/controls/mask-element.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/core/action-details.d.ts +30 -0
- package/components/MaskedInputV2/react-imask/imask/core/action-details.js +100 -0
- package/components/MaskedInputV2/react-imask/imask/core/action-details.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/core/change-details.d.ts +20 -0
- package/components/MaskedInputV2/react-imask/imask/core/change-details.js +46 -0
- package/components/MaskedInputV2/react-imask/imask/core/change-details.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/core/continuous-tail-details.d.ts +21 -0
- package/components/MaskedInputV2/react-imask/imask/core/continuous-tail-details.js +52 -0
- package/components/MaskedInputV2/react-imask/imask/core/continuous-tail-details.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/core/holder.d.ts +34 -0
- package/components/MaskedInputV2/react-imask/imask/core/holder.js +38 -0
- package/components/MaskedInputV2/react-imask/imask/core/holder.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/core/tail-details.d.ts +20 -0
- package/components/MaskedInputV2/react-imask/imask/core/tail-details.js +2 -0
- package/components/MaskedInputV2/react-imask/imask/core/tail-details.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/core/utils.d.ts +24 -0
- package/components/MaskedInputV2/react-imask/imask/core/utils.js +100 -0
- package/components/MaskedInputV2/react-imask/imask/core/utils.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/imask.d.ts +5 -0
- package/components/MaskedInputV2/react-imask/imask/imask.js +7 -0
- package/components/MaskedInputV2/react-imask/imask/imask.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/index.d.ts +17 -0
- package/components/MaskedInputV2/react-imask/imask/index.js +16 -0
- package/components/MaskedInputV2/react-imask/imask/index.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/masked/base.d.ts +114 -0
- package/components/MaskedInputV2/react-imask/imask/masked/base.js +411 -0
- package/components/MaskedInputV2/react-imask/imask/masked/base.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/masked/factory.d.ts +62 -0
- package/components/MaskedInputV2/react-imask/imask/masked/factory.js +96 -0
- package/components/MaskedInputV2/react-imask/imask/masked/factory.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/masked/pattern.d.ts +101 -0
- package/components/MaskedInputV2/react-imask/imask/masked/pattern.js +543 -0
- package/components/MaskedInputV2/react-imask/imask/masked/pattern.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/block.d.ts +30 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/block.js +2 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/block.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/chunk-tail-details.d.ts +21 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/chunk-tail-details.js +180 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/chunk-tail-details.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/cursor.d.ts +31 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/cursor.js +163 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/cursor.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/fixed-definition.d.ts +42 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/fixed-definition.js +158 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/fixed-definition.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/input-definition.d.ts +56 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/input-definition.js +185 -0
- package/components/MaskedInputV2/react-imask/imask/masked/patterns/input-definition.js.map +1 -0
- package/components/MaskedInputV2/react-imask/imask/masked/regexp.d.ts +17 -0
- package/components/MaskedInputV2/react-imask/imask/masked/regexp.js +36 -0
- package/components/MaskedInputV2/react-imask/imask/masked/regexp.js.map +1 -0
- package/components/MaskedInputV2/react-imask/index.d.ts +3 -0
- package/components/MaskedInputV2/react-imask/index.js +4 -0
- package/components/MaskedInputV2/react-imask/index.js.map +1 -0
- package/components/MaskedInputV2/react-imask/input.d.ts +8 -0
- package/components/MaskedInputV2/react-imask/input.js +35 -0
- package/components/MaskedInputV2/react-imask/input.js.map +1 -0
- package/components/MaskedInputV2/react-imask/mixin.d.ts +31 -0
- package/components/MaskedInputV2/react-imask/mixin.js +246 -0
- package/components/MaskedInputV2/react-imask/mixin.js.map +1 -0
- package/components/TokenInput/TokenInput.d.ts +7 -3
- package/components/TokenInput/TokenInput.js +0 -1
- package/components/TokenInput/TokenInput.js.map +1 -1
- package/index.d.ts +0 -1
- package/index.js +0 -1
- package/index.js.map +1 -1
- package/internal/Popup/PopupPin.js +8 -6
- package/internal/Popup/PopupPin.js.map +1 -1
- package/internal/themes/BasicTheme.d.ts +162 -34
- package/internal/themes/BasicTheme.js +162 -96
- package/internal/themes/BasicTheme.js.map +1 -1
- package/lib/events/keyboard/KeyboardEventCodes.d.ts +2 -0
- package/lib/events/keyboard/KeyboardEventCodes.js +2 -0
- package/lib/events/keyboard/KeyboardEventCodes.js.map +1 -1
- package/lib/events/keyboard/KeyboardMapKeys.js +2 -0
- package/lib/events/keyboard/KeyboardMapKeys.js.map +1 -1
- package/lib/events/keyboard/identifiers.d.ts +2 -0
- package/lib/events/keyboard/identifiers.js +6 -0
- package/lib/events/keyboard/identifiers.js.map +1 -1
- package/lib/featureFlagsContext/ReactUIFeatureFlagsContext.d.ts +1 -0
- package/lib/featureFlagsContext/ReactUIFeatureFlagsContext.js +1 -0
- package/lib/featureFlagsContext/ReactUIFeatureFlagsContext.js.map +1 -1
- package/lib/locale/types.d.ts +0 -2
- package/lib/locale/types.js.map +1 -1
- package/lib/utils.d.ts +0 -2
- package/lib/utils.js +0 -1
- package/lib/utils.js.map +1 -1
- package/package.json +4 -9
- package/components/TimePicker/TimeClockIcon.d.ts +0 -3
- package/components/TimePicker/TimeClockIcon.js +0 -11
- package/components/TimePicker/TimeClockIcon.js.map +0 -1
- package/components/TimePicker/TimePicker.d.ts +0 -79
- package/components/TimePicker/TimePicker.js +0 -513
- package/components/TimePicker/TimePicker.js.map +0 -1
- package/components/TimePicker/TimePicker.styles.d.ts +0 -11
- package/components/TimePicker/TimePicker.styles.js +0 -36
- package/components/TimePicker/TimePicker.styles.js.map +0 -1
- package/components/TimePicker/TimePickerItems.d.ts +0 -17
- package/components/TimePicker/TimePickerItems.js +0 -80
- package/components/TimePicker/TimePickerItems.js.map +0 -1
- package/components/TimePicker/TimePickerMobilePopup.d.ts +0 -38
- package/components/TimePicker/TimePickerMobilePopup.js +0 -21
- package/components/TimePicker/TimePickerMobilePopup.js.map +0 -1
- package/components/TimePicker/TimePickerPopup.d.ts +0 -20
- package/components/TimePicker/TimePickerPopup.js +0 -18
- package/components/TimePicker/TimePickerPopup.js.map +0 -1
- package/components/TimePicker/helpers/TimePicker.constants.d.ts +0 -22
- package/components/TimePicker/helpers/TimePicker.constants.js +0 -31
- package/components/TimePicker/helpers/TimePicker.constants.js.map +0 -1
- package/components/TimePicker/helpers/TimePicker.editing.d.ts +0 -23
- package/components/TimePicker/helpers/TimePicker.editing.js +0 -101
- package/components/TimePicker/helpers/TimePicker.editing.js.map +0 -1
- package/components/TimePicker/helpers/TimePicker.layout.d.ts +0 -6
- package/components/TimePicker/helpers/TimePicker.layout.js +0 -49
- package/components/TimePicker/helpers/TimePicker.layout.js.map +0 -1
- package/components/TimePicker/helpers/TimePicker.selection.d.ts +0 -5
- package/components/TimePicker/helpers/TimePicker.selection.js +0 -23
- package/components/TimePicker/helpers/TimePicker.selection.js.map +0 -1
- package/components/TimePicker/helpers/TimePicker.shared.d.ts +0 -47
- package/components/TimePicker/helpers/TimePicker.shared.js +0 -70
- package/components/TimePicker/helpers/TimePicker.shared.js.map +0 -1
- package/components/TimePicker/helpers/TimePicker.value.d.ts +0 -30
- package/components/TimePicker/helpers/TimePicker.value.js +0 -96
- package/components/TimePicker/helpers/TimePicker.value.js.map +0 -1
- package/components/TimePicker/helpers/scrollSelectedItemIntoView.d.ts +0 -4
- package/components/TimePicker/helpers/scrollSelectedItemIntoView.js +0 -24
- package/components/TimePicker/helpers/scrollSelectedItemIntoView.js.map +0 -1
- package/components/TimePicker/helpers/validateTimePicker.d.ts +0 -8
- package/components/TimePicker/helpers/validateTimePicker.js +0 -16
- package/components/TimePicker/helpers/validateTimePicker.js.map +0 -1
- package/components/TimePicker/hooks/useTimePickerDropdown.d.ts +0 -17
- package/components/TimePicker/hooks/useTimePickerDropdown.js +0 -62
- package/components/TimePicker/hooks/useTimePickerDropdown.js.map +0 -1
- package/components/TimePicker/hooks/useTimePickerSelection.d.ts +0 -18
- package/components/TimePicker/hooks/useTimePickerSelection.js +0 -66
- package/components/TimePicker/hooks/useTimePickerSelection.js.map +0 -1
- package/components/TimePicker/hooks/useTimePickerValue.d.ts +0 -18
- package/components/TimePicker/hooks/useTimePickerValue.js +0 -59
- package/components/TimePicker/hooks/useTimePickerValue.js.map +0 -1
- package/components/TimePicker/index.d.ts +0 -2
- package/components/TimePicker/index.js +0 -2
- package/components/TimePicker/index.js.map +0 -1
- package/components/TimePicker/locale/index.d.ts +0 -4
- package/components/TimePicker/locale/index.js +0 -9
- package/components/TimePicker/locale/index.js.map +0 -1
- package/components/TimePicker/locale/locales/en.d.ts +0 -2
- package/components/TimePicker/locale/locales/en.js +0 -5
- package/components/TimePicker/locale/locales/en.js.map +0 -1
- package/components/TimePicker/locale/locales/ru.d.ts +0 -2
- package/components/TimePicker/locale/locales/ru.js +0 -5
- package/components/TimePicker/locale/locales/ru.js.map +0 -1
- package/components/TimePicker/locale/types.d.ts +0 -4
- package/components/TimePicker/locale/types.js.map +0 -1
- package/internal/NativeTimeInput/NativeTimeInput.d.ts +0 -16
- package/internal/NativeTimeInput/NativeTimeInput.js +0 -25
- package/internal/NativeTimeInput/NativeTimeInput.js.map +0 -1
- package/internal/NativeTimeInput/NativeTimeInput.styles.d.ts +0 -3
- package/internal/NativeTimeInput/NativeTimeInput.styles.js +0 -15
- package/internal/NativeTimeInput/NativeTimeInput.styles.js.map +0 -1
- package/internal/NativeTimeInput/NativeTimeInput.utils.d.ts +0 -7
- package/internal/NativeTimeInput/NativeTimeInput.utils.js +0 -28
- package/internal/NativeTimeInput/NativeTimeInput.utils.js.map +0 -1
- package/internal/NativeTimeInput/index.d.ts +0 -1
- package/internal/NativeTimeInput/index.js +0 -2
- package/internal/NativeTimeInput/index.js.map +0 -1
- package/internal/TimeInput/TimeFragments.d.ts +0 -15
- package/internal/TimeInput/TimeFragments.js +0 -72
- package/internal/TimeInput/TimeFragments.js.map +0 -1
- package/internal/TimeInput/TimeFragments.styles.d.ts +0 -12
- package/internal/TimeInput/TimeFragments.styles.js +0 -43
- package/internal/TimeInput/TimeFragments.styles.js.map +0 -1
- package/internal/TimeInput/TimeInput.d.ts +0 -22
- package/internal/TimeInput/TimeInput.js +0 -103
- package/internal/TimeInput/TimeInput.js.map +0 -1
- package/internal/TimeInput/TimeInput.styles.js +0 -21
- package/internal/TimeInput/TimeInput.styles.js.map +0 -1
- package/internal/TimeInput/index.d.ts +0 -1
- package/internal/TimeInput/index.js +0 -2
- package/internal/TimeInput/index.js.map +0 -1
- package/internal/icons2022/TimeClockIcon/TimeClockIcon16Light.d.ts +0 -2
- package/internal/icons2022/TimeClockIcon/TimeClockIcon16Light.js +0 -20
- package/internal/icons2022/TimeClockIcon/TimeClockIcon16Light.js.map +0 -1
- package/internal/icons2022/TimeClockIcon/TimeClockIcon20Light.d.ts +0 -2
- package/internal/icons2022/TimeClockIcon/TimeClockIcon20Light.js +0 -20
- package/internal/icons2022/TimeClockIcon/TimeClockIcon20Light.js.map +0 -1
- package/internal/icons2022/TimeClockIcon/TimeClockIcon24Regular.d.ts +0 -2
- package/internal/icons2022/TimeClockIcon/TimeClockIcon24Regular.js +0 -20
- package/internal/icons2022/TimeClockIcon/TimeClockIcon24Regular.js.map +0 -1
- /package/components/{TimePicker/locale → MaskedInputV2/internal}/types.js +0 -0
|
@@ -335,6 +335,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
335
335
|
configurable: true
|
|
336
336
|
});
|
|
337
337
|
Object.defineProperty(BasicThemeClass, "btnDefaultCheckedBorderColor", {
|
|
338
|
+
/**
|
|
339
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
340
|
+
* Используйте `use="fill"`. */
|
|
338
341
|
get: function () {
|
|
339
342
|
return this.btnCheckedBg;
|
|
340
343
|
},
|
|
@@ -342,6 +345,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
342
345
|
configurable: true
|
|
343
346
|
});
|
|
344
347
|
Object.defineProperty(BasicThemeClass, "btnDefaultTextColor", {
|
|
348
|
+
/**
|
|
349
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
350
|
+
* Используйте `use="fill"`. */
|
|
345
351
|
get: function () {
|
|
346
352
|
return this.textColorDefault;
|
|
347
353
|
},
|
|
@@ -349,6 +355,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
349
355
|
configurable: true
|
|
350
356
|
});
|
|
351
357
|
Object.defineProperty(BasicThemeClass, "btnDefaultHoverBorderColor", {
|
|
358
|
+
/**
|
|
359
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
360
|
+
* Используйте `use="fill"`. */
|
|
352
361
|
get: function () {
|
|
353
362
|
return this.btnDefaultBorderColor;
|
|
354
363
|
},
|
|
@@ -356,6 +365,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
356
365
|
configurable: true
|
|
357
366
|
});
|
|
358
367
|
Object.defineProperty(BasicThemeClass, "btnDefaultActiveBorderColor", {
|
|
368
|
+
/**
|
|
369
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
370
|
+
* Используйте `use="fill"`. */
|
|
359
371
|
get: function () {
|
|
360
372
|
return this.btnDefaultBorderColor;
|
|
361
373
|
},
|
|
@@ -384,6 +396,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
384
396
|
configurable: true
|
|
385
397
|
});
|
|
386
398
|
Object.defineProperty(BasicThemeClass, "btnPrimaryBorderColor", {
|
|
399
|
+
/**
|
|
400
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
401
|
+
* Используйте `use="accent"`. */
|
|
387
402
|
get: function () {
|
|
388
403
|
return this.btnPrimaryBg;
|
|
389
404
|
},
|
|
@@ -391,6 +406,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
391
406
|
configurable: true
|
|
392
407
|
});
|
|
393
408
|
Object.defineProperty(BasicThemeClass, "btnPrimaryHoverBorderColor", {
|
|
409
|
+
/**
|
|
410
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
411
|
+
* Используйте `use="accent"`. */
|
|
394
412
|
get: function () {
|
|
395
413
|
return this.btnPrimaryHoverBg;
|
|
396
414
|
},
|
|
@@ -398,6 +416,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
398
416
|
configurable: true
|
|
399
417
|
});
|
|
400
418
|
Object.defineProperty(BasicThemeClass, "btnPrimaryActiveBorderColor", {
|
|
419
|
+
/**
|
|
420
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
421
|
+
* Используйте `use="accent"`. */
|
|
401
422
|
get: function () {
|
|
402
423
|
return this.btnPrimaryActiveBg;
|
|
403
424
|
},
|
|
@@ -540,6 +561,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
540
561
|
configurable: true
|
|
541
562
|
});
|
|
542
563
|
Object.defineProperty(BasicThemeClass, "btnLinkColor", {
|
|
564
|
+
/**
|
|
565
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
566
|
+
* Используйте компонент `Link`. */
|
|
543
567
|
get: function () {
|
|
544
568
|
return this.linkColor;
|
|
545
569
|
},
|
|
@@ -547,6 +571,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
547
571
|
configurable: true
|
|
548
572
|
});
|
|
549
573
|
Object.defineProperty(BasicThemeClass, "btnLinkHoverColor", {
|
|
574
|
+
/**
|
|
575
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
576
|
+
* Используйте компонент `Link`. */
|
|
550
577
|
get: function () {
|
|
551
578
|
return this.linkHoverColor;
|
|
552
579
|
},
|
|
@@ -554,6 +581,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
554
581
|
configurable: true
|
|
555
582
|
});
|
|
556
583
|
Object.defineProperty(BasicThemeClass, "btnLinkActiveColor", {
|
|
584
|
+
/**
|
|
585
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
586
|
+
* Используйте компонент `Link`. */
|
|
557
587
|
get: function () {
|
|
558
588
|
return this.linkActiveColor;
|
|
559
589
|
},
|
|
@@ -561,6 +591,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
561
591
|
configurable: true
|
|
562
592
|
});
|
|
563
593
|
Object.defineProperty(BasicThemeClass, "btnLinkHoverTextDecoration", {
|
|
594
|
+
/**
|
|
595
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
596
|
+
* Используйте компонент `Link`. */
|
|
564
597
|
get: function () {
|
|
565
598
|
return this.linkHoverTextDecoration;
|
|
566
599
|
},
|
|
@@ -568,6 +601,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
568
601
|
configurable: true
|
|
569
602
|
});
|
|
570
603
|
Object.defineProperty(BasicThemeClass, "btnLinkTextDecorationColor", {
|
|
604
|
+
/**
|
|
605
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
606
|
+
* Используйте компонент `Link`. */
|
|
571
607
|
get: function () {
|
|
572
608
|
return this.linkTextDecorationColor;
|
|
573
609
|
},
|
|
@@ -575,6 +611,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
575
611
|
configurable: true
|
|
576
612
|
});
|
|
577
613
|
Object.defineProperty(BasicThemeClass, "btnLinkTextDecorationStyle", {
|
|
614
|
+
/**
|
|
615
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
616
|
+
* Используйте компонент `Link`. */
|
|
578
617
|
get: function () {
|
|
579
618
|
return this.linkTextDecorationStyle;
|
|
580
619
|
},
|
|
@@ -582,6 +621,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
582
621
|
configurable: true
|
|
583
622
|
});
|
|
584
623
|
Object.defineProperty(BasicThemeClass, "btnLinkHoverTextDecorationStyle", {
|
|
624
|
+
/**
|
|
625
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
626
|
+
* Используйте компонент `Link`. */
|
|
585
627
|
get: function () {
|
|
586
628
|
return this.linkTextDecorationStyle;
|
|
587
629
|
},
|
|
@@ -589,6 +631,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
589
631
|
configurable: true
|
|
590
632
|
});
|
|
591
633
|
Object.defineProperty(BasicThemeClass, "btnLinkTextUnderlineOffset", {
|
|
634
|
+
/**
|
|
635
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
636
|
+
* Используйте компонент `Link`. */
|
|
592
637
|
get: function () {
|
|
593
638
|
return this.linkTextUnderlineOffset;
|
|
594
639
|
},
|
|
@@ -596,6 +641,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
596
641
|
configurable: true
|
|
597
642
|
});
|
|
598
643
|
Object.defineProperty(BasicThemeClass, "btnLinkTextDecorationThickness", {
|
|
644
|
+
/**
|
|
645
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
646
|
+
* Используйте компонент `Link`. */
|
|
599
647
|
get: function () {
|
|
600
648
|
return this.linkTextDecorationThickness;
|
|
601
649
|
},
|
|
@@ -603,6 +651,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
603
651
|
configurable: true
|
|
604
652
|
});
|
|
605
653
|
Object.defineProperty(BasicThemeClass, "btnLinkTextUnderlineOpacity", {
|
|
654
|
+
/**
|
|
655
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
656
|
+
* Используйте компонент `Link`. */
|
|
606
657
|
get: function () {
|
|
607
658
|
return this.linkTextUnderlineOpacity;
|
|
608
659
|
},
|
|
@@ -610,6 +661,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
610
661
|
configurable: true
|
|
611
662
|
});
|
|
612
663
|
Object.defineProperty(BasicThemeClass, "btnLinkLineBorderBottomStyle", {
|
|
664
|
+
/**
|
|
665
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
666
|
+
* Используйте компонент `Link`. */
|
|
613
667
|
get: function () {
|
|
614
668
|
return this.linkLineBorderBottomStyle;
|
|
615
669
|
},
|
|
@@ -617,6 +671,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
617
671
|
configurable: true
|
|
618
672
|
});
|
|
619
673
|
Object.defineProperty(BasicThemeClass, "btnLinkHoverLineBorderBottomStyle", {
|
|
674
|
+
/**
|
|
675
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
676
|
+
* Используйте компонент `Link`. */
|
|
620
677
|
get: function () {
|
|
621
678
|
return this.btnLinkLineBorderBottomStyle;
|
|
622
679
|
},
|
|
@@ -624,6 +681,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
624
681
|
configurable: true
|
|
625
682
|
});
|
|
626
683
|
Object.defineProperty(BasicThemeClass, "btnLinkLineBorderBottomWidth", {
|
|
684
|
+
/**
|
|
685
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
686
|
+
* Используйте компонент `Link`. */
|
|
627
687
|
get: function () {
|
|
628
688
|
return this.linkLineBorderBottomWidth;
|
|
629
689
|
},
|
|
@@ -631,6 +691,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
631
691
|
configurable: true
|
|
632
692
|
});
|
|
633
693
|
Object.defineProperty(BasicThemeClass, "btnLinkLineBorderBottomOpacity", {
|
|
694
|
+
/**
|
|
695
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
696
|
+
* Используйте компонент `Link`. */
|
|
634
697
|
get: function () {
|
|
635
698
|
return this.linkLineBorderBottomOpacity;
|
|
636
699
|
},
|
|
@@ -638,6 +701,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
638
701
|
configurable: true
|
|
639
702
|
});
|
|
640
703
|
Object.defineProperty(BasicThemeClass, "btnLinkIconMarginRight", {
|
|
704
|
+
/**
|
|
705
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
706
|
+
* Используйте компонент `Link`. */
|
|
641
707
|
get: function () {
|
|
642
708
|
return this.linkIconMarginRight;
|
|
643
709
|
},
|
|
@@ -645,6 +711,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
645
711
|
configurable: true
|
|
646
712
|
});
|
|
647
713
|
Object.defineProperty(BasicThemeClass, "btnLinkIconMarginLeft", {
|
|
714
|
+
/**
|
|
715
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
716
|
+
* Используйте компонент `Link`. */
|
|
648
717
|
get: function () {
|
|
649
718
|
return this.linkIconMarginRight;
|
|
650
719
|
},
|
|
@@ -666,6 +735,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
666
735
|
configurable: true
|
|
667
736
|
});
|
|
668
737
|
Object.defineProperty(BasicThemeClass, "btnLinkDisabledColor", {
|
|
738
|
+
/**
|
|
739
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
740
|
+
* Используйте компонент `Link`. */
|
|
669
741
|
get: function () {
|
|
670
742
|
return this.linkDisabledColor;
|
|
671
743
|
},
|
|
@@ -680,6 +752,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
680
752
|
configurable: true
|
|
681
753
|
});
|
|
682
754
|
Object.defineProperty(BasicThemeClass, "btnBacklessActiveBorderColor", {
|
|
755
|
+
/**
|
|
756
|
+
* @deprecated Связана с устаревшим `use="backless"`. Будет удалена в `7.0`.
|
|
757
|
+
* Используйте `use="outline"`. */
|
|
683
758
|
get: function () {
|
|
684
759
|
return this.btnBacklessBorderColor;
|
|
685
760
|
},
|
|
@@ -687,6 +762,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
687
762
|
configurable: true
|
|
688
763
|
});
|
|
689
764
|
Object.defineProperty(BasicThemeClass, "btnBacklessBorderColor", {
|
|
765
|
+
/**
|
|
766
|
+
* @deprecated Связана с устаревшим `use="backless"`. Будет удалена в `7.0`.
|
|
767
|
+
* Используйте `use="outline"`. */
|
|
690
768
|
get: function () {
|
|
691
769
|
return this.btnDefaultBorderColor;
|
|
692
770
|
},
|
|
@@ -694,6 +772,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
694
772
|
configurable: true
|
|
695
773
|
});
|
|
696
774
|
Object.defineProperty(BasicThemeClass, "btnBacklessDisabledBorderColor", {
|
|
775
|
+
/**
|
|
776
|
+
* @deprecated Связана с устаревшим `use="backless"`. Будет удалена в `7.0`.
|
|
777
|
+
* Используйте `use="outline"`. */
|
|
697
778
|
get: function () {
|
|
698
779
|
return this.btnDisabledBorderColor;
|
|
699
780
|
},
|
|
@@ -701,6 +782,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
701
782
|
configurable: true
|
|
702
783
|
});
|
|
703
784
|
Object.defineProperty(BasicThemeClass, "btnBacklessHoverBorderColor", {
|
|
785
|
+
/**
|
|
786
|
+
* @deprecated Связана с устаревшим `use="backless"`. Будет удалена в `7.0`.
|
|
787
|
+
* Используйте `use="outline"`. */
|
|
704
788
|
get: function () {
|
|
705
789
|
return this.btnBacklessBorderColor;
|
|
706
790
|
},
|
|
@@ -708,6 +792,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
708
792
|
configurable: true
|
|
709
793
|
});
|
|
710
794
|
Object.defineProperty(BasicThemeClass, "btnBacklessTextColor", {
|
|
795
|
+
/**
|
|
796
|
+
* @deprecated Связана с устаревшим `use="backless"`. Будет удалена в `7.0`.
|
|
797
|
+
* Используйте `use="outline"`. */
|
|
711
798
|
get: function () {
|
|
712
799
|
return this.btnDefaultTextColor;
|
|
713
800
|
},
|
|
@@ -1277,74 +1364,6 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
1277
1364
|
enumerable: false,
|
|
1278
1365
|
configurable: true
|
|
1279
1366
|
});
|
|
1280
|
-
Object.defineProperty(BasicThemeClass, "timePickerPopupBg", {
|
|
1281
|
-
get: function () {
|
|
1282
|
-
return this.bgSecondary;
|
|
1283
|
-
},
|
|
1284
|
-
enumerable: false,
|
|
1285
|
-
configurable: true
|
|
1286
|
-
});
|
|
1287
|
-
Object.defineProperty(BasicThemeClass, "timePickerPopupBorderRadius", {
|
|
1288
|
-
get: function () {
|
|
1289
|
-
return this.menuBorderRadius;
|
|
1290
|
-
},
|
|
1291
|
-
enumerable: false,
|
|
1292
|
-
configurable: true
|
|
1293
|
-
});
|
|
1294
|
-
Object.defineProperty(BasicThemeClass, "timePickerPopupShadow", {
|
|
1295
|
-
get: function () {
|
|
1296
|
-
return this.menuShadow;
|
|
1297
|
-
},
|
|
1298
|
-
enumerable: false,
|
|
1299
|
-
configurable: true
|
|
1300
|
-
});
|
|
1301
|
-
Object.defineProperty(BasicThemeClass, "timePickerMaskColor", {
|
|
1302
|
-
get: function () {
|
|
1303
|
-
return this.placeholderColor;
|
|
1304
|
-
},
|
|
1305
|
-
enumerable: false,
|
|
1306
|
-
configurable: true
|
|
1307
|
-
});
|
|
1308
|
-
Object.defineProperty(BasicThemeClass, "timePickerMenuOffsetY", {
|
|
1309
|
-
get: function () {
|
|
1310
|
-
return "".concat(parseInt(this.menuOffsetY) - 1, "px");
|
|
1311
|
-
},
|
|
1312
|
-
enumerable: false,
|
|
1313
|
-
configurable: true
|
|
1314
|
-
});
|
|
1315
|
-
Object.defineProperty(BasicThemeClass, "timePickerMenuMaxHeightSmall", {
|
|
1316
|
-
get: function () {
|
|
1317
|
-
var timePickerVisibleItemsCount = 8;
|
|
1318
|
-
var timePickerVisibleItemsGapCount = timePickerVisibleItemsCount - 1;
|
|
1319
|
-
return "".concat((parseInt(this.menuItemLineHeightSmall) + parseInt(this.menuItemPaddingYSmall) * 2) *
|
|
1320
|
-
timePickerVisibleItemsCount +
|
|
1321
|
-
parseInt(this.menuItemGap) * timePickerVisibleItemsGapCount, "px");
|
|
1322
|
-
},
|
|
1323
|
-
enumerable: false,
|
|
1324
|
-
configurable: true
|
|
1325
|
-
});
|
|
1326
|
-
Object.defineProperty(BasicThemeClass, "timePickerMenuMaxHeightMedium", {
|
|
1327
|
-
get: function () {
|
|
1328
|
-
var timePickerVisibleItemsCount = 8;
|
|
1329
|
-
var timePickerVisibleItemsGapCount = timePickerVisibleItemsCount - 1;
|
|
1330
|
-
return "".concat((parseInt(this.menuItemLineHeightMedium) + parseInt(this.menuItemPaddingYMedium) * 2) *
|
|
1331
|
-
timePickerVisibleItemsCount +
|
|
1332
|
-
parseInt(this.menuItemGap) * timePickerVisibleItemsGapCount, "px");
|
|
1333
|
-
},
|
|
1334
|
-
enumerable: false,
|
|
1335
|
-
configurable: true
|
|
1336
|
-
});
|
|
1337
|
-
Object.defineProperty(BasicThemeClass, "timePickerMenuMaxHeightLarge", {
|
|
1338
|
-
get: function () {
|
|
1339
|
-
var timePickerVisibleItemsCount = 8;
|
|
1340
|
-
var timePickerVisibleItemsGapCount = timePickerVisibleItemsCount - 1;
|
|
1341
|
-
return "".concat((parseInt(this.menuItemLineHeightLarge) + parseInt(this.menuItemPaddingYLarge) * 2) *
|
|
1342
|
-
timePickerVisibleItemsCount +
|
|
1343
|
-
parseInt(this.menuItemGap) * timePickerVisibleItemsGapCount, "px");
|
|
1344
|
-
},
|
|
1345
|
-
enumerable: false,
|
|
1346
|
-
configurable: true
|
|
1347
|
-
});
|
|
1348
1367
|
Object.defineProperty(BasicThemeClass, "dateSelectMenuBg", {
|
|
1349
1368
|
//#endregion
|
|
1350
1369
|
//#region DateSelect
|
|
@@ -3933,6 +3952,9 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
3933
3952
|
//#endregion
|
|
3934
3953
|
//#region Button
|
|
3935
3954
|
BasicThemeClass.btnBackgroundClip = 'padding-box';
|
|
3955
|
+
/**
|
|
3956
|
+
* @deprecated Связана с устаревшим `use="link"`. Будет удалена в `7.0`.
|
|
3957
|
+
* Используйте компонент `Link`. */
|
|
3936
3958
|
BasicThemeClass.btnLinkBorderRadius = '2px';
|
|
3937
3959
|
BasicThemeClass.btnFocusShadowWidth = '2px';
|
|
3938
3960
|
BasicThemeClass.btnBorderColorTransition = '';
|
|
@@ -3956,17 +3978,47 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
3956
3978
|
BasicThemeClass.btnIconSizeSmall = '16px';
|
|
3957
3979
|
BasicThemeClass.btnIconSizeMedium = '20px';
|
|
3958
3980
|
BasicThemeClass.btnIconSizeLarge = '24px';
|
|
3981
|
+
/**
|
|
3982
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
3983
|
+
* Используйте `use="fill"` и переменные {@link btnFillBg}. */
|
|
3959
3984
|
BasicThemeClass.btnDefaultBg = '#fff';
|
|
3985
|
+
/**
|
|
3986
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
3987
|
+
* Используйте `use="fill"` и переменные {@link btnFillBg}. */
|
|
3960
3988
|
BasicThemeClass.btnDefaultBgStart = 'none';
|
|
3989
|
+
/**
|
|
3990
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
3991
|
+
* Используйте `use="fill"` и переменные {@link btnFillBg}. */
|
|
3961
3992
|
BasicThemeClass.btnDefaultBgEnd = 'none';
|
|
3962
3993
|
// TODO: create token in colors package
|
|
3994
|
+
/**
|
|
3995
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
3996
|
+
* Используйте `use="fill"` и переменные {@link btnFillHoverBg}. */
|
|
3963
3997
|
BasicThemeClass.btnDefaultHoverBg = '#f2f2f2';
|
|
3998
|
+
/**
|
|
3999
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
4000
|
+
* Используйте `use="fill"` и переменные {@link btnFillHoverBg}. */
|
|
3964
4001
|
BasicThemeClass.btnDefaultHoverBgStart = 'none';
|
|
4002
|
+
/**
|
|
4003
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
4004
|
+
* Используйте `use="fill"` и переменные {@link btnFillHoverBg}. */
|
|
3965
4005
|
BasicThemeClass.btnDefaultHoverBgEnd = 'none';
|
|
3966
4006
|
// TODO: create token in colors package
|
|
4007
|
+
/**
|
|
4008
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
4009
|
+
* Используйте `use="fill"` и переменные {@link btnFillActiveBg}. */
|
|
3967
4010
|
BasicThemeClass.btnDefaultActiveBg = '#e4e4e4';
|
|
4011
|
+
/**
|
|
4012
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
4013
|
+
* Используйте `use="fill"`. */
|
|
3968
4014
|
BasicThemeClass.btnDefaultHoverTextColor = colors.textNeutralHeavy;
|
|
4015
|
+
/**
|
|
4016
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
4017
|
+
* Используйте `use="outline"` или `use="fill"`. */
|
|
3969
4018
|
BasicThemeClass.btnDefaultBorderColor = colors.lineNeutralPale;
|
|
4019
|
+
/**
|
|
4020
|
+
* @deprecated Связана с устаревшим `use="default"`. Будет удалена в `7.0`.
|
|
4021
|
+
* Используйте `use="fill"`. */
|
|
3970
4022
|
BasicThemeClass.btnDefaultActiveShadow = 'none';
|
|
3971
4023
|
BasicThemeClass.btnSuccessBg = colors.shapeBoldSuccess;
|
|
3972
4024
|
BasicThemeClass.btnSuccessHoverBg = colors.shapeBoldSuccessHover;
|
|
@@ -3981,15 +4033,45 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
3981
4033
|
BasicThemeClass.btnFillBg = colors.shapeOtherBase;
|
|
3982
4034
|
BasicThemeClass.btnFillHoverBg = colors.shapeOtherBaseHover;
|
|
3983
4035
|
BasicThemeClass.btnFillActiveBg = colors.shapeOtherBasePressed;
|
|
4036
|
+
/**
|
|
4037
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4038
|
+
* Используйте `use="accent"`. */
|
|
3984
4039
|
BasicThemeClass.btnPrimaryBg = colors.shapeBoldAccent;
|
|
4040
|
+
/**
|
|
4041
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4042
|
+
* Используйте `use="accent"`. */
|
|
3985
4043
|
BasicThemeClass.btnPrimaryHoverBg = colors.shapeBoldAccentHover;
|
|
4044
|
+
/**
|
|
4045
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4046
|
+
* Используйте `use="accent"`. */
|
|
3986
4047
|
BasicThemeClass.btnPrimaryActiveBg = colors.shapeBoldAccentPressed;
|
|
4048
|
+
/**
|
|
4049
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4050
|
+
* Используйте `use="accent"`. */
|
|
3987
4051
|
BasicThemeClass.btnPrimaryHoverTextColor = '';
|
|
4052
|
+
/**
|
|
4053
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4054
|
+
* Используйте `use="accent"`. */
|
|
3988
4055
|
BasicThemeClass.btnPrimaryBgStart = 'none';
|
|
4056
|
+
/**
|
|
4057
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4058
|
+
* Используйте `use="accent"`. */
|
|
3989
4059
|
BasicThemeClass.btnPrimaryBgEnd = 'none';
|
|
4060
|
+
/**
|
|
4061
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4062
|
+
* Используйте `use="accent"`. */
|
|
3990
4063
|
BasicThemeClass.btnPrimaryTextColor = colors.textOnAccentBoldHeavy;
|
|
4064
|
+
/**
|
|
4065
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4066
|
+
* Используйте `use="accent"`. */
|
|
3991
4067
|
BasicThemeClass.btnPrimaryHoverBgStart = 'none';
|
|
4068
|
+
/**
|
|
4069
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4070
|
+
* Используйте `use="accent"`. */
|
|
3992
4071
|
BasicThemeClass.btnPrimaryHoverBgEnd = 'none';
|
|
4072
|
+
/**
|
|
4073
|
+
* @deprecated Связана с устаревшим `use="primary"`. Будет удалена в `7.0`.
|
|
4074
|
+
* Используйте `use="accent"`. */
|
|
3993
4075
|
BasicThemeClass.btnPrimaryActiveShadow = 'none';
|
|
3994
4076
|
BasicThemeClass.btnDangerBg = colors.shapeBoldError;
|
|
3995
4077
|
BasicThemeClass.btnDangerHoverBg = colors.shapeBoldErrorHover;
|
|
@@ -4018,9 +4100,21 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
4018
4100
|
BasicThemeClass.btnErrorSecondary = colors.shapeFaintError;
|
|
4019
4101
|
BasicThemeClass.btnWarningSecondary = colors.shapeFaintWarning;
|
|
4020
4102
|
BasicThemeClass.btnInsetColor = colors.surfaceBase;
|
|
4103
|
+
/**
|
|
4104
|
+
* @deprecated Связана с устаревшим `use="backless"`. Будет удалена в `7.0`.
|
|
4105
|
+
* Используйте `use="outline"`. */
|
|
4021
4106
|
BasicThemeClass.btnBacklessBg = 'transparent';
|
|
4107
|
+
/**
|
|
4108
|
+
* @deprecated Связана с устаревшим `use="backless"`. Будет удалена в `7.0`.
|
|
4109
|
+
* Используйте `use="outline"`. */
|
|
4022
4110
|
BasicThemeClass.btnBacklessHoverBg = colors.shapeOtherBacklessHover;
|
|
4111
|
+
/**
|
|
4112
|
+
* @deprecated Связана с устаревшим `use="backless"`. Будет удалена в `7.0`.
|
|
4113
|
+
* Используйте `use="outline"`. */
|
|
4023
4114
|
BasicThemeClass.btnBacklessActiveBg = colors.shapeOtherBacklessPressed;
|
|
4115
|
+
/**
|
|
4116
|
+
* @deprecated Связана с устаревшим `use="backless"`. Будет удалена в `7.0`.
|
|
4117
|
+
* Используйте `use="outline"`. */
|
|
4024
4118
|
BasicThemeClass.btnBacklessHoverTextColor = '';
|
|
4025
4119
|
BasicThemeClass.btnTextBg = 'transparent';
|
|
4026
4120
|
BasicThemeClass.btnTextHoverBg = colors.shapeOtherBacklessHover;
|
|
@@ -4219,34 +4313,6 @@ var BasicThemeClass = /** @class */ (function () {
|
|
|
4219
4313
|
BasicThemeClass.mobileCalendarGridRowSpacing = '8px';
|
|
4220
4314
|
BasicThemeClass.mobileCalendarWrapperHeight = '304px';
|
|
4221
4315
|
//#endregion DatePicker
|
|
4222
|
-
//#region TimePicker
|
|
4223
|
-
BasicThemeClass.timePickerItemGapSmall = '8px';
|
|
4224
|
-
BasicThemeClass.timePickerItemGapMedium = '8px';
|
|
4225
|
-
BasicThemeClass.timePickerItemGapLarge = '8px';
|
|
4226
|
-
BasicThemeClass.timePickerSuffixGapSmall = '4px';
|
|
4227
|
-
BasicThemeClass.timePickerSuffixGapMedium = '6px';
|
|
4228
|
-
BasicThemeClass.timePickerSuffixGapLarge = '8px';
|
|
4229
|
-
BasicThemeClass.timePickerInputMinWidthSmall = '60px';
|
|
4230
|
-
BasicThemeClass.timePickerInputMinWidthMedium = '74px';
|
|
4231
|
-
BasicThemeClass.timePickerInputMinWidthLarge = '88px';
|
|
4232
|
-
BasicThemeClass.timePickerInputMinWidthWithSecondsSmall = '86px';
|
|
4233
|
-
BasicThemeClass.timePickerInputMinWidthWithSecondsMedium = '102px';
|
|
4234
|
-
BasicThemeClass.timePickerInputMinWidthWithSecondsLarge = '120px';
|
|
4235
|
-
BasicThemeClass.timePickerInputMinWidthWithIconSmall = '80px';
|
|
4236
|
-
BasicThemeClass.timePickerInputMinWidthWithIconMedium = '100px';
|
|
4237
|
-
BasicThemeClass.timePickerInputMinWidthWithIconLarge = '120px';
|
|
4238
|
-
BasicThemeClass.timePickerInputMinWidthWithIconAndSecondsSmall = '106px';
|
|
4239
|
-
BasicThemeClass.timePickerInputMinWidthWithIconAndSecondsMedium = '128px';
|
|
4240
|
-
BasicThemeClass.timePickerInputMinWidthWithIconAndSecondsLarge = '152px';
|
|
4241
|
-
BasicThemeClass.timePickerSeparatorOffsetTopSmall = '-1px';
|
|
4242
|
-
BasicThemeClass.timePickerSeparatorOffsetTopMedium = '-1px';
|
|
4243
|
-
BasicThemeClass.timePickerSeparatorOffsetTopLarge = '-2px';
|
|
4244
|
-
BasicThemeClass.timePickerSeparatorPaddingXSmall = '1px';
|
|
4245
|
-
BasicThemeClass.timePickerSeparatorPaddingXMedium = '2px';
|
|
4246
|
-
BasicThemeClass.timePickerSeparatorPaddingXLarge = '2px';
|
|
4247
|
-
BasicThemeClass.timePickerSelectedBgColor = '';
|
|
4248
|
-
BasicThemeClass.timePickerSelectedTextColor = '';
|
|
4249
|
-
//#endregion TimePicker
|
|
4250
4316
|
//#region DateRangePicker
|
|
4251
4317
|
BasicThemeClass.rangeCalendarCellBg = colors.shapeFaintNeutralAlpha;
|
|
4252
4318
|
BasicThemeClass.rangeCalendarCellEndBg = colors.shapeBoldAccent;
|