diff --git a/charting_library/charting_library.min.d.ts b/charting_library/charting_library.min.d.ts index a90b2733..92c3c779 100644 --- a/charting_library/charting_library.min.d.ts +++ b/charting_library/charting_library.min.d.ts @@ -1,21 +1,44 @@ /// -/** - * This is the generic type useful for declaring a nominal type, - * which does not structurally matches with the base type and - * the other types declared over the same base type - * - * Usage: - * @example - * type Index = Nominal; - * // let i: Index = 42; // this fails to compile - * let i: Index = 42 as Index; // OK - * @example - * type TagName = Nominal; +/** + * This is the generic type useful for declaring a nominal type, + * which does not structurally matches with the base type and + * the other types declared over the same base type + * + * Usage: + * @example + * type Index = Nominal; + * // let i: Index = 42; // this fails to compile + * let i: Index = 42 as Index; // OK + * @example + * type TagName = Nominal; */ -export declare type Nominal = T & { - [Symbol.species]: Name; +export declare type Nominal = T & { + [Symbol.species]: Name; }; +declare enum OrderOrPositionMessageType { + Information = "information", + Warning = "warning", + Error = "error" +} +declare enum StopType { + StopLoss = 0, + TrailingStop = 1 +} +export declare const enum ChartStyle { + Bar = 0, + Candle = 1, + Line = 2, + Area = 3, + Renko = 4, + Kagi = 5, + PnF = 6, + LineBreak = 7, + HeikinAshi = 8, + HollowCandle = 9, + Baseline = 10, + HiLo = 12 +} export declare const enum ConnectionStatus { Connected = 1, Connecting = 2, @@ -43,9 +66,10 @@ export declare const enum OrderStatusFilter { Working = 6 } export declare const enum OrderTicketFocusControl { - StopLoss = 1, + LimitPrice = 1, StopPrice = 2, - TakeProfit = 3 + TakeProfit = 3, + StopLoss = 4 } export declare const enum OrderType { Limit = 1, @@ -84,7 +108,7 @@ export declare const widget: ChartingLibraryWidgetConstructor; export declare function version(): string; export declare type ActionMetaInfo = ActionDescriptionWithCallback | MenuSeparator; export declare type AvailableSaveloadVersions = '1.0' | '1.1'; -export declare type ChartActionId = 'chartProperties' | 'compareOrAdd' | 'scalesProperties' | 'tmzProperties' | 'paneObjectTree' | 'insertIndicator' | 'symbolSearch' | 'changeInterval' | 'timeScaleReset' | 'chartReset' | 'seriesHide' | 'studyHide' | 'lineToggleLock' | 'lineHide' | 'showLeftAxis' | 'showRightAxis' | 'scaleSeriesOnly' | 'drawingToolbarAction' | 'stayInDrawingModeAction' | 'hideAllMarks' | 'showCountdown' | 'showSeriesLastValue' | 'showSymbolLabelsAction' | 'showStudyLastValue' | 'showStudyPlotNamesAction' | 'undo' | 'redo' | 'paneRemoveAllStudiesDrawingTools'; +export declare type ChartActionId = 'chartProperties' | 'compareOrAdd' | 'scalesProperties' | 'paneObjectTree' | 'insertIndicator' | 'symbolSearch' | 'changeInterval' | 'timeScaleReset' | 'chartReset' | 'seriesHide' | 'studyHide' | 'lineToggleLock' | 'lineHide' | 'scaleSeriesOnly' | 'drawingToolbarAction' | 'stayInDrawingModeAction' | 'hideAllMarks' | 'showCountdown' | 'showSeriesLastValue' | 'showSymbolLabelsAction' | 'showStudyLastValue' | 'showStudyPlotNamesAction' | 'undo' | 'redo' | 'paneRemoveAllStudiesDrawingTools'; export declare type Direction = 'buy' | 'sell'; export declare type DomeCallback = (data: DOMData) => void; export declare type DrawingEventType = 'click' | 'move' | 'remove' | 'hide' | 'show'; @@ -94,6 +118,8 @@ export declare type EntityId = Nominal; export declare type ErrorCallback = (reason: string) => void; export declare type FieldDescriptor = TimeFieldDescriptor | SeriesFieldDescriptor | StudyFieldDescriptor; export declare type GetMarksCallback = (marks: T[]) => void; +export declare type GroupLockState = 'Locked' | 'Unlocked' | 'Partial'; +export declare type GroupVisibilityState = 'Visible' | 'Invisible' | 'Partial'; export declare type HistoryCallback = (bars: Bar[], meta: HistoryMetadata) => void; export declare type IBasicDataFeed = IDatafeedChartApi & IExternalDatafeed; export declare type InputFieldValidator = (value: any) => InputFieldValidatorResult; @@ -103,25 +129,26 @@ export declare type LayoutType = SingleChartLayoutType | MultipleChartsLayoutTyp export declare type MarkConstColors = 'red' | 'green' | 'blue' | 'yellow'; export declare type MultipleChartsLayoutType = '2h' | '2v' | '2-1' | '3s' | '3h' | '3v' | '4' | '6' | '8' | '1-2' | '3r' | '4h' | '4v' | '4s' | '1-3' | '2-2' | '1-4' | '5s' | '6c' | '8c'; export declare type OnReadyCallback = (configuration: DatafeedConfiguration) => void; -export declare type Order = OrderWithParent | PlacedOrder; -export declare type OrderDialogCustomField = TextWithCheckboxFieldMetaInfo | CustomComboBoxMetaInfo; +export declare type Order = OrderWithParentAndStopType | PlacedOrderWithStopType; export declare type PineJS = any; export declare type QuoteData = QuoteOkData | QuoteErrorData; export declare type QuotesCallback = (data: QuoteData[]) => void; export declare type ResolutionBackValues = 'D' | 'M'; -export declare type ResolutionString = string; +export declare type ResolutionString = Nominal; export declare type ResolveCallback = (symbolInfo: LibrarySymbolInfo) => void; export declare type RssNewsFeedItem = RssNewsFeedInfo | RssNewsFeedInfo[]; export declare type SearchSymbolsCallback = (items: SearchSymbolResultItem[]) => void; export declare type SeriesFormat = 'price' | 'volume'; +export declare type SeriesPriceScale = 'new-left' | 'new-right' | 'no-scale' | EntityId; export declare type ServerTimeCallback = (serverTime: number) => void; export declare type ShapePoint = StickedPoint | PricedPoint | TimePoint; +export declare type ShapesGroupId = Nominal; export declare type SingleChartLayoutType = 's'; -export declare type StandardFormatterName = 'date' | 'default' | 'fixed' | 'formatQuantity' | 'formatPrice' | 'formatPriceForexSup' | 'integerSeparated' | 'localDate' | 'percentage' | 'pips' | 'profit' | 'side' | 'status' | 'symbol' | 'type' | 'unixTimeAgo'; +export declare type StandardFormatterName = 'date' | 'dateOrDateTime' | 'default' | 'fixed' | 'variablePrecision' | 'formatQuantity' | 'formatPrice' | 'formatPriceForexSup' | 'integerSeparated' | 'localDate' | 'localDateOrDateTime' | 'percentage' | 'pips' | 'profit' | 'side' | 'status' | 'symbol' | 'type' | 'unixTimeAgo'; export declare type StudyInputId = Nominal; export declare type StudyInputValue = string | number | boolean; export declare type StudyOverrideValueType = string | number | boolean; -export declare type StudyPriceScale = 'left' | 'right' | 'no-scale' | 'as-series'; +export declare type StudyPriceScale = 'new-left' | 'new-right' | 'no-scale' | 'as-series'; export declare type SubscribeBarsCallback = (bar: Bar) => void; export declare type SupportedLineTools = 'text' | 'anchored_text' | 'note' | 'anchored_note' | 'double_curve' | 'arc' | 'icon' | 'arrow_up' | 'arrow_down' | 'arrow_left' | 'arrow_right' | 'price_label' | 'flag' | 'vertical_line' | 'horizontal_line' | 'cross_line' | 'horizontal_ray' | 'trend_line' | 'info_line' | 'trend_angle' | 'arrow' | 'ray' | 'extended' | 'parallel_channel' | 'disjoint_angle' | 'flat_bottom' | 'pitchfork' | 'schiff_pitchfork_modified' | 'schiff_pitchfork' | 'balloon' | 'inside_pitchfork' | 'pitchfan' | 'gannbox' | 'gannbox_square' | 'gannbox_fixed' | 'gannbox_fan' | 'fib_retracement' | 'fib_trend_ext' | 'fib_speed_resist_fan' | 'fib_timezone' | 'fib_trend_time' | 'fib_circles' | 'fib_spiral' | 'fib_speed_resist_arcs' | 'fib_channel' | 'xabcd_pattern' | 'cypher_pattern' | 'abcd_pattern' | 'callout' | 'triangle_pattern' | '3divers_pattern' | 'head_and_shoulders' | 'fib_wedge' | 'elliott_impulse_wave' | 'elliott_triangle_wave' | 'elliott_triple_combo' | 'elliott_correction' | 'elliott_double_combo' | 'cyclic_lines' | 'time_cycles' | 'sine_line' | 'long_position' | 'short_position' | 'forecast' | 'date_range' | 'price_range' | 'date_and_price_range' | 'bars_pattern' | 'ghost_feed' | 'projection' | 'rectangle' | 'rotated_rectangle' | 'ellipse' | 'triangle' | 'polyline' | 'curve' | 'cursor' | 'dot' | 'arrow_cursor' | 'eraser' | 'measure' | 'zoom' | 'brush'; export declare type SymbolType = 'stock' | 'index' | 'forex' | 'futures' | 'bitcoin' | 'crypto' | 'undefined' | 'expression' | 'spread' | 'cfd'; @@ -129,6 +156,7 @@ export declare type TableElementFormatFunction = (inputs: TableFormatterInputs) export declare type TextInputFieldValidator = (value: string) => InputFieldValidatorResult; export declare type ThemeName = 'Light' | 'Dark'; export declare type Timezone = 'Etc/UTC' | CustomTimezones; +export declare type TradingDialogCustomField = TextWithCheckboxFieldMetaInfo | CustomComboBoxMetaInfo; export declare type WatchListSymbolListAddedCallback = (listId: string, symbols: string[]) => void; export declare type WatchListSymbolListRemovedCallback = (listId: string) => void; export declare type WatchListSymbolListRenamedCallback = (listId: string, oldName: string, newName: string) => void; @@ -186,7 +214,7 @@ export interface AccountManagerPage { } export interface AccountManagerSummaryField { text: string; - wValue: IWatchedValueReadonly; + wValue: IWatchedValueReadonly; formatter?: string; } export interface AccountManagerTable { @@ -215,6 +243,20 @@ export interface ActionDescription { export interface ActionDescriptionWithCallback extends ActionDescription { action: (a: ActionDescription) => void; } +export interface AreaStylePreferences { + color1: string; + color2: string; + linecolor: string; + linestyle: number; + linewidth: number; + transparency: number; +} +export interface AvailableZOrderOperations { + bringForwardEnabled: boolean; + bringToFrontEnabled: boolean; + sendBackwardEnabled: boolean; + sendToBackEnabled: boolean; +} export interface Bar { time: number; open: number; @@ -223,16 +265,37 @@ export interface Bar { close: number; volume?: number; } +export interface BarStylePreferences { + upColor: string; + downColor: string; + barColorsOnPrevClose: boolean; + dontDrawOpen: boolean; + thinBars: boolean; +} export interface BaseInputFieldValidatorResult { valid: boolean; } +export interface BaselineStylePreferences { + topFillColor1: string; + topFillColor2: string; + bottomFillColor1: string; + bottomFillColor2: string; + topLineColor: string; + bottomLineColor: string; + topLineWidth: number; + bottomLineWidth: number; + transparency: number; + baseLevelPercentage: number; +} export interface Brackets { stopLoss?: number; takeProfit?: number; + trailingStopPips?: number; } export interface BrokerConfigFlags { showQuantityInsteadOfAmount?: boolean; supportOrderBrackets?: boolean; + supportTrailingStop?: boolean; supportPositions?: boolean; supportPositionBrackets?: boolean; supportTradeBrackets?: boolean; @@ -246,6 +309,7 @@ export interface BrokerConfigFlags { supportPLUpdate?: boolean; supportReducePosition?: boolean; supportReversePosition?: boolean; + supportNativeReversePosition?: boolean; supportMarketOrders?: boolean; supportLimitOrders?: boolean; supportStopOrders?: boolean; @@ -257,6 +321,11 @@ export interface BrokerConfigFlags { supportModifyOrder?: boolean; supportMargin?: boolean; calculatePLUsingLast?: boolean; + supportOrderPreview?: boolean; + supportAddBracketsToExistingOrder?: boolean; + supportBalances?: boolean; + closePositionCancelsOrders?: boolean; + supportOnlyPairPositionBrackets?: boolean; cancellingBracketCancelsParentOrder?: boolean; cancellingOnePositionBracketsCancelsOther?: boolean; requiresFIFOCloseTrades?: boolean; @@ -270,6 +339,22 @@ export interface BrokerCustomUI { showOrderDialog?: (order: PreOrder | Order, focus?: OrderTicketFocusControl) => Promise; showPositionDialog?: (position: Position | Trade, brackets: Brackets, focus?: OrderTicketFocusControl) => Promise; } +export interface CandleStylePreferences { + upColor: string; + downColor: string; + drawWick: boolean; + drawBorder: boolean; + borderColor: string; + borderUpColor: string; + borderDownColor: string; + wickColor: string; + wickUpColor: string; + wickDownColor: string; + barColorsOnPrevClose: boolean; +} +export interface ChangeThemeOptions { + disableUndo: boolean; +} export interface ChartData { id: string; name: string; @@ -278,7 +363,7 @@ export interface ChartData { content: string; } export interface ChartMetaInfo { - id: string; + id: number; name: string; symbol: string; resolution: ResolutionString; @@ -318,6 +403,7 @@ export interface ChartingLibraryWidgetOptions { load_last_chart?: boolean; studies_overrides?: StudyOverrides; customFormatters?: CustomFormatters; + custom_formatters?: CustomFormatters; overrides?: Overrides; snapshot_url?: string; preset?: 'mobile'; @@ -348,10 +434,12 @@ export interface CreateShapeOptions { overrides?: TOverrides; zOrder?: 'top' | 'bottom'; showInObjectsTree?: boolean; + ownerStudyId?: EntityId; } export interface CreateStudyOptions { checkLimit?: boolean; priceScale?: StudyPriceScale; + disableUndo?: boolean; } export interface CreateStudyTemplateOptions { saveInterval?: boolean; @@ -391,10 +479,12 @@ export interface CustomInputFieldMetaInfo { inputType: string; id: string; title: string; + preventModify?: boolean; placeHolder?: string; value?: any; validator?: InputFieldValidator; customInfo?: any; + saveToSettings?: boolean; } export interface CustomInputFieldsValues { [fieldId: string]: TextWithCheckboxValue | string | any; @@ -438,6 +528,10 @@ export interface DatafeedSymbolType { name: string; value: string; } +export interface DateOrDateTime { + dateOrDateTime: number; + hasTime: boolean; +} export interface DefaultContextMenuActionsParams { } export interface DefaultDropdownActionsParams { @@ -501,6 +595,28 @@ export interface GrayedObject { type: 'drawing' | 'study'; name: string; } +export interface HeikinAshiStylePreferences { + upColor: string; + downColor: string; + drawWick: boolean; + drawBorder: boolean; + borderColor: string; + borderUpColor: string; + borderDownColor: string; + wickColor: string; + wickUpColor: string; + wickDownColor: string; + showRealLastPrice: boolean; + barColorsOnPrevClose: boolean; +} +export interface HiLoStylePreferences { + color: string; + showBorders: boolean; + borderColor: string; + showLabels: boolean; + labelColor: string; + fontSize: number; +} export interface HistoryDepth { resolutionBack: ResolutionBackValues; intervalBack: number; @@ -509,8 +625,20 @@ export interface HistoryMetadata { noData: boolean; nextTime?: number | null; } +export interface HollowCandleStylePreferences { + upColor: string; + downColor: string; + drawWick: boolean; + drawBorder: boolean; + borderColor: string; + borderUpColor: string; + borderDownColor: string; + wickColor: string; + wickUpColor: string; + wickDownColor: string; +} export interface IBrokerCommon { - chartContextMenuActions(context: ITradeContext, options?: DefaultContextMenuActionsParams): Promise; + chartContextMenuActions(context: TradeContext, options?: DefaultContextMenuActionsParams): Promise; isTradable(symbol: string): Promise; connectionStatus(): ConnectionStatus; orders(): Promise; @@ -527,15 +655,14 @@ export interface IBrokerCommon { export interface IBrokerConnectionAdapterFactory { createDelegate(): IDelegate; createWatchedValue(value?: T): IWatchedValue; - createPriceFormatter(priceScale: number, minMove: number, fractional: boolean, minMove2: number): IFormatter; + createPriceFormatter(priceScale?: number, minMove?: number, fractional?: boolean, minMove2?: number): IFormatter; } export interface IBrokerConnectionAdapterHost { factory: IBrokerConnectionAdapterFactory; - connectionStatusUpdate(status: ConnectionStatus, message?: string): void; defaultFormatter(symbol: string, alignToMinMove: boolean): Promise; numericFormatter(decimalPlaces: number): Promise; quantityFormatter(decimalPlaces?: number): Promise; - defaultContextMenuActions(context: ITradeContext, params?: DefaultContextMenuActionsParams): Promise; + defaultContextMenuActions(context: TradeContext, params?: DefaultContextMenuActionsParams): Promise; defaultDropdownMenuActions(options?: Partial): ActionMetaInfo[]; floatingTradingPanelVisibility(): IWatchedValue; domPanelVisibility(): IWatchedValue; @@ -543,6 +670,7 @@ export interface IBrokerConnectionAdapterHost { silentOrdersPlacement(): IWatchedValue; patchConfig(config: Partial): void; patchOrderDialogOptions(options: OrderDialogOptions): void; + patchPositionDialogOptions(options: PositionDialogOptions): void; setDurations(durations: OrderDurationMetaInfo[]): void; orderUpdate(order: Order, isHistoryUpdate?: boolean): void; orderPartialUpdate(id: string, orderChanges: Partial): void; @@ -559,15 +687,15 @@ export interface IBrokerConnectionAdapterHost { equityUpdate(equity: number): void; marginAvailableUpdate(marginAvailable: number): void; domeUpdate(symbol: string, equity: DOMData): void; - showOrderDialog(order: T, handler: (order: T) => Promise, focus?: OrderTicketFocusControl, options?: OrderDialogOptions): Promise; + showOrderDialog?(order: T, focus?: OrderTicketFocusControl): Promise; + showNotification(title: string, text: string, notificationType?: NotificationType): void; showCancelOrderDialog(orderId: string, handler: () => Promise): Promise; - showCancelMultipleOrdersDialog(symbol: string, side: Side | undefined, qty: number, handler: () => Promise): Promise; + showCancelMultipleOrdersDialog(symbol: string, side: Side, qty: number, handler: () => Promise): Promise; showCancelBracketsDialog(orderId: string, handler: () => Promise): Promise; showCancelMultipleBracketsDialog(orderId: string, handler: () => Promise): Promise; - showClosePositionDialog(positionId: string, handler: () => Promise): Promise; - showReversePositionDialog(position: Position, handler: () => Promise): Promise; - showPositionBracketsDialog(position: Position | Trade, brackets: Brackets, focus: OrderTicketFocusControl | null, handler: (brackets: Brackets) => Promise): Promise; - showNotification(title: string, text: string, notificationType?: NotificationType): void; + showClosePositionDialog(positionId: string, handler: () => Promise): Promise; + showReversePositionDialog(position: string, handler: () => Promise): Promise; + showPositionBracketsDialog(position: Position | Trade, brackets: Brackets, focus: OrderTicketFocusControl): Promise; setButtonDropdownActions(descriptions: ActionMetaInfo[]): void; activateBottomWidget(): Promise; showTradingProperties(): void; @@ -582,15 +710,16 @@ export interface IBrokerTerminal extends IBrokerWithoutRealtime { export interface IBrokerWithoutRealtime extends IBrokerCommon { subscribeDOME?(symbol: string): void; unsubscribeDOME?(symbol: string): void; - placeOrder(order: PreOrder): Promise; + placeOrder(order: PreOrder, confirmId?: string): Promise; + previewOrder?(order: PreOrder): Promise; modifyOrder(order: Order): Promise; cancelOrder(orderId: string): Promise; cancelOrders(symbol: string, side: Side | undefined, ordersIds: string[]): Promise; reversePosition?(positionId: string): Promise; closePosition?(positionId: string): Promise; closeTrade?(tradeId: string): Promise; - editPositionBrackets?(positionId: string, brackets?: Brackets): Promise; - editTradeBrackets?(tradeId: string, brackets?: Brackets): Promise; + editPositionBrackets?(positionId: string, brackets: Brackets, customFields?: CustomInputFieldsValues): Promise; + editTradeBrackets?(tradeId: string, brackets: Brackets): Promise; /** * @deprecated Brokers should always send PL and equity updates */ @@ -612,7 +741,7 @@ export interface IChartWidgetApi { onIntervalChanged(): ISubscription<(interval: ResolutionString, timeFrameParameters: { timeframe?: string; }) => void>; - onVisibleRangeChanged(): ISubscription<() => void>; + onVisibleRangeChanged(): ISubscription<(range: VisibleTimeRange) => void>; dataReady(callback: () => void): boolean; crossHairMoved(callback: (params: CrossHairMovedEventParams) => void): void; setVisibleRange(range: VisibleTimeRange, options?: SetVisibleRangeOptions): Promise; @@ -626,6 +755,11 @@ export interface IChartWidgetApi { setChartType(type: SeriesStyle): void; getAllShapes(): EntityInfo[]; getAllStudies(): EntityInfo[]; + availableZOrderOperations(sources: ReadonlyArray): AvailableZOrderOperations; + sendToBack(entities: ReadonlyArray): void; + bringToFront(sources: ReadonlyArray): void; + bringForward(sources: ReadonlyArray): void; + sendBackward(sources: ReadonlyArray): void; /** * @deprecated Use shape/study API instead ([getStudyById] / [getShapeById]) */ @@ -666,6 +800,9 @@ export interface IChartWidgetApi { zoomOut(): void; setZoomEnabled(enabled: boolean): void; setScrollEnabled(enabled: boolean): void; + shapesGroupController(): IShapesGroupControllerApi; + barTimeToEndOfPeriod(unixTime: number): number; + endOfPeriodToBarTime(unixTime: number): number; } export interface IChartingLibraryWidget { headerReady(): Promise; @@ -706,12 +843,17 @@ export interface IChartingLibraryWidget { layout(): LayoutType; setLayout(layout: LayoutType): void; layoutName(): string; - changeTheme(themeName: ThemeName): void; + changeTheme(themeName: ThemeName, options?: ChangeThemeOptions): void; + getTheme(): ThemeName; takeScreenshot(): void; lockAllDrawingTools(): IWatchedValue; hideAllDrawingTools(): IWatchedValue; magnetEnabled(): IWatchedValue; magnetMode(): IWatchedValue; + symbolSync(): IWatchedValue; + intervalSync(): IWatchedValue; + crosshairSync(): IWatchedValue; + timeSync(): IWatchedValue; undoRedoState(): UndoRedoState; } export interface IDatafeedChartApi { @@ -768,9 +910,9 @@ export interface IExternalDatafeed { } export interface IExternalSaveLoadAdapter { getAllCharts(): Promise; - removeChart(chartId: string): Promise; - saveChart(chartData: ChartData): Promise; - getChartContent(chartId: string): Promise; + removeChart(id: T): Promise; + saveChart(chartData: ChartData): Promise; + getChartContent(chartId: number): Promise; getAllStudyTemplates(): Promise; removeStudyTemplate(studyTemplateInfo: StudyTemplateMetaInfo): Promise; saveStudyTemplate(studyTemplateData: StudyTemplateData): Promise; @@ -929,6 +1071,8 @@ export interface IPriceScaleApi { setInverted(isInverted: boolean): void; getVisiblePriceRange(): VisiblePriceRange | null; setVisiblePriceRange(range: VisiblePriceRange): void; + hasMainSeries(): boolean; + getStudies(): EntityId[]; } export interface ISelectionApi { add(entities: EntityId[]): void; @@ -939,6 +1083,7 @@ export interface ISelectionApi { isEmpty(): boolean; clear(): void; onChanged(): ISubscription<() => void>; + canBeAddedToSelection(entity: EntityId): boolean; } export interface ISeriesApi { isUserEditEnabled(): boolean; @@ -950,18 +1095,41 @@ export interface ISeriesApi { detachToRight(): void; detachToLeft(): void; detachNoScale(): void; - moveToOtherSourceScale(entityId: EntityId): void; + changePriceScale(newPriceScale: SeriesPriceScale): void; isVisible(): boolean; setVisible(visible: boolean): void; bringToFront(): void; sendToBack(): void; entityId(): EntityId; + chartStyleProperties(chartStyle: T): SeriesPreferencesMap[T]; + setChartStyleProperties(chartStyle: T, newPrefs: Partial): void; } export interface ISettingsAdapter { initialSettings?: InitialSettingsMap; setValue(key: string, value: string): void; removeValue(key: string): void; } +export interface IShapesGroupControllerApi { + createGroupFromSelection(): ShapesGroupId; + removeGroup(groupId: ShapesGroupId): void; + groups(): ReadonlyArray; + shapesInGroup(groupId: ShapesGroupId): ReadonlyArray; + excludeShapeFromGroup(groupId: ShapesGroupId, shapeId: EntityId): void; + availableZOrderOperations(groupId: ShapesGroupId): AvailableZOrderOperations; + bringToFront(groupId: ShapesGroupId): void; + sendToBack(groupId: ShapesGroupId): void; + bringForward(groupId: ShapesGroupId): void; + sendBackward(groupId: ShapesGroupId): void; + insertAfter(groupId: ShapesGroupId, target: ShapesGroupId | EntityId): void; + insertBefore(groupId: ShapesGroupId, target: ShapesGroupId | EntityId): void; + setGroupVisibility(groupId: ShapesGroupId, value: boolean): void; + groupVisibility(groupId: ShapesGroupId): GroupVisibilityState; + setGroupLock(groupId: ShapesGroupId, value: boolean): void; + groupLock(groupId: ShapesGroupId): GroupLockState; + getGroupName(groupId: ShapesGroupId): string; + setGroupName(groupId: ShapesGroupId, name: string): void; + canBeGroupped(shapes: ReadonlyArray): boolean; +} export interface IStudyApi { isUserEditEnabled(): boolean; setUserEditEnabled(enabled: boolean): void; @@ -972,7 +1140,7 @@ export interface IStudyApi { mergeDown(): void; unmergeUp(): void; unmergeDown(): void; - changePriceScale(newPriceScale: StudyPriceScale): void; + changePriceScale(newPriceScale: StudyPriceScale | EntityId): void; isVisible(): boolean; setVisible(visible: boolean): void; bringToFront(): void; @@ -984,13 +1152,6 @@ export interface ISubscription { unsubscribe(obj: object | null, member: TFunc): void; unsubscribeAll(obj: object | null): void; } -export interface ITradeContext { - symbol: string; - displaySymbol: string; - value: number | null; - formattedValue: string; - last: number; -} export interface IWatchedValue extends IWatchedValueReadonly { value(): T; setValue(value: T, forceUpdate?: boolean): void; @@ -1017,11 +1178,20 @@ export interface InstrumentInfo { domVolumePrecision?: number; leverage?: string; marginRate?: number; + limitPriceStep?: number; + stopPriceStep?: number; + allowedDurations?: string[]; } export interface IsTradableResult { tradable: boolean; reason?: string; } +export interface KagiStylePreferences { + upColor: string; + downColor: string; + upColorProjection: string; + downColorProjection: string; +} export interface LibrarySymbolInfo { /** * Symbol Name @@ -1039,6 +1209,14 @@ export interface LibrarySymbolInfo { * @example "1700-0200" */ session: string; + /** + * @example "20181105,20181107,20181112" + */ + holidays?: string; + /** + * @example "1900F4-2350F4,1000-1845:20181113;1000-1400:20181114" + */ + corrections?: string; /** * Traded exchange * @example "NYSE" @@ -1104,6 +1282,22 @@ export interface LibrarySymbolInfo { industry?: string; currency_code?: string; } +export interface LineBreakStylePreferences { + upColor: string; + downColor: string; + borderUpColor: string; + borderDownColor: string; + upColorProjection: string; + downColorProjection: string; + borderUpColorProjection: string; + borderDownColorProjection: string; +} +export interface LineStylePreferences { + color: string; + linestyle: number; + linewidth: number; + styleType: number; +} export interface LoadingScreenOptions { foregroundColor?: string; backgroundColor?: string; @@ -1151,8 +1345,7 @@ export interface NewsProvider { export interface NumericFormattingParams { decimal_sign: string; } -export interface OrderDialogOptions { - customFields?: OrderDialogCustomField[]; +export interface OrderDialogOptions extends TradingDialogOptions { } export interface OrderDuration { /** @@ -1168,6 +1361,22 @@ export interface OrderDurationMetaInfo { name: string; value: string; } +export interface OrderOrPositionMessage { + type: OrderOrPositionMessageType; + text: string; +} +export interface OrderPreviewInfoItem { + title: string; + value: string; +} +export interface OrderPreviewResult { + info: OrderPreviewInfoItem[]; + confirmId?: string; +} +export interface OrderRule { + id: string; + severity: 'warning' | 'error'; +} export interface OrderTableColumn extends AccountManagerColumn { supportedStatusFilters?: OrderStatusFilter[]; } @@ -1175,6 +1384,9 @@ export interface OrderWithParent extends PlacedOrder { parentId: string; parentType: ParentType; } +export interface OrderWithParentAndStopType extends OrderWithParent { + stopType?: StopType; +} export interface Overrides { [key: string]: string | number | boolean; } @@ -1192,16 +1404,31 @@ export interface PlacedOrder extends PreOrder, CustomFields { type: OrderType; side: Side; status: OrderStatus; + message?: OrderOrPositionMessage; +} +export interface PlacedOrderWithStopType extends PlacedOrder { + stopType?: StopType; +} +export interface PnFStylePreferences { + upColor: string; + downColor: string; + upColorProjection: string; + downColorProjection: string; } export interface Position { id: string; symbol: string; brokerSymbol?: string; qty: number; + shortQty?: number; + longQty?: number; side: Side; avgPrice: number; + message?: OrderOrPositionMessage; [key: string]: any; } +export interface PositionDialogOptions extends TradingDialogOptions { +} export interface PositiveBaseInputFieldValidatorResult extends BaseInputFieldValidatorResult { valid: true; } @@ -1215,6 +1442,7 @@ export interface PreOrder { stopPrice?: number; limitPrice?: number; stopLoss?: number; + trailingStopPips?: number; takeProfit?: number; duration?: OrderDuration; customFields?: CustomInputFieldsValues; @@ -1248,7 +1476,19 @@ export interface QuotesBase { pricescale: number; description: string; } -export interface RestBrokerMetaInfo { +export interface RenkoStylePreferences { + upColor: string; + downColor: string; + borderUpColor: string; + borderDownColor: string; + upColorProjection: string; + downColorProjection: string; + borderUpColorProjection: string; + borderDownColorProjection: string; + wickUpColor: string; + wickDownColor: string; +} +export interface RestBrokerConnectionInfo { url: string; access_token: string; } @@ -1285,6 +1525,20 @@ export interface SeriesFieldDescriptor { sourceType: 'series'; plotTitle: string; } +export interface SeriesPreferencesMap { + [ChartStyle.Bar]: BarStylePreferences; + [ChartStyle.Candle]: CandleStylePreferences; + [ChartStyle.Line]: LineStylePreferences; + [ChartStyle.Area]: AreaStylePreferences; + [ChartStyle.Renko]: RenkoStylePreferences; + [ChartStyle.Kagi]: KagiStylePreferences; + [ChartStyle.PnF]: PnFStylePreferences; + [ChartStyle.LineBreak]: LineBreakStylePreferences; + [ChartStyle.HeikinAshi]: HeikinAshiStylePreferences; + [ChartStyle.HollowCandle]: HollowCandleStylePreferences; + [ChartStyle.Baseline]: BaselineStylePreferences; + [ChartStyle.HiLo]: HiLoStylePreferences; +} export interface SetVisibleRangeOptions { applyDefaultRightMargin?: boolean; percentRightMargin?: number; @@ -1294,6 +1548,8 @@ export interface SingleBrokerMetaInfo { customNotificationFields?: string[]; durations?: OrderDurationMetaInfo[]; orderDialogOptions?: OrderDialogOptions; + positionDialogOptions?: PositionDialogOptions; + orderRules?: OrderRule[]; customUI?: BrokerCustomUI; } export interface SortingParameters { @@ -1387,7 +1643,7 @@ export interface TableElementFormatter { format: TableElementFormatFunction; } export interface TableFormatterInputs { - value: number | string | Side | OrderType | OrderStatus; + value: number | string | Side | OrderType | OrderStatus | DateOrDateTime; prevValue?: number | undefined; row: TableRow; $container: JQuery; @@ -1439,10 +1695,20 @@ export interface Trade extends CustomFields { side: Side; price: number; } +export interface TradeContext { + symbol: string; + displaySymbol: string; + value: number | null; + formattedValue: string; + last: number; +} export interface TradingCustomization { position: Overrides; order: Overrides; } +export interface TradingDialogOptions { + customFields?: TradingDialogCustomField[]; +} export interface TradingQuotes { trade?: number; size?: number; @@ -1451,15 +1717,18 @@ export interface TradingQuotes { ask?: number; ask_size?: number; spread?: number; + isDelayed?: boolean; } export interface TradingTerminalWidgetOptions extends ChartingLibraryWidgetOptions { brokerConfig?: SingleBrokerMetaInfo; - restConfig?: RestBrokerMetaInfo; + broker_config?: SingleBrokerMetaInfo; + restConfig?: RestBrokerConnectionInfo; widgetbar?: WidgetBarParams; rss_news_feed?: RssNewsFeedParams; news_provider?: NewsProvider; trading_customization?: TradingCustomization; brokerFactory?(host: IBrokerConnectionAdapterHost): IBrokerWithoutRealtime | IBrokerTerminal; + broker_factory?(host: IBrokerConnectionAdapterHost): IBrokerWithoutRealtime | IBrokerTerminal; } export interface UndoRedoState { enableUndo: boolean; diff --git a/charting_library/charting_library.min.js b/charting_library/charting_library.min.js index 9a0481c9..5c2408b5 100644 --- a/charting_library/charting_library.min.js +++ b/charting_library/charting_library.min.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e(t.TradingView={})}(this,function(t){"use strict";var e=Object.assign||function(t){for(var e,o=1,i=arguments.length;o'},t}();window.TradingView=window.TradingView||{},window.TradingView.version=s,t.version=s,t.widget=r,Object.defineProperty(t,"__esModule",{value:!0})}); +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e(t.TradingView={})}(this,function(t){"use strict";var e=function(){return(e=Object.assign||function(t){for(var e,o=1,n=arguments.length;o'},t}();window.TradingView=window.TradingView||{},window.TradingView.version=r,t.version=r,t.widget=s,Object.defineProperty(t,"__esModule",{value:!0})}); diff --git a/charting_library/datafeed-api.d.ts b/charting_library/datafeed-api.d.ts index 1f243cf7..dfd0500c 100644 --- a/charting_library/datafeed-api.d.ts +++ b/charting_library/datafeed-api.d.ts @@ -1,3 +1,19 @@ +/** + * This is the generic type useful for declaring a nominal type, + * which does not structurally matches with the base type and + * the other types declared over the same base type + * + * Usage: + * @example + * type Index = Nominal; + * // let i: Index = 42; // this fails to compile + * let i: Index = 42 as Index; // OK + * @example + * type TagName = Nominal; + */ +export declare type Nominal = T & { + [Symbol.species]: Name; +}; export declare type DomeCallback = (data: DOMData) => void; export declare type ErrorCallback = (reason: string) => void; export declare type GetMarksCallback = (marks: T[]) => void; @@ -7,7 +23,7 @@ export declare type OnReadyCallback = (configuration: DatafeedConfiguration) => export declare type QuoteData = QuoteOkData | QuoteErrorData; export declare type QuotesCallback = (data: QuoteData[]) => void; export declare type ResolutionBackValues = 'D' | 'M'; -export declare type ResolutionString = string; +export declare type ResolutionString = Nominal; export declare type ResolveCallback = (symbolInfo: LibrarySymbolInfo) => void; export declare type SearchSymbolsCallback = (items: SearchSymbolResultItem[]) => void; export declare type SeriesFormat = 'price' | 'volume'; @@ -117,6 +133,14 @@ export interface LibrarySymbolInfo { * @example "1700-0200" */ session: string; + /** + * @example "20181105,20181107,20181112" + */ + holidays?: string; + /** + * @example "1900F4-2350F4,1000-1845:20181113;1000-1400:20181114" + */ + corrections?: string; /** * Traded exchange * @example "NYSE" diff --git a/charting_library/static/ar-tv-chart.37fbf462d076e305ceee.html b/charting_library/static/ar-tv-chart.37fbf462d076e305ceee.html deleted file mode 100644 index 91529e32..00000000 --- a/charting_library/static/ar-tv-chart.37fbf462d076e305ceee.html +++ /dev/null @@ -1 +0,0 @@ -
\ No newline at end of file diff --git a/charting_library/static/ar-tv-chart.df1e6a6876536645d8cf.html b/charting_library/static/ar-tv-chart.df1e6a6876536645d8cf.html new file mode 100644 index 00000000..7203d3fb --- /dev/null +++ b/charting_library/static/ar-tv-chart.df1e6a6876536645d8cf.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/charting_library/static/bundles/0.1d4cbcaddbec7d8c5363.js b/charting_library/static/bundles/0.1d4cbcaddbec7d8c5363.js deleted file mode 100644 index 1a9f745b..00000000 --- a/charting_library/static/bundles/0.1d4cbcaddbec7d8c5363.js +++ /dev/null @@ -1,2 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[0],{"29gu":function(e,t,o){"use strict";var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s=o("uOxu").getLogger("CommonUI.CreateTVBlockPlugin");e.exports.createTvBlockPlugin=function(e){if(e)return function(t,o,n){function s(t,o){return o?e[t](l,o):e[t](l)}var a,l=$(this);return"get"===t?"function"==typeof e[a=o]?s(a,n):e[a]:e[t]?l.each(function(){return s(t,void 0)}):l}},e.exports.createTvBlockWithInstance=function(e,t){function o(e,t,o){return void 0===o?e[t]():e[t](o)}if(e&&t)return e=e.toString(),function(a,l,i){var c,r,d;return"get"===a?c=l:(r=l,"object"===(void 0===a?"undefined":n(a))&&void 0===l?(r=a,a="init"):"string"!=typeof a&&(a="init")),"getInstance"===a?$(this).eq(0).data(e):"destroy"===a?(d=$(this).eq(0).data(e))?void("function"==typeof d.destroy?(o(d,"destroy",r),$(this).eq(0).removeData(e)):s.logError("[Block Plugin] "+e+" does not support destroy command")):void console.warn("[Block Plugin] Trying to execute destroy method of "+e+" but it has not been inited"):"get"===a?(d=$(this).eq(0).data(e))?"function"==typeof d[c]?o(d,c,i):d[c]:void console.warn("[Block Plugin] Trying to get prop or execute method of "+e+" but it has not been inited"):$(this).each(function(){var n=$(this),l=n.data(e);void 0===l&&(l=void 0===r?t(n):t(n,r),n.data(e,l)),"init"!==a&&("function"==typeof l[a]?o(l,a,r):s.logError("[Block Plugin] "+e+" does not support command "+a))})}}},QwKQ:function(e,t,o){"use strict";(function(n){var s,a,l,i,c,r;Object.defineProperty(t,"__esModule",{value:!0}),s=function(){function e(e,t){var o,n;for(o=0;o{{#labelLeft}}{{labelLeft}}{{/labelLeft}}{{> inputWrapper }}{{#labelRight}}{{labelRight}}{{/labelRight}}{{/hasLabel}}{{^hasLabel}}{{> inputWrapper }}{{/hasLabel}}',inputWrapper:'<{{ tag }} class="{{ customClass }}{{#disabled}} i-disabled{{/disabled}}">{{^hasCheckbox}}{{> checkbox }}{{/hasCheckbox}}{{> box }}{{> ripple }}',checkbox:'',checkboxClass:"{{ customClass }}__input",box:''+o("aLUT")+"",ripple:''},c="i-inited",r=function(){function e(t){ -var o,n=t.customClass,s=void 0===n?"tv-control-checkbox":n,a=t.$checkbox,i=t.tag,r=t.id,d=t.name,u=t.checked,b=t.disabled,h=t.labelLeft,p=t.labelRight,f=t.labelAddClass,k=t.boxAddClass;if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.$el=null,void 0===i&&(i=h||p?"span":"label"),o=a instanceof $&&!!a.length){if(!a.is("input[type=checkbox]"))return void l.logError("`$checkbox` need to be input[type=checkbox]");if(a.hasClass(c))return;this._setInputId(a,r),this._setInputClass(a,s),this._setInputName(a,d),this._setInputChecked(a,u),this._setInputDisabled(a,b),u=!!a.prop("checked"),b=!!a.attr("disabled")}this.$el=this.render({$checkbox:a,hasCheckbox:o,customClass:s,tag:i,id:r,name:d,checked:u,disabled:b,labelLeft:h,labelRight:p,hasLabel:h||p,labelAddClass:f,boxAddClass:k}),this.$checkbox=o?a:this.$el.find("input[type=checkbox]")}return s(e,[{key:"_setInputId",value:function(e,t){void 0!==t&&e.attr("id",t)}},{key:"_setInputClass",value:function(e,t){var o=n.render(i.checkboxClass,{customClass:t});e.addClass(o)}},{key:"_setInputName",value:function(e,t){void 0!==t&&e.attr("name",t)}},{key:"_setInputChecked",value:function(e,t){void 0!==t&&e.prop("checked",!!t)}},{key:"_setInputDisabled",value:function(e,t){void 0!==t&&(t?e.setAttribute("disabled","disabled"):e.removeAttr("disabled"))}},{key:"render",value:function(e){var t=e.$checkbox,o=$(n.render(i.labelWrapper,e,i));return e.hasCheckbox&&(o.insertBefore(t),o.find("."+e.customClass).andSelf().filter("."+e.customClass).eq(0).prepend(t.detach()),t.addClass(c)),o}},{key:"checked",set:function(e){this._setInputChecked(this.$checkbox,!!e)},get:function(){return!!this.$checkbox.prop("checked")}}]),e}(),$.fn.tvControlCheckbox=(0,a.createTvBlockWithInstance)("tv-control-checkbox",function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new r(TradingView.mergeObj(t,{$checkbox:e}))}),t.default=r,e.exports=t.default}).call(this,o("OiQe"))},aLUT:function(e,t){e.exports=''},"b6p+":function(e,t,o){}}]); \ No newline at end of file diff --git a/charting_library/static/bundles/0.c305d43fee7907b4b5da.js b/charting_library/static/bundles/0.c305d43fee7907b4b5da.js new file mode 100644 index 00000000..80198244 --- /dev/null +++ b/charting_library/static/bundles/0.c305d43fee7907b4b5da.js @@ -0,0 +1,2 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[0],{"+EG+":function(t,e,n){"use strict";var o,r,i,s;n.d(e,"a",function(){return i}),n.d(e,"b",function(){return s}),o=n("mrSG"),r=n("q1tI"),i=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Object(o.__extends)(e,t),e.prototype.shouldComponentUpdate=function(){return!1},e.prototype.render=function(){return r.createElement("div",{style:{position:"fixed",zIndex:150,left:0,top:0},ref:this.props.reference})},e}(r.Component),s=r.createContext(null)},"8Rai":function(t,e,n){"use strict";function o(t){var e=t.click,n=t.mouseDown,o=t.touchEnd,u=t.touchStart,c=t.handler,a=t.ownerDocument,d=void 0===a?document:a,p=Object(r.useRef)(null),l=Object(r.useRef)(new i.CustomEvent("timestamp").timeStamp);return Object(r.useLayoutEffect)(function(){var t={click:e,mouseDown:n,touchEnd:o,touchStart:u};return Object(s.a)(l.current,p.current,c,d,t)},[e,n,o,u,c]),p}var r,i,s;n.d(e,"a",function(){return o}),r=n("q1tI"),i=n("efOF"),s=n("R5JZ")},AiMB:function(t,e,n){"use strict";var o,r,i,s,u,c,a,d;n.d(e,"a",function(){return a}),n.d(e,"b",function(){return d}),o=n("mrSG"),r=n("q1tI"),i=n("i8i4"),s=n("0waE"),u=n("jAh7"),c=n("+EG+"),a=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._uuid=Object(s.guid)(),e}return Object(o.__extends)(e,t),e.prototype.componentWillUnmount=function(){this._manager().removeWindow(this._uuid)},e.prototype.render=function(){var t=this._manager().ensureWindow(this._uuid);return t.style.top=this.props.top||"",t.style.bottom=this.props.bottom||"",t.style.left=this.props.left||"",t.style.right=this.props.top||"",t.style.pointerEvents=this.props.pointerEvents||null,i.createPortal(r.createElement(d.Provider,{value:this},this.props.children),t)},e.prototype.moveToTop=function(){this._manager().moveToTop(this._uuid)},e.prototype._manager=function(){return null===this.context?Object(u.getRootOverlapManager)():this.context},e.contextType=c.b,e}(r.PureComponent),d=r.createContext(null)},QpNh:function(t,e,n){"use strict";function o(t){var e,n,o,i,s,u=Object.entries(t).filter(r),c={};for(e=0,n=u;er.timeStamp)){var i=r.target;void 0!==n&&null!==e&&null!==i&&i.ownerDocument===o&&(e.contains(i)||n(r))}}return r.click&&o.addEventListener("click",i,!1),r.mouseDown&&o.addEventListener("mousedown",i,!1),r.touchEnd&&o.addEventListener("touchend",i,!1),r.touchStart&&o.addEventListener("touchstart",i,!1),function(){o.removeEventListener("click",i,!1),o.removeEventListener("mousedown",i,!1),o.removeEventListener("touchend",i,!1),o.removeEventListener("touchstart",i,!1)}}n.d(e,"a",function(){return o})},jAh7:function(t,e,n){"use strict";function o(t){var e,n,o;return void 0===t&&(t=document),null!==(e=t.getElementById("overlap-manager-root"))?Object(r.ensureDefined)(u.get(e)):(n=new s(t), +o=function(t){var e=t.createElement("div");return e.style.position="absolute",e.style.zIndex=150..toString(),e.style.top="0px",e.style.left="0px",e.id="overlap-manager-root",e}(t),u.set(o,n),n.setContainer(o),t.body.appendChild(o),n)}var r,i,s,u;n.r(e),n.d(e,"OverlapManager",function(){return s}),n.d(e,"getRootOverlapManager",function(){return o}),r=n("Eyy1"),i=function(){function t(){this._storage=[]}return t.prototype.add=function(t){this._storage.push(t)},t.prototype.remove=function(t){this._storage=this._storage.filter(function(e){return t!==e})},t.prototype.has=function(t){return this._storage.includes(t)},t.prototype.getItems=function(){return this._storage},t}(),s=function(){function t(t){void 0===t&&(t=document),this._storage=new i,this._windows=new Map,this._index=0,this._document=t,this._container=t.createDocumentFragment()}return t.prototype.setContainer=function(t){var e=this._container,n=null===t?this._document.createDocumentFragment():t;!function(t,e){Array.from(t.childNodes).forEach(function(t){t.nodeType===Node.ELEMENT_NODE&&e.appendChild(t)})}(e,n),this._container=n},t.prototype.registerWindow=function(t){this._storage.has(t)||this._storage.add(t)},t.prototype.ensureWindow=function(t,e){var n,o;return void 0===e&&(e={position:"fixed"}),void 0!==(n=this._windows.get(t))?n:(this.registerWindow(t),(o=this._document.createElement("div")).style.position=e.position,o.style.zIndex=this._index.toString(),o.dataset.id=t,this._container.appendChild(o),this._windows.set(t,o),++this._index,o)},t.prototype.unregisterWindow=function(t){this._storage.remove(t);var e=this._windows.get(t);void 0!==e&&(null!==e.parentElement&&e.parentElement.removeChild(e),this._windows.delete(t))},t.prototype.getZindex=function(t){var e=this.ensureWindow(t);return parseInt(e.style.zIndex||"0")},t.prototype.moveToTop=function(t){this.getZindex(t)!==this._index&&(this.ensureWindow(t).style.zIndex=(++this._index).toString())},t.prototype.removeWindow=function(t){this.unregisterWindow(t)},t}(),u=new WeakMap},jjrI:function(t,e,n){"use strict";function o(t){var e=t.className,n=t.icon,o=void 0===n?"":n,i=t.title,u=t.onClick,c=t.onMouseDown,a=t.onMouseUp,d=t.onMouseLeave,p=t.reference,l=Object(r.__rest)(t,["className","icon","title","onClick","onMouseDown","onMouseUp","onMouseLeave","reference"]);return s.a.createElement("span",Object(r.__assign)({},l,{title:i,className:e,dangerouslySetInnerHTML:{__html:o},onClick:u,onMouseDown:c,onMouseUp:a,onMouseLeave:d,ref:p}))}var r,i,s;n.d(e,"a",function(){return o}),r=n("mrSG"),i=n("q1tI"),s=n.n(i)}}]); \ No newline at end of file diff --git a/charting_library/static/bundles/eraser.0579d40b812fa2c3ffe72e5803a6e14c.cur b/charting_library/static/bundles/0579d40b812fa2c3ffe72e5803a6e14c.cur similarity index 100% rename from charting_library/static/bundles/eraser.0579d40b812fa2c3ffe72e5803a6e14c.cur rename to charting_library/static/bundles/0579d40b812fa2c3ffe72e5803a6e14c.cur diff --git a/charting_library/static/bundles/1.2fa13f88d2bf6ae6f3f0.css b/charting_library/static/bundles/1.2fa13f88d2bf6ae6f3f0.css deleted file mode 100644 index 53ae2e3c..00000000 --- a/charting_library/static/bundles/1.2fa13f88d2bf6ae6f3f0.css +++ /dev/null @@ -1 +0,0 @@ -.tv-control-checkbox{cursor:pointer;-webkit-tap-highlight-color:transparent}.tv-control-checkbox--in-actions{max-width:50%}@media screen and (max-width:479px){.tv-control-checkbox--in-actions{max-width:none}}.tv-control-checkbox,.tv-control-checkbox__label{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tv-control-checkbox--nowrap,.tv-control-checkbox__label--nowrap{white-space:nowrap}.tv-control-checkbox__input{position:absolute;top:0;left:0;width:18px;height:18px;opacity:0}.tv-control-checkbox__box{display:block;width:18px;height:18px;line-height:1;border-radius:2px;box-sizing:border-box;pointer-events:none;transition:background-color .35s ease}.tv-control-checkbox__box:before{top:50%;left:50%;margin-top:-9px;margin-left:-9px;border-radius:2px;background-color:transparent;transform:scale(1);transition:transform .35s ease,background-color .35s ease,border-radius .35s ease}.tv-control-checkbox__box:after,.tv-control-checkbox__box:before{content:"";display:block;position:absolute;width:18px;height:18px}.tv-control-checkbox__box:after{top:0;left:0;border:2px solid #758696;border-radius:2px;box-sizing:border-box;transition:border-color .35s ease}.tv-control-checkbox__box svg{display:block;position:absolute;top:50%;left:50%;margin-top:-6px;margin-left:-6px;width:12px;height:12px;stroke:transparent;transform:scale(0);transition:stroke .35s ease 1ms,transform .35s ease 1ms}.tv-control-checkbox__label{white-space:normal;margin-right:10px}.tv-control-checkbox__label--two-lines{width:155px}.tv-control-checkbox__label--nowrap{white-space:nowrap}.tv-control-checkbox__label--lil-line-height{line-height:16px;min-width:50%;max-width:80%}.tv-control-checkbox__label+.tv-control-checkbox{margin-left:0}.tv-control-checkbox+.tv-control-checkbox__label{margin-right:0;margin-left:10px;max-width:calc(100% - 1ex - 28px)}.tv-control-checkbox:active .tv-control-checkbox__box,.tv-control-checkbox__input:focus+.tv-control-checkbox__box{will-change:background-color}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box{will-change:background-color}}.tv-control-checkbox:active .tv-control-checkbox__box:before,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:before{will-change:transform,border-radius}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box:before{will-change:transform,border-radius}}.tv-control-checkbox:active .tv-control-checkbox__box:after,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{will-change:border-color}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box:after{will-change:border-color;border-color:#627384}}.tv-control-checkbox:active .tv-control-checkbox__box:after,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{border-color:#2196f3}.tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#2196f3}.tv-control-checkbox__input:checked+.tv-control-checkbox__box,.tv-control-checkbox__input:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input:checked+.tv-control-checkbox__box:before{transition-timing-function:cubic-bezier(.215,.61,.355,1)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box:before{border-radius:50%;transform:scale(0)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#2196f3}.tv-control-checkbox__input:checked+.tv-control-checkbox__box svg{stroke:#fff;transform:scale(1);transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-delay:.0875s;will-change:stroke,transform}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#1e88e5}}.tv-control-checkbox:active .tv-control-checkbox__input:checked+.tv-control-checkbox__box,.tv-control-checkbox__input:focus:checked+.tv-control-checkbox__box{background-color:#049ddc}.tv-control-checkbox:active .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input:focus:checked+.tv-control-checkbox__box:after{border-color:#049ddc}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#dadde0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#dadde0}}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#363c4e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-control-checkbox:hover .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#363c4e}}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:before,.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:before{background-color:#f1f3f6;transition:background-color .35s ease}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:before,html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:before{background-color:#2f3241}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box{background-color:#dadde0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box{background-color:#dadde0}}.tv-control-checkbox__ripple{display:block;position:absolute;top:0;right:0;width:100%;height:100%;margin:-10px;padding:10px;overflow:hidden;border-radius:50%;-webkit-mask-image:radial-gradient(circle,#fff 100%,#000 0);mask-image:radial-gradient(circle,#fff 100%,#000 0)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple{background-color:rgba(33,150,243,.25)}.tv-control-checkbox__input[disabled]+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple{background-color:transparent}.tv-control-checkbox.i-error .tv-control-checkbox__box:after{border-color:#ff4a68}.tv-control-checkbox.i-disabled{cursor:default} \ No newline at end of file diff --git a/charting_library/static/bundles/1.2fa13f88d2bf6ae6f3f0.rtl.css b/charting_library/static/bundles/1.2fa13f88d2bf6ae6f3f0.rtl.css deleted file mode 100644 index d6cab171..00000000 --- a/charting_library/static/bundles/1.2fa13f88d2bf6ae6f3f0.rtl.css +++ /dev/null @@ -1 +0,0 @@ -.tv-control-checkbox{cursor:pointer;-webkit-tap-highlight-color:transparent}.tv-control-checkbox--in-actions{max-width:50%}@media screen and (max-width:479px){.tv-control-checkbox--in-actions{max-width:none}}.tv-control-checkbox,.tv-control-checkbox__label{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tv-control-checkbox--nowrap,.tv-control-checkbox__label--nowrap{white-space:nowrap}.tv-control-checkbox__input{position:absolute;top:0;right:0;width:18px;height:18px;opacity:0}.tv-control-checkbox__box{display:block;width:18px;height:18px;line-height:1;border-radius:2px;box-sizing:border-box;pointer-events:none;transition:background-color .35s ease}.tv-control-checkbox__box:before{top:50%;right:50%;margin-top:-9px;margin-right:-9px;border-radius:2px;background-color:transparent;transform:scale(1);transition:transform .35s ease,background-color .35s ease,border-radius .35s ease}.tv-control-checkbox__box:after,.tv-control-checkbox__box:before{content:"";display:block;position:absolute;width:18px;height:18px}.tv-control-checkbox__box:after{top:0;right:0;border:2px solid #758696;border-radius:2px;box-sizing:border-box;transition:border-color .35s ease}.tv-control-checkbox__box svg{display:block;position:absolute;top:50%;right:50%;margin-top:-6px;margin-right:-6px;width:12px;height:12px;stroke:transparent;transform:scale(0);transition:stroke .35s ease 1ms,transform .35s ease 1ms}.tv-control-checkbox__label{white-space:normal;margin-left:10px}.tv-control-checkbox__label--two-lines{width:155px}.tv-control-checkbox__label--nowrap{white-space:nowrap}.tv-control-checkbox__label--lil-line-height{line-height:16px;min-width:50%;max-width:80%}.tv-control-checkbox__label+.tv-control-checkbox{margin-right:0}.tv-control-checkbox+.tv-control-checkbox__label{margin-left:0;margin-right:10px;max-width:calc(100% - 1ex - 28px)}.tv-control-checkbox:active .tv-control-checkbox__box,.tv-control-checkbox__input:focus+.tv-control-checkbox__box{will-change:background-color}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box{will-change:background-color}}.tv-control-checkbox:active .tv-control-checkbox__box:before,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:before{will-change:transform,border-radius}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box:before{will-change:transform,border-radius}}.tv-control-checkbox:active .tv-control-checkbox__box:after,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{will-change:border-color}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box:after{will-change:border-color;border-color:#627384}}.tv-control-checkbox:active .tv-control-checkbox__box:after,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{border-color:#2196f3}.tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#2196f3}.tv-control-checkbox__input:checked+.tv-control-checkbox__box,.tv-control-checkbox__input:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input:checked+.tv-control-checkbox__box:before{transition-timing-function:cubic-bezier(.215,.61,.355,1)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box:before{border-radius:50%;transform:scale(0)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#2196f3}.tv-control-checkbox__input:checked+.tv-control-checkbox__box svg{stroke:#fff;transform:scale(1);transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-delay:.0875s;will-change:stroke,transform}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#1e88e5}}.tv-control-checkbox:active .tv-control-checkbox__input:checked+.tv-control-checkbox__box,.tv-control-checkbox__input:focus:checked+.tv-control-checkbox__box{background-color:#049ddc}.tv-control-checkbox:active .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input:focus:checked+.tv-control-checkbox__box:after{border-color:#049ddc}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#dadde0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#dadde0}}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#363c4e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-control-checkbox:hover .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#363c4e}}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:before,.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:before{background-color:#f1f3f6;transition:background-color .35s ease}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:before,html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:before{background-color:#2f3241}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box{background-color:#dadde0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box{background-color:#dadde0}}.tv-control-checkbox__ripple{display:block;position:absolute;top:0;left:0;width:100%;height:100%;margin:-10px;padding:10px;overflow:hidden;border-radius:50%;-webkit-mask-image:radial-gradient(circle,#fff 100%,#000 0);mask-image:radial-gradient(circle,#fff 100%,#000 0)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple{background-color:rgba(33,150,243,.25)}.tv-control-checkbox__input[disabled]+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple{background-color:transparent}.tv-control-checkbox.i-error .tv-control-checkbox__box:after{border-color:#ff4a68}.tv-control-checkbox.i-disabled{cursor:default} \ No newline at end of file diff --git a/charting_library/static/bundles/1.a0fb67e15fb4c83113fc.js b/charting_library/static/bundles/1.a0fb67e15fb4c83113fc.js new file mode 100644 index 00000000..35c50b70 --- /dev/null +++ b/charting_library/static/bundles/1.a0fb67e15fb4c83113fc.js @@ -0,0 +1,2 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{"6uNr":function(e,t,n){e.exports={menuWrap:"menuWrap-1gEtmoET",isMeasuring:"isMeasuring-FZ0EJCM2",scrollWrap:"scrollWrap-1B5MfTJt",momentumBased:"momentumBased-1Jq4gQt2",menuBox:"menuBox-20sJGjtG",isHidden:"isHidden-2vLQpR1t"}},DTHj:function(e,t,n){"use strict";function r(e){var t=Object(s.useState)(null),n=t[0],r=t[1],o=Object(s.useRef)(null),i=Object(s.useRef)(new Map);return Object(s.useEffect)(function(){return function(){null!==o.current&&clearTimeout(o.current)}},[]),a.a.createElement(g.Provider,{value:{current:n,setCurrent:function(e){null!==o.current&&(clearTimeout(o.current),o.current=null),null===n?r(e):o.current=setTimeout(function(){o.current=null,r(e)},100)},registerSubmenu:function(e,t){return i.current.set(e,t),function(){i.current.delete(e)}},isSubmenuNode:function(e){return Array.from(i.current.values()).some(function(t){return t(e)})}}},e.children)}function o(e){var t=Object(p.ensureNotNull)(Object(s.useContext)(g));return a.a.createElement("div",{className:e.className,onMouseOver:function(e){null!==t.current&&e.target instanceof Node&&(t.isSubmenuNode(e.target)||t.setCurrent(null))},"data-name":"menu-inner"},e.children)}var i,l=n("mrSG"),s=n("q1tI"),a=n.n(s),u=n("TSYQ"),c=n.n(u),p=n("Eyy1"),d=n("Hr11"),h=n("XAms"),f=n("+EG+"),m=n("tWVy"),_=n("jAh7"),v=n("lxNp"),g=a.a.createContext(null),b=n("PN6A"),y=n("6uNr");n.d(t,"a",function(){return i}),i=function(e){function t(t){var n=e.call(this,t)||this;return n._containerRef=null,n._scrollWrapRef=null,n._raf=null,n._manager=new _.OverlapManager,n._hotkeys=null,n._scroll=0,n._handleContainerRef=function(e){n._containerRef=e,"function"==typeof n.props.reference&&n.props.reference(e),"object"==typeof n.props.reference&&(n.props.reference.current=e)},n._handleScrollWrapRef=function(e){return n._scrollWrapRef=e},n._handleMeasure=function(e){var t,r,o,i,l,s,a,u,c,h,f,m,_,v,g,b;n.state.isMeasureValid||(t=n.props.position,o=(r=Object(p.ensureNotNull)(n._containerRef)).getBoundingClientRect(),i=document.documentElement.clientHeight,l=document.documentElement.clientWidth,s=i-0,(a=o.height>s)&&(Object(p.ensureNotNull)(n._scrollWrapRef).style.overflowY="scroll",o=r.getBoundingClientRect()),u=o.width,c=o.height,f=0,m=l-((h="function"==typeof t?t(u,c):t).overrideWidth||u)-0,_=Object(d.clamp)(h.x,f,Math.max(f,m)),v=0,g=i-(h.overrideHeight||c)-0,b=Object(d.clamp)(h.y,v,Math.max(v,g)),n.setState({appearingMenuHeight:h.overrideHeight||(a?s:void 0),appearingMenuWidth:h.overrideWidth,appearingPosition:{x:_,y:b},isMeasureValid:!0},function(){n._restoreScrollPosition(),e&&e()}))},n._restoreScrollPosition=function(){var e=document.activeElement,t=Object(p.ensureNotNull)(n._containerRef);if(null!==e&&t.contains(e))try{e.scrollIntoView()}catch(e){}else Object(p.ensureNotNull)(n._scrollWrapRef).scrollTop=n._scroll},n._resize=function(){null===n._raf&&(n._raf=requestAnimationFrame(function(){n.setState({appearingMenuHeight:void 0,appearingMenuWidth:void 0,appearingPosition:void 0,isMeasureValid:void 0}),n._raf=null}))}, +n._handleGlobalClose=function(){n.props.onClose()},n._handleSlot=function(e){n._manager.setContainer(e)},n._handleScroll=function(){n._scroll=Object(p.ensureNotNull)(n._scrollWrapRef).scrollTop},n.state={},n}return Object(l.__extends)(t,e),t.prototype.componentWillReceiveProps=function(e){this.props.isOpened&&!e.isOpened&&(this.setState({isMeasureValid:void 0}),this._scroll=0)},t.prototype.componentDidMount=function(){var e,t=this;this._handleMeasure(this.props.onOpen),(void 0===(e=this.props.customCloseDelegate)?m.a:e).subscribe(this,this._handleGlobalClose),window.addEventListener("resize",this._resize),this._hotkeys||(this._hotkeys=v.createGroup({desc:"Popup menu"}),this._hotkeys.add({desc:"Close",hotkey:27,handler:function(){return t._handleGlobalClose()}}))},t.prototype.componentDidUpdate=function(){this._handleMeasure()},t.prototype.componentWillUnmount=function(){var e=this.props.customCloseDelegate;(void 0===e?m.a:e).unsubscribe(this,this._handleGlobalClose),window.removeEventListener("resize",this._resize),this._hotkeys&&(this._hotkeys.destroy(),this._hotkeys=null),null!==this._raf&&(cancelAnimationFrame(this._raf),this._raf=null)},t.prototype.render=function(){var e=this.props,t=e.children,n=e.minWidth,i=e.theme,l=void 0===i?y:i,s=e.className,u=e.onMouseOver,p=e.onMouseOut,d=e.onKeyDown,m=this.state,_=m.appearingMenuHeight,v=m.appearingMenuWidth,g=m.appearingPosition,M=m.isMeasureValid;return a.a.createElement(b.a.Provider,{value:this},a.a.createElement(r,null,a.a.createElement(f.b.Provider,{value:this._manager},a.a.createElement("div",{className:c()(s,l.menuWrap,!M&&l.isMeasuring),style:{height:_,left:g&&g.x,minWidth:n,position:"fixed",top:g&&g.y,width:v},ref:this._handleContainerRef,onScroll:this.props.onScroll,onContextMenu:h.b,tabIndex:this.props.tabIndex,onMouseOver:u,onMouseOut:p,onKeyDown:d},a.a.createElement("div",{className:c()(l.scrollWrap,!this.props.noMomentumBasedScroll&&l.momentumBased),style:{overflowY:void 0!==_?"scroll":"auto"},onScroll:this._handleScroll,ref:this._handleScrollWrapRef},a.a.createElement(o,{className:l.menuBox},t)))),a.a.createElement(f.a,{reference:this._handleSlot})))},t.prototype.update=function(){this._resize()},t}(a.a.PureComponent)},PN6A:function(e,t,n){"use strict";var r,o;n.d(t,"a",function(){return o}),r=n("q1tI"),o=n.n(r).a.createContext(null)}}]); \ No newline at end of file diff --git a/charting_library/static/bundles/1.ea828ac684caa2b94a1b.js b/charting_library/static/bundles/1.ea828ac684caa2b94a1b.js deleted file mode 100644 index 5cb2eb09..00000000 --- a/charting_library/static/bundles/1.ea828ac684caa2b94a1b.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[1],[]]); \ No newline at end of file diff --git a/charting_library/static/bundles/10.0501e55a3ef6aa50aec6.js b/charting_library/static/bundles/10.0501e55a3ef6aa50aec6.js deleted file mode 100644 index d57c266b..00000000 --- a/charting_library/static/bundles/10.0501e55a3ef6aa50aec6.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[10],[]]); \ No newline at end of file diff --git a/charting_library/static/bundles/10.38b6e8249c934d50542e.js b/charting_library/static/bundles/10.38b6e8249c934d50542e.js new file mode 100644 index 00000000..46170cf6 --- /dev/null +++ b/charting_library/static/bundles/10.38b6e8249c934d50542e.js @@ -0,0 +1,3 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[10],{"8d0Q":function(e,t,n){"use strict";function o(){var e=Object(c.useState)(!1),t=e[0],n=e[1],o={onMouseOver:function(e){r(e)&&n(!0)},onMouseOut:function(e){r(e)&&n(!1)}};return[t,o]}function r(e){return!e.currentTarget.contains(e.relatedTarget)}var c;n.d(t,"b",function(){return o}),n.d(t,"a",function(){return r}),c=n("q1tI")},"9dlw":function(e,t,n){"use strict";function o(e){var t=e.controller,n=e.children,o=e.isOpened,l=e.closeOnClickOutside,u=void 0===l||l,m=e.doNotCloseOn,b=e.onClickOutside,h=e.onClose,g=Object(r.__rest)(e,["controller","children","isOpened","closeOnClickOutside","doNotCloseOn","onClickOutside","onClose"]),p=Object(c.useContext)(v.a),O=Object(f.a)({handler:function(e){if(b&&b(e),u){if(m&&e.target instanceof Node){var t=a.a.findDOMNode(m);if(t instanceof Node&&t.contains(e.target))return}h()}},mouseDown:!0,touchStart:!0});return o?i.a.createElement(s.a,{top:"0",left:"0",right:"0",bottom:"0",pointerEvents:"none"},i.a.createElement("span",{ref:O,style:{pointerEvents:"auto"}},i.a.createElement(d.a,Object(r.__assign)({},g,{isOpened:o,onClose:h,onScroll:function(t){var n=e.onScroll;n&&n(t),t.stopPropagation()},customCloseDelegate:p,ref:t}),n))):null}var r,c,i,l,a,u,s,d,v,f;n.d(t,"a",function(){return o}),r=n("mrSG"),c=n("q1tI"),i=n.n(c),l=n("i8i4"),a=n.n(l),u=n("bf9a"),s=n("AiMB"),d=n("DTHj"),v=n("X0gx"),f=n("8Rai")},N5tr:function(e,t,n){"use strict";function o(e){var t=e.reference,n=Object(i.__rest)(e,["reference"]),o=Object(i.__assign)(Object(i.__assign)({},n),{ref:t});return a.a.createElement(e.href?"a":"div",o)}function r(e){e.stopPropagation()}function c(e){var t,n,c,m=e.className,b=e.title,h=e.labelRowClassName,g=e.shortcut,p=e.forceShowShortcuts,O=e.icon,w=e.isActive,y=e.isDisabled,E=e.isHovered,j=e.appearAsDisabled,C=e.label,k=e.link,S=e.showToolboxOnHover,_=e.target,x=e.toolbox,N=e.reference,M=e.onMouseOut,T=e.onMouseOver,B=e.theme,D=void 0===B?f:B,A=Object(v.a)(e),I=Object(l.useRef)(null);return a.a.createElement(o,Object(i.__assign)({},A,{className:u(m,D.item,O&&D.withIcon,(t={},t[D.isActive]=w,t[D.isDisabled]=y||j,t[D.hovered]=E,t)),title:b,href:k,target:_,reference:function(e){I.current=e,N&&N(e)},onClick:function(t){var n=e.dontClosePopup,o=e.onClick,r=e.onClickArg,c=e.trackEventObject;y||(c&&Object(d.trackEvent)(c.category,c.event,c.label),o&&o(r,t),n||Object(s.b)())},onContextMenu:function(t){var n=e.trackEventObject,o=e.trackRightClick;n&&o&&Object(d.trackEvent)(n.category,n.event,n.label+"_rightClick")},onMouseUp:function(t){var n,o=e.trackEventObject,r=e.trackMouseWheelClick;1===t.button&&k&&o&&(n=o.label,r&&(n+="_mouseWheelClick"),Object(d.trackEvent)(o.category,o.event,n))},onMouseOver:T,onMouseOut:M}),void 0!==O&&a.a.createElement("div",{className:D.icon,dangerouslySetInnerHTML:{__html:O}}),a.a.createElement("div",{className:u(D.labelRow,h)},a.a.createElement("div",{className:D.label},C)),(void 0!==g||p)&&a.a.createElement("div",{className:D.shortcut},(c=g)&&c.split("+").join(" + ")),void 0!==x&&a.a.createElement("div",{ +onClick:r,className:u(D.toolbox,(n={},n[D.showOnHover]=S,n))},x))}var i,l,a,u,s,d,v,f,m;n.d(t,"a",function(){return m}),n.d(t,"b",function(){return c}),i=n("mrSG"),l=n("q1tI"),a=n.n(l),u=n("TSYQ"),s=n("tWVy"),d=n("PC8g"),v=n("QpNh"),f=n("v1bN"),m=f},X0gx:function(e,t,n){"use strict";var o,r,c,i;n.d(t,"a",function(){return i}),o=n("q1tI"),r=n.n(o),c=n("tWVy"),i=r.a.createContext(c.a)},tmL0:function(e,t,n){"use strict";function o(e){var t=e.reference,n=e.children,o=Object(c.useRef)(null),s=Object(c.useCallback)(function(e){t&&(t.current=e),u.CheckMobile.iOS()&&(null!==o.current&&Object(l.enableBodyScroll)(o.current),o.current=e,null!==o.current&&Object(l.disableBodyScroll)(o.current,{allowTouchMove:function(e){return function(t){var n=Object(a.ensureNotNull)(e.current),o=document.activeElement;return!n.contains(t)||null!==o&&n.contains(o)&&o.contains(t)}}(o)}))},[t]);return i.a.createElement("div",Object(r.__assign)({ref:s},e),n)}var r,c,i,l,a,u;n.d(t,"a",function(){return o}),r=n("mrSG"),c=n("q1tI"),i=n.n(c),l=n("x0D+"),a=n("Eyy1"),u=n("qFKp")},v1bN:function(e,t,n){e.exports={item:"item-2xPVYue0",hovered:"hovered-1uf45E05",isDisabled:"isDisabled-1wLqKupj",isActive:"isActive-2j-GhQs_",shortcut:"shortcut-30pveiCO",toolbox:"toolbox-3ulPxfe-",withIcon:"withIcon-1xBjf-oB",icon:"icon-2Qm7YIcz",labelRow:"labelRow-3Q0rdE8-",label:"label-3Xqxy756",showOnHover:"showOnHover-1q6ySzZc"}},"x0D+":function(e,t,n){var o,r,c;r=[t],void 0===(c="function"==typeof(o=function(e){"use strict";function t(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t:not(:last-child){margin-right:10px}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.feature-no-mobiletouch .item-2xPVYue0-:hover .toolbox-3ulPxfe--.showOnHover-1q6ySzZc-{opacity:1}}.separator-25lkUpN--{margin:6px 0;height:1px;background-color:#e1ecf2}html.theme-dark .separator-25lkUpN--{background-color:#363c4e} \ No newline at end of file diff --git a/charting_library/static/bundles/11.b900b9cb8ed6dd3bc321.rtl.css b/charting_library/static/bundles/11.b900b9cb8ed6dd3bc321.rtl.css deleted file mode 100644 index 8c5ea955..00000000 --- a/charting_library/static/bundles/11.b900b9cb8ed6dd3bc321.rtl.css +++ /dev/null @@ -1 +0,0 @@ -.item-2xPVYue0-{display:flex;flex-flow:row nowrap;align-items:center;white-space:nowrap;padding:2px 8px 2px 10px;font-size:14px;background-color:#fff;cursor:default;transition-property:none;color:#131722}html.theme-dark .item-2xPVYue0-{color:#b2b5be;background-color:#1e222d}.item-2xPVYue0-.hovered-1uf45E05-,.item-2xPVYue0-:active{color:#000}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.item-2xPVYue0-:hover{color:#000}}html.theme-dark .item-2xPVYue0-.hovered-1uf45E05-,html.theme-dark .item-2xPVYue0-:active{color:#c1c4cd}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .item-2xPVYue0-:hover{color:#c1c4cd}}.item-2xPVYue0-.hovered-1uf45E05-,.item-2xPVYue0-:active{background-color:#f0f3fa}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.item-2xPVYue0-:hover{background-color:#f0f3fa}}html.theme-dark .item-2xPVYue0-.hovered-1uf45E05-,html.theme-dark .item-2xPVYue0-:active{background-color:#2a2e39}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .item-2xPVYue0-:hover{background-color:#2a2e39}}.item-2xPVYue0-.isDisabled-1wLqKupj-{opacity:.3;cursor:default}.item-2xPVYue0-.isDisabled-1wLqKupj-,.item-2xPVYue0-.isDisabled-1wLqKupj-:active{color:#131722;background-color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.item-2xPVYue0-.isDisabled-1wLqKupj-:hover{color:#131722;background-color:#fff}}html.theme-dark .item-2xPVYue0-.isDisabled-1wLqKupj-,html.theme-dark .item-2xPVYue0-.isDisabled-1wLqKupj-:active{background-color:#1e222d}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .item-2xPVYue0-.isDisabled-1wLqKupj-:hover{background-color:#1e222d}}html.theme-dark .item-2xPVYue0-.isDisabled-1wLqKupj-,html.theme-dark .item-2xPVYue0-.isDisabled-1wLqKupj-:active{color:#b2b5be}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .item-2xPVYue0-.isDisabled-1wLqKupj-:hover{color:#b2b5be}}.item-2xPVYue0-.isActive-2j-GhQs_-,.item-2xPVYue0-.isActive-2j-GhQs_-:active{color:#fff;background-color:#2196f3}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.item-2xPVYue0-.isActive-2j-GhQs_-:hover{color:#fff;background-color:#2196f3}}html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-,html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-:active{background-color:#1976d2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-:hover{background-color:#1976d2}}html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-,html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-:active{color:#131722}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-:hover{color:#131722}}.item-2xPVYue0-.isActive-2j-GhQs_- .icon-2Qm7YIcz- svg,.item-2xPVYue0-.isActive-2j-GhQs_-:active .icon-2Qm7YIcz- svg{fill:currentColor}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.item-2xPVYue0-.isActive-2j-GhQs_-:hover .icon-2Qm7YIcz- svg{fill:currentColor}}.item-2xPVYue0-.isActive-2j-GhQs_- .shortcut-30pveiCO-,.item-2xPVYue0-.isActive-2j-GhQs_-:active .shortcut-30pveiCO-{color:hsla(0,0%,100%,.7)}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.item-2xPVYue0-.isActive-2j-GhQs_-:hover .shortcut-30pveiCO-{color:hsla(0,0%,100%,.7)}}html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_- .shortcut-30pveiCO-,html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-:active .shortcut-30pveiCO-{color:rgba(19,23,34,.7)}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-:hover .shortcut-30pveiCO-{color:rgba(19,23,34,.7)}}.item-2xPVYue0-.isActive-2j-GhQs_- .toolbox-3ulPxfe--,.item-2xPVYue0-.isActive-2j-GhQs_-:active .toolbox-3ulPxfe--{color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.item-2xPVYue0-.isActive-2j-GhQs_-:hover .toolbox-3ulPxfe--{color:#fff}}html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_- .toolbox-3ulPxfe--,html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-:active .toolbox-3ulPxfe--{color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .item-2xPVYue0-.isActive-2j-GhQs_-:hover .toolbox-3ulPxfe--{color:#fff}}.item-2xPVYue0-.withIcon-1xBjf-oB-{padding-top:6px;padding-bottom:6px}.item-2xPVYue0-:before{content:" ";display:block;height:28px}.icon-2Qm7YIcz-{display:flex;margin-left:7px;align-items:center;justify-content:center;width:28px;height:28px}.icon-2Qm7YIcz- svg{display:block;fill:currentColor}.labelRow-3Q0rdE8--{display:flex;flex-direction:row;align-items:baseline;justify-content:space-between;flex:1 0 auto;margin-left:14px}.labelRow-3Q0rdE8--:first-child{margin-right:4px}.labelRow-3Q0rdE8--:last-child{margin-left:4px}.label-3Xqxy756-{display:flex;flex:0 0 auto}.shortcut-30pveiCO-{font-size:11px;margin-left:14px;min-width:27px;color:#b2b5be}html.theme-dark .shortcut-30pveiCO-{color:#787b86}.toolbox-3ulPxfe--{display:flex;position:relative;align-items:center;color:#9db2bd}html.theme-dark .toolbox-3ulPxfe--{color:#9db2bd}.feature-no-mobiletouch .toolbox-3ulPxfe--.showOnHover-1q6ySzZc-{opacity:0}.toolbox-3ulPxfe-->:not(:last-child){margin-left:10px}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.feature-no-mobiletouch .item-2xPVYue0-:hover .toolbox-3ulPxfe--.showOnHover-1q6ySzZc-{opacity:1}}.separator-25lkUpN--{margin:6px 0;height:1px;background-color:#e1ecf2}html.theme-dark .separator-25lkUpN--{background-color:#363c4e} \ No newline at end of file diff --git a/charting_library/static/bundles/11.deed9db87140d8f4397e.css b/charting_library/static/bundles/11.deed9db87140d8f4397e.css new file mode 100644 index 00000000..6dbf0f36 --- /dev/null +++ b/charting_library/static/bundles/11.deed9db87140d8f4397e.css @@ -0,0 +1 @@ +.icon-3qYrZx7p-{display:inline-flex;align-items:center}.icon-3qYrZx7p- svg{width:100%;height:100%}.button-1iktpaT1-{display:inline-flex;position:relative;align-items:center;justify-content:center;box-sizing:border-box;border-radius:4px;border-width:1px;border-style:solid;outline:0;max-width:100%;transition-duration:.35s;transition-timing-function:ease;transition-property:border-color,background-color,color}.button-1iktpaT1- .content-2PGssb8d-{text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.button-1iktpaT1-:after{content:"";position:absolute;box-sizing:border-box;top:-5px;left:-5px;width:calc(100% + 10px);height:calc(100% + 10px);border-width:2px;border-style:solid;border-radius:8px;transform:scale(.81);opacity:0;transition-duration:.35s;transition-timing-function:ease;transition-property:opacity,transform,border-color;will-change:border-color}.button-1iktpaT1-.noOutline-d9Yp4qvi-:after{content:none}.button-1iktpaT1-:focus:after{transform:scale(1);opacity:1}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:link,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:visited{color:#fff;background-color:#2196f3;border-color:#2196f3}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:visited{border-color:#1976d2;background-color:#1976d2;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#1e88e5;background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){background-color:#1e88e5;border-color:#1e88e5;color:#fff}}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#1976d2;background-color:#1976d2;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){background-color:#2196f3;border-color:#2196f3;color:#fff}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled:link,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:after{border-color:rgba(33,150,243,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:after{border-color:rgba(25,118,210,0)}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(33,150,243,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(25,118,210,.3)}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:link,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:visited{color:#fff;background-color:#26a69a;border-color:#26a69a}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:visited{border-color:#00897b;background-color:#00897b;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#009688;background-color:#009688}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){background-color:#009688;border-color:#009688;color:#fff}}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#00897b;background-color:#00897b;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){background-color:#26a69a;border-color:#26a69a;color:#fff}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled:link,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:after{border-color:rgba(38,166,154,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:after{border-color:rgba(0,137,123,0)}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:focus:after{border-color:rgba(38,166,154,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:focus:after{border-color:rgba(0,137,123,.3)}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:link,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:visited{color:#fff;background-color:#9598a1;border-color:#9598a1}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:visited{border-color:#787b86;background-color:#787b86;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#787b86;background-color:#787b86}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){background-color:#9598a1;border-color:#9598a1;color:#fff}}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#5d606b;background-color:#5d606b;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){background-color:#b2b5be;border-color:#b2b5be;color:#fff}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled:link,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:after{border-color:hsla(225,6%,61%,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:after{border-color:hsla(227,6%,50%,0)}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(225,6%,61%,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(227,6%,50%,.3)}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:link,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:visited{color:#fff;background-color:#ff9800;border-color:#ff9800}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:visited{border-color:#f57c00;background-color:#f57c00;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#fb8c00;background-color:#fb8c00}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){background-color:#fb8c00;border-color:#fb8c00;color:#fff}}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#f57c00;background-color:#f57c00;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){background-color:#ff9800;border-color:#ff9800;color:#fff}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled:link,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:after{border-color:rgba(255,152,0,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:after{border-color:rgba(245,124,0,0)}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(255,152,0,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(245,124,0,.3)}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:link,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:visited{color:#fff;background-color:#ef5350;border-color:#ef5350}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:visited{border-color:#e53935;background-color:#e53935;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#f44336;background-color:#f44336}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){background-color:#f44336;border-color:#f44336;color:#fff}}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#e53935;background-color:#e53935;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){background-color:#ef5350;border-color:#ef5350;color:#fff}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled:link,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:after{border-color:rgba(239,83,80,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:after{border-color:rgba(229,57,53,0)}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:focus:after{border-color:rgba(239,83,80,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:focus:after{border-color:rgba(229,57,53,.3)}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:link,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:visited{color:#2196f3;background-color:transparent;border-color:#2196f3}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:visited{border-color:#1976d2;background-color:transparent;color:#1976d2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#1e88e5;background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){background-color:#1e88e5;border-color:#1e88e5;color:#fff}}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#1976d2;background-color:#1976d2;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){background-color:#2196f3;border-color:#2196f3;color:#fff}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled:link,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:after{border-color:rgba(33,150,243,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:after{border-color:rgba(25,118,210,0)}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(33,150,243,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(25,118,210,.3)}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:link,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:visited{color:#26a69a;background-color:transparent;border-color:#26a69a}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:visited{border-color:#00897b;background-color:transparent;color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#009688;background-color:#009688}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){background-color:#009688;border-color:#009688;color:#fff}}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#00897b;background-color:#00897b;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){background-color:#26a69a;border-color:#26a69a;color:#fff}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled:link,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:after{border-color:rgba(38,166,154,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:after{border-color:rgba(0,137,123,0)}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:focus:after{border-color:rgba(38,166,154,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:focus:after{border-color:rgba(0,137,123,.3)}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:link,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:visited{color:#9598a1;background-color:transparent;border-color:#9598a1}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:visited{border-color:#787b86;background-color:transparent;color:#787b86}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#787b86;background-color:#787b86}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){background-color:#9598a1;border-color:#9598a1;color:#fff}}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#5d606b;background-color:#5d606b;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){background-color:#b2b5be;border-color:#b2b5be;color:#fff}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled:link,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:after{border-color:hsla(225,6%,61%,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:after{border-color:hsla(227,6%,50%,0)}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(225,6%,61%,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(227,6%,50%,.3)}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:link,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:visited{color:#ff9800;background-color:transparent;border-color:#ff9800}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:visited{border-color:#f57c00;background-color:transparent;color:#f57c00}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#fb8c00;background-color:#fb8c00}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){background-color:#fb8c00;border-color:#fb8c00;color:#fff}}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#f57c00;background-color:#f57c00;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){background-color:#ff9800;border-color:#ff9800;color:#fff}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled:link,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:after{border-color:rgba(255,152,0,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:after{border-color:rgba(245,124,0,0)}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(255,152,0,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(245,124,0,.3)}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:link,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:visited{color:#ef5350;background-color:transparent;border-color:#ef5350}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:visited{border-color:#e53935;background-color:transparent;color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#f44336;background-color:#f44336}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){background-color:#f44336;border-color:#f44336;color:#fff}}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#e53935;background-color:#e53935;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){background-color:#ef5350;border-color:#ef5350;color:#fff}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled:link,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:after{border-color:rgba(239,83,80,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:after{border-color:rgba(229,57,53,0)}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:focus:after{border-color:rgba(239,83,80,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:focus:after{border-color:rgba(229,57,53,.3)}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:link,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:visited{color:#2196f3;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:visited{border-color:transparent;background-color:transparent;color:#1976d2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){color:#1e88e5;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#1e88e5}}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){color:#1976d2;border-color:transparent;background-color:transparent;transform:translateY(1px)}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#2196f3}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled:link,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled:visited,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:after{border-color:rgba(33,150,243,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:after{border-color:rgba(25,118,210,0)}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(33,150,243,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(25,118,210,.3)}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:link,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:visited{color:#26a69a;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:visited{border-color:transparent;background-color:transparent;color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){color:#009688;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#009688}}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){color:#00897b;border-color:transparent;background-color:transparent;transform:translateY(1px)}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#26a69a}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled:link,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled:visited,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:after{border-color:rgba(38,166,154,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:after{border-color:rgba(0,137,123,0)}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:focus:after{border-color:rgba(38,166,154,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:focus:after{border-color:rgba(0,137,123,.3)}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:link,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:visited{color:#9598a1;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:visited{border-color:transparent;background-color:transparent;color:#787b86}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){color:#787b86;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#9598a1}}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){color:#5d606b;border-color:transparent;background-color:transparent;transform:translateY(1px)}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled:link,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled:visited,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#b2b5be}html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:after{border-color:hsla(225,6%,61%,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:after{border-color:hsla(227,6%,50%,0)}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(225,6%,61%,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(227,6%,50%,.3)}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:link,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:visited{color:#ff9800;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:visited{border-color:transparent;background-color:transparent;color:#f57c00}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){color:#fb8c00;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#fb8c00}}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){color:#f57c00;border-color:transparent;background-color:transparent;transform:translateY(1px)}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#ff9800}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled:link,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled:visited,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:after{border-color:rgba(255,152,0,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:after{border-color:rgba(245,124,0,0)}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(255,152,0,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(245,124,0,.3)}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:link,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:visited{color:#ef5350;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:visited{border-color:transparent;background-color:transparent;color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){color:#f44336;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#f44336}}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){color:#e53935;border-color:transparent;background-color:transparent;transform:translateY(1px)}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#ef5350}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled:link,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled:visited,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:after{border-color:rgba(239,83,80,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:after{border-color:rgba(229,57,53,0)}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:focus:after{border-color:rgba(239,83,80,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:focus:after{border-color:rgba(229,57,53,.3)}.size-s-3mait84m-{height:26px;padding:0 11px}.size-s-3mait84m- .content-2PGssb8d-{font-size:14px;text-transform:none}.size-m-2G7L7Qat-{height:34px;padding:0 23px}.size-m-2G7L7Qat- .content-2PGssb8d-{font-size:16px;text-transform:none}.size-l-2NEs9_xt-{height:50px;padding:0 31px}.size-l-2NEs9_xt- .content-2PGssb8d-{font-size:16px;text-transform:none}.full-width-1wU8ljjC-{width:100%}.with-icon-yumghDr-- .content-2PGssb8d-{margin-right:3px}.icon-1grlgNdV-{display:flex;align-items:center;justify-content:center;width:28px;height:28px;margin-right:4px}.checkbox-3xZUD-2M-{display:inline-flex;align-items:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;cursor:default;font-size:14px;font-weight:400;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.checkbox-3xZUD-2M-:hover .input-ly-CSnj5-:not(:focus):not(:disabled)+.box-20C92a5S-{border-color:#a3a6af}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .checkbox-3xZUD-2M-:hover .input-ly-CSnj5-:not(:focus):not(:disabled)+.box-20C92a5S-{border-color:#5d606b}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.checkbox-3xZUD-2M-:hover .input-ly-CSnj5-:checked:not(:focus):not(:disabled)+.box-20C92a5S-{border-color:#1e88e5;background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .checkbox-3xZUD-2M-:hover .input-ly-CSnj5-:checked:not(:focus):not(:disabled)+.box-20C92a5S-{background-color:#1e88e5;border-color:#1e88e5}}.checkbox-3xZUD-2M-.reverse-3xeTx96y-{flex-direction:row-reverse}.checkbox-3xZUD-2M-.reverse-3xeTx96y- .label-cyItEVpF-{margin-right:8px;margin-left:0}.checkbox-3xZUD-2M-.baseline-6TXKro4X-{align-items:baseline}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW-{display:inline-block;width:18px;height:18px;position:relative;flex:none}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-{display:flex;align-items:center;justify-content:center;position:relative;width:100%;height:100%;border:1px solid #b2b5be;border-radius:3px;box-sizing:border-box;transition:background-color .35s ease}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-{border:1px solid #50535e}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S- .icon-3dOOKDQo-{box-sizing:border-box;width:11px;height:9px}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-:before{position:absolute;content:"";box-sizing:border-box;top:-5px;left:-5px;width:26px;height:26px;border:2px solid rgba(33,150,243,.3);border-radius:6px;opacity:0;transform:scale(.69231)}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-:before{border:2px solid rgba(25,118,210,.3)}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-.noOutline-3wgQ5xZI-:before{content:none}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-:after{position:absolute;content:"";width:6px;height:6px;background-color:transparent;border-radius:50%;top:calc(50% - 3px);left:calc(50% - 3px)}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-{width:100%;height:100%;opacity:0;cursor:inherit;margin:0;padding:0;position:absolute;top:0;left:0}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-{background-color:#2196f3;border-color:#2196f3}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-{border-color:#1976d2;background-color:#1976d2}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-.check-13mv3fTM- .icon-3dOOKDQo-{stroke:#fff}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-.check-13mv3fTM- .icon-3dOOKDQo-{stroke:#d1d4dc}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-.dot-3FRmUbXl-:after{background-color:#fff}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-.dot-3FRmUbXl-:after{background-color:#d1d4dc}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:disabled+.box-20C92a5S-{background-color:#e0e3eb;border-color:#b2b5be}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:disabled+.box-20C92a5S-{border-color:#50535e;background-color:#2a2e39}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-{background-color:#e0e3eb}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-{background-color:#2a2e39}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-.check-13mv3fTM- .icon-3dOOKDQo-{stroke:#b2b5be}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-.check-13mv3fTM- .icon-3dOOKDQo-{stroke:#50535e}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-.dot-3FRmUbXl-:after{background-color:#b2b5be}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-.dot-3FRmUbXl-:after{background-color:#50535e}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:active:not(:disabled)+.box-20C92a5S-,.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:focus+.box-20C92a5S-{border-color:#2196f3}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:active:not(:disabled)+.box-20C92a5S-,html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:focus+.box-20C92a5S-{border-color:#1976d2}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:active:not(:disabled)+.box-20C92a5S-:before,.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:focus+.box-20C92a5S-:before{opacity:1;transform:scale(1)}.checkbox-3xZUD-2M- .label-cyItEVpF-{margin-left:8px;color:#000;min-width:0}html.theme-dark .checkbox-3xZUD-2M- .label-cyItEVpF-{color:#b2b5be}.footer-1mvnCDqp{display:flex;flex:0 0 auto;border-top:1px solid #e0e3eb;padding:20px}html.theme-dark .footer-1mvnCDqp{border-top:1px solid #434651}@media screen and (max-height:360px){.footer-1mvnCDqp{padding:10px 20px}}.footer-1mvnCDqp .submitButton-2lNICzl3{padding-left:12px}.footer-1mvnCDqp .buttons-3yvtQ_uI{margin-left:auto} \ No newline at end of file diff --git a/charting_library/static/bundles/11.deed9db87140d8f4397e.rtl.css b/charting_library/static/bundles/11.deed9db87140d8f4397e.rtl.css new file mode 100644 index 00000000..d9106302 --- /dev/null +++ b/charting_library/static/bundles/11.deed9db87140d8f4397e.rtl.css @@ -0,0 +1 @@ +.icon-3qYrZx7p-{display:inline-flex;align-items:center}.icon-3qYrZx7p- svg{width:100%;height:100%}.button-1iktpaT1-{display:inline-flex;position:relative;align-items:center;justify-content:center;box-sizing:border-box;border-radius:4px;border-width:1px;border-style:solid;outline:0;max-width:100%;transition-duration:.35s;transition-timing-function:ease;transition-property:border-color,background-color,color}.button-1iktpaT1- .content-2PGssb8d-{text-align:right;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.button-1iktpaT1-:after{content:"";position:absolute;box-sizing:border-box;top:-5px;right:-5px;width:calc(100% + 10px);height:calc(100% + 10px);border-width:2px;border-style:solid;border-radius:8px;transform:scale(.81);opacity:0;transition-duration:.35s;transition-timing-function:ease;transition-property:opacity,transform,border-color;will-change:border-color}.button-1iktpaT1-.noOutline-d9Yp4qvi-:after{content:none}.button-1iktpaT1-:focus:after{transform:scale(1);opacity:1}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:link,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:visited{color:#fff;background-color:#2196f3;border-color:#2196f3}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:visited{border-color:#1976d2;background-color:#1976d2;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#1e88e5;background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){background-color:#1e88e5;border-color:#1e88e5;color:#fff}}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#1976d2;background-color:#1976d2;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){background-color:#2196f3;border-color:#2196f3;color:#fff}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled:link,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:after{border-color:rgba(33,150,243,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:after{border-color:rgba(25,118,210,0)}.appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(33,150,243,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(25,118,210,.3)}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:link,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:visited{color:#fff;background-color:#26a69a;border-color:#26a69a}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:visited{border-color:#00897b;background-color:#00897b;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#009688;background-color:#009688}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){background-color:#009688;border-color:#009688;color:#fff}}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#00897b;background-color:#00897b;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){background-color:#26a69a;border-color:#26a69a;color:#fff}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled:link,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:after{border-color:rgba(38,166,154,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:after{border-color:rgba(0,137,123,0)}.appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:focus:after{border-color:rgba(38,166,154,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-success-25a4XZXM-:focus:after{border-color:rgba(0,137,123,.3)}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:link,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:visited{color:#fff;background-color:#9598a1;border-color:#9598a1}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:visited{border-color:#787b86;background-color:#787b86;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#787b86;background-color:#787b86}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){background-color:#9598a1;border-color:#9598a1;color:#fff}}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#5d606b;background-color:#5d606b;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){background-color:#b2b5be;border-color:#b2b5be;color:#fff}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled:link,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:after{border-color:hsla(225,6%,61%,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:after{border-color:hsla(227,6%,50%,0)}.appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(225,6%,61%,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(227,6%,50%,.3)}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:link,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:visited{color:#fff;background-color:#ff9800;border-color:#ff9800}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:visited{border-color:#f57c00;background-color:#f57c00;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#fb8c00;background-color:#fb8c00}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){background-color:#fb8c00;border-color:#fb8c00;color:#fff}}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#f57c00;background-color:#f57c00;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){background-color:#ff9800;border-color:#ff9800;color:#fff}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled:link,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:after{border-color:rgba(255,152,0,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:after{border-color:rgba(245,124,0,0)}.appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(255,152,0,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(245,124,0,.3)}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-{transform:translateY(0)}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:link,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:visited{color:#fff;background-color:#ef5350;border-color:#ef5350}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:visited{border-color:#e53935;background-color:#e53935;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#f44336;background-color:#f44336}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){background-color:#f44336;border-color:#f44336;color:#fff}}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#e53935;background-color:#e53935;transform:translateY(1px)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){background-color:#ef5350;border-color:#ef5350;color:#fff}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled:link,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled:visited,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true],.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true]:link,.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true]:visited{color:#b2b5be;background-color:#e0e3eb;border-color:#e0e3eb}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:disabled:visited,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true],html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true]:link,html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-[aria-disabled=true]:visited{border-color:#363a45;background-color:#363a45;color:#5d606b}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:after{border-color:rgba(239,83,80,0)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:after{border-color:rgba(229,57,53,0)}.appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:focus:after{border-color:rgba(239,83,80,.3)}html.theme-dark .appearance-default-dMjF_2Hu-.intent-danger-1EETHCla-:focus:after{border-color:rgba(229,57,53,.3)}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:link,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:visited{color:#2196f3;background-color:transparent;border-color:#2196f3}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:visited{border-color:#1976d2;background-color:transparent;color:#1976d2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#1e88e5;background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){background-color:#1e88e5;border-color:#1e88e5;color:#fff}}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#1976d2;background-color:#1976d2;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){background-color:#2196f3;border-color:#2196f3;color:#fff}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled:link,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:after{border-color:rgba(33,150,243,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:after{border-color:rgba(25,118,210,0)}.appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(33,150,243,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(25,118,210,.3)}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:link,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:visited{color:#26a69a;background-color:transparent;border-color:#26a69a}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:visited{border-color:#00897b;background-color:transparent;color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#009688;background-color:#009688}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){background-color:#009688;border-color:#009688;color:#fff}}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#00897b;background-color:#00897b;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){background-color:#26a69a;border-color:#26a69a;color:#fff}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled:link,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:after{border-color:rgba(38,166,154,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:after{border-color:rgba(0,137,123,0)}.appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:focus:after{border-color:rgba(38,166,154,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-success-25a4XZXM-:focus:after{border-color:rgba(0,137,123,.3)}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:link,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:visited{color:#9598a1;background-color:transparent;border-color:#9598a1}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:visited{border-color:#787b86;background-color:transparent;color:#787b86}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#787b86;background-color:#787b86}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){background-color:#9598a1;border-color:#9598a1;color:#fff}}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#5d606b;background-color:#5d606b;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){background-color:#b2b5be;border-color:#b2b5be;color:#fff}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled:link,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:after{border-color:hsla(225,6%,61%,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:after{border-color:hsla(227,6%,50%,0)}.appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(225,6%,61%,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(227,6%,50%,.3)}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:link,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:visited{color:#ff9800;background-color:transparent;border-color:#ff9800}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:visited{border-color:#f57c00;background-color:transparent;color:#f57c00}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#fb8c00;background-color:#fb8c00}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){background-color:#fb8c00;border-color:#fb8c00;color:#fff}}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#f57c00;background-color:#f57c00;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){background-color:#ff9800;border-color:#ff9800;color:#fff}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled:link,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:after{border-color:rgba(255,152,0,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:after{border-color:rgba(245,124,0,0)}.appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(255,152,0,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(245,124,0,.3)}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-{transform:translateY(0)}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:link,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:visited{color:#ef5350;background-color:transparent;border-color:#ef5350}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:visited{border-color:#e53935;background-color:transparent;color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#f44336;background-color:#f44336}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){background-color:#f44336;border-color:#f44336;color:#fff}}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){color:#fff;border-color:#e53935;background-color:#e53935;transform:translateY(1px)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){background-color:#ef5350;border-color:#ef5350;color:#fff}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled:link,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled:visited,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true],.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true]:link,.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:#e0e3eb}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:disabled:visited,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true],html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true]:link,html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-[aria-disabled=true]:visited{border-color:#363a45;background-color:transparent;color:#5d606b}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:after{border-color:rgba(239,83,80,0)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:after{border-color:rgba(229,57,53,0)}.appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:focus:after{border-color:rgba(239,83,80,.3)}html.theme-dark .appearance-stroke-12lxiUSM-.intent-danger-1EETHCla-:focus:after{border-color:rgba(229,57,53,.3)}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:link,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:visited{color:#2196f3;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:visited{border-color:transparent;background-color:transparent;color:#1976d2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){color:#1e88e5;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#1e88e5}}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){color:#1976d2;border-color:transparent;background-color:transparent;transform:translateY(1px)}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#2196f3}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled:link,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled:visited,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:after{border-color:rgba(33,150,243,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:after{border-color:rgba(25,118,210,0)}.appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(33,150,243,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-primary-1-IOYcbg-:focus:after{border-color:rgba(25,118,210,.3)}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:link,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:visited{color:#26a69a;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:visited{border-color:transparent;background-color:transparent;color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){color:#009688;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#009688}}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){color:#00897b;border-color:transparent;background-color:transparent;transform:translateY(1px)}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#26a69a}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled:link,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled:visited,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:after{border-color:rgba(38,166,154,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:after{border-color:rgba(0,137,123,0)}.appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:focus:after{border-color:rgba(38,166,154,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-success-25a4XZXM-:focus:after{border-color:rgba(0,137,123,.3)}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:link,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:visited{color:#9598a1;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:visited{border-color:transparent;background-color:transparent;color:#787b86}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){color:#787b86;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#9598a1}}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){color:#5d606b;border-color:transparent;background-color:transparent;transform:translateY(1px)}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled:link,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled:visited,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#b2b5be}html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:after{border-color:hsla(225,6%,61%,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:after{border-color:hsla(227,6%,50%,0)}.appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(225,6%,61%,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-default-2ZbSqQDs-:focus:after{border-color:hsla(227,6%,50%,.3)}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:link,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:visited{color:#ff9800;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:visited{border-color:transparent;background-color:transparent;color:#f57c00}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){color:#fb8c00;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#fb8c00}}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){color:#f57c00;border-color:transparent;background-color:transparent;transform:translateY(1px)}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#ff9800}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled:link,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled:visited,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:after{border-color:rgba(255,152,0,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:after{border-color:rgba(245,124,0,0)}.appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(255,152,0,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-warning-24j5HMi0-:focus:after{border-color:rgba(245,124,0,.3)}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-{transform:translateY(0)}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:link,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:visited{color:#ef5350;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:visited{border-color:transparent;background-color:transparent;color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){color:#f44336;border-color:transparent;background-color:transparent}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:hover:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#f44336}}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){color:#e53935;border-color:transparent;background-color:transparent;transform:translateY(1px)}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:active:not(:disabled):not([aria-disabled=true]){background-color:transparent;border-color:transparent;color:#ef5350}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled:link,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled:visited,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true],.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true]:link,.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true]:visited{color:#b2b5be;background-color:transparent;border-color:transparent}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:disabled:visited,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true],html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true]:link,html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-[aria-disabled=true]:visited{border-color:transparent;background-color:transparent;color:#5d606b}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:after{border-color:rgba(239,83,80,0)}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:after{border-color:rgba(229,57,53,0)}.appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:focus:after{border-color:rgba(239,83,80,.3)}html.theme-dark .appearance-text-DqKJVT3U-.intent-danger-1EETHCla-:focus:after{border-color:rgba(229,57,53,.3)}.size-s-3mait84m-{height:26px;padding:0 11px}.size-s-3mait84m- .content-2PGssb8d-{font-size:14px;text-transform:none}.size-m-2G7L7Qat-{height:34px;padding:0 23px}.size-m-2G7L7Qat- .content-2PGssb8d-{font-size:16px;text-transform:none}.size-l-2NEs9_xt-{height:50px;padding:0 31px}.size-l-2NEs9_xt- .content-2PGssb8d-{font-size:16px;text-transform:none}.full-width-1wU8ljjC-{width:100%}.with-icon-yumghDr-- .content-2PGssb8d-{margin-left:3px}.icon-1grlgNdV-{display:flex;align-items:center;justify-content:center;width:28px;height:28px;margin-left:4px}.checkbox-3xZUD-2M-{display:inline-flex;align-items:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;cursor:default;font-size:14px;font-weight:400;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.checkbox-3xZUD-2M-:hover .input-ly-CSnj5-:not(:focus):not(:disabled)+.box-20C92a5S-{border-color:#a3a6af}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .checkbox-3xZUD-2M-:hover .input-ly-CSnj5-:not(:focus):not(:disabled)+.box-20C92a5S-{border-color:#5d606b}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.checkbox-3xZUD-2M-:hover .input-ly-CSnj5-:checked:not(:focus):not(:disabled)+.box-20C92a5S-{border-color:#1e88e5;background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .checkbox-3xZUD-2M-:hover .input-ly-CSnj5-:checked:not(:focus):not(:disabled)+.box-20C92a5S-{background-color:#1e88e5;border-color:#1e88e5}}.checkbox-3xZUD-2M-.reverse-3xeTx96y-{flex-direction:row-reverse}.checkbox-3xZUD-2M-.reverse-3xeTx96y- .label-cyItEVpF-{margin-left:8px;margin-right:0}.checkbox-3xZUD-2M-.baseline-6TXKro4X-{align-items:baseline}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW-{display:inline-block;width:18px;height:18px;position:relative;flex:none}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-{display:flex;align-items:center;justify-content:center;position:relative;width:100%;height:100%;border:1px solid #b2b5be;border-radius:3px;box-sizing:border-box;transition:background-color .35s ease}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-{border:1px solid #50535e}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S- .icon-3dOOKDQo-{box-sizing:border-box;width:11px;height:9px}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-:before{position:absolute;content:"";box-sizing:border-box;top:-5px;right:-5px;width:26px;height:26px;border:2px solid rgba(33,150,243,.3);border-radius:6px;opacity:0;transform:scale(.69231)}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-:before{border:2px solid rgba(25,118,210,.3)}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-.noOutline-3wgQ5xZI-:before{content:none}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .box-20C92a5S-:after{position:absolute;content:"";width:6px;height:6px;background-color:transparent;border-radius:50%;top:calc(50% - 3px);right:calc(50% - 3px)}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-{width:100%;height:100%;opacity:0;cursor:inherit;margin:0;padding:0;position:absolute;top:0;right:0}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-{background-color:#2196f3;border-color:#2196f3}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-{border-color:#1976d2;background-color:#1976d2}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-.check-13mv3fTM- .icon-3dOOKDQo-{stroke:#fff}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-.check-13mv3fTM- .icon-3dOOKDQo-{stroke:#d1d4dc}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-.dot-3FRmUbXl-:after{background-color:#fff}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked+.box-20C92a5S-.dot-3FRmUbXl-:after{background-color:#d1d4dc}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:disabled+.box-20C92a5S-{background-color:#e0e3eb;border-color:#b2b5be}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:disabled+.box-20C92a5S-{border-color:#50535e;background-color:#2a2e39}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-{background-color:#e0e3eb}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-{background-color:#2a2e39}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-.check-13mv3fTM- .icon-3dOOKDQo-{stroke:#b2b5be}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-.check-13mv3fTM- .icon-3dOOKDQo-{stroke:#50535e}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-.dot-3FRmUbXl-:after{background-color:#b2b5be}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:checked:disabled+.box-20C92a5S-.dot-3FRmUbXl-:after{background-color:#50535e}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:active:not(:disabled)+.box-20C92a5S-,.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:focus+.box-20C92a5S-{border-color:#2196f3}html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:active:not(:disabled)+.box-20C92a5S-,html.theme-dark .checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:focus+.box-20C92a5S-{border-color:#1976d2}.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:active:not(:disabled)+.box-20C92a5S-:before,.checkbox-3xZUD-2M- .wrapper-1AZBBaMW- .input-ly-CSnj5-:focus+.box-20C92a5S-:before{opacity:1;transform:scale(1)}.checkbox-3xZUD-2M- .label-cyItEVpF-{margin-right:8px;color:#000;min-width:0}html.theme-dark .checkbox-3xZUD-2M- .label-cyItEVpF-{color:#b2b5be}.footer-1mvnCDqp{display:flex;flex:0 0 auto;border-top:1px solid #e0e3eb;padding:20px}html.theme-dark .footer-1mvnCDqp{border-top:1px solid #434651}@media screen and (max-height:360px){.footer-1mvnCDqp{padding:10px 20px}}.footer-1mvnCDqp .submitButton-2lNICzl3{padding-right:12px}.footer-1mvnCDqp .buttons-3yvtQ_uI{margin-right:auto} \ No newline at end of file diff --git a/charting_library/static/bundles/12.18e3c4b9c329e737cb80.js b/charting_library/static/bundles/12.18e3c4b9c329e737cb80.js deleted file mode 100644 index 068e5bbf..00000000 --- a/charting_library/static/bundles/12.18e3c4b9c329e737cb80.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[12],[]]); \ No newline at end of file diff --git a/charting_library/static/bundles/12.87f9777d9fe2086ce090.css b/charting_library/static/bundles/12.87f9777d9fe2086ce090.css deleted file mode 100644 index 4954f55c..00000000 --- a/charting_library/static/bundles/12.87f9777d9fe2086ce090.css +++ /dev/null @@ -1 +0,0 @@ -.dialog-2APwxL3O-{display:flex;min-width:280px;text-align:left;box-sizing:border-box;background-color:#fff;flex-direction:column}html.theme-dark .dialog-2APwxL3O-{background-color:#1e222d}.dialog-2APwxL3O-.rounded-tXI9mwGE-{border-radius:4px}.dialog-2APwxL3O-.shadowed-2M13-xZa-{box-shadow:0 1px 2px 1px rgba(0,0,0,.275)}.dialog-2APwxL3O-.fullscreen-2RqU2pqU-{position:fixed;width:100%;max-width:100%;height:100%;max-height:100%;min-height:100%} \ No newline at end of file diff --git a/charting_library/static/bundles/12.87f9777d9fe2086ce090.rtl.css b/charting_library/static/bundles/12.87f9777d9fe2086ce090.rtl.css deleted file mode 100644 index 0a73eff6..00000000 --- a/charting_library/static/bundles/12.87f9777d9fe2086ce090.rtl.css +++ /dev/null @@ -1 +0,0 @@ -.dialog-2APwxL3O-{display:flex;min-width:280px;text-align:right;box-sizing:border-box;background-color:#fff;flex-direction:column}html.theme-dark .dialog-2APwxL3O-{background-color:#1e222d}.dialog-2APwxL3O-.rounded-tXI9mwGE-{border-radius:4px}.dialog-2APwxL3O-.shadowed-2M13-xZa-{box-shadow:0 1px 2px 1px rgba(0,0,0,.275)}.dialog-2APwxL3O-.fullscreen-2RqU2pqU-{position:fixed;width:100%;max-width:100%;height:100%;max-height:100%;min-height:100%} \ No newline at end of file diff --git a/charting_library/static/bundles/12.ed5f69f19bf189f712df.js b/charting_library/static/bundles/12.ed5f69f19bf189f712df.js new file mode 100644 index 00000000..9089eafb --- /dev/null +++ b/charting_library/static/bundles/12.ed5f69f19bf189f712df.js @@ -0,0 +1,2 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[12],{"Db/h":function(t,e,o){t.exports={errors:"errors-C3KBJakt",show:"show-2G4PY7Uu",error:"error-3G4k6KUC"}},kSQs:function(t,e,o){"use strict";var i,r,s,n,h=o("mrSG"),p=o("q1tI"),a=o("TSYQ"),c=o("uqKQ"),l=o("i8i4"),d=o("Db/h"),u=o("Ialn");o.d(e,"a",function(){return r}),i=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Object(h.__extends)(e,t),e.prototype.render=function(){var t,e,o,i=this.props,r=i.children,s=void 0===r?[]:r,n=i.show,c=void 0!==n&&n,l=i.customErrorClass,m=a(d.errors,((t={})[d.show]=c,t),l),f=s.map(function(t,e){return p.createElement("div",{className:d.error,key:e},t)}),g={position:"absolute",top:this.props.top,width:this.props.width,height:this.props.height,bottom:void 0!==this.props.bottom?this.props.bottom:"100%",right:void 0!==this.props.right?this.props.right:0,left:this.props.left,zIndex:this.props.zIndex,maxWidth:this.props.maxWidth};return Object(u.isRtl)()&&(e=g.left,o=g.right,g=Object(h.__assign)(Object(h.__assign)({},g),{left:o,right:e})),p.createElement("div",{style:g,className:m},f)},e}(p.PureComponent),r=Object(c.a)((s=i,(n=function(t){function e(e){var o=t.call(this,e)||this;return o._getComponentInstance=function(t){o._instance=t},o._throttleCalcProps=function(){requestAnimationFrame(function(){return o.setState(o._calcProps(o.props))})},o.state=o._getStateFromProps(),o}return Object(h.__extends)(e,t),e.prototype.componentDidMount=function(){this._instanceElem=l.findDOMNode(this._instance),this.props.attachOnce||this._subscribe(),this.setState(this._calcProps(this.props))},e.prototype.componentDidUpdate=function(t){var e=this;t.children===this.props.children&&t.top===this.props.top&&t.left===this.props.left&&t.width===this.props.width||this.setState(this._getStateFromProps(),function(){return e.setState(e._calcProps(e.props))})},e.prototype.render=function(){return p.createElement("div",{style:{position:"absolute",width:"100%",top:0,left:0}},p.createElement(s,Object(h.__assign)({},this.props,{ref:this._getComponentInstance,top:this.state.top,bottom:void 0!==this.state.bottom?this.state.bottom:"auto",right:void 0!==this.state.right?this.state.right:"auto",left:this.state.left,width:this.state.width,maxWidth:this.state.maxWidth}),this.props.children))},e.prototype.componentWillUnmount=function(){this._unsubsribe()},e.prototype._getStateFromProps=function(){return{bottom:this.props.bottom,left:this.props.left,right:this.props.right,top:void 0!==this.props.top?this.props.top:-1e4,width:this.props.inheritWidthFromTarget?this.props.target&&this.props.target.getBoundingClientRect().width:this.props.width,maxWidth:this.props.inheritMaxWidthFromTarget&&this.props.target&&this.props.target.getBoundingClientRect().width}},e.prototype._calcProps=function(t){var e,o,i,r,s,n,h,p;if(t.target&&t.attachment&&t.targetAttachment){if(null===(e=this._calcTargetProps(t.target,t.attachment,t.targetAttachment)))return{};switch(i=(o=this.props).width,s=void 0===(r=o.inheritWidthFromTarget)||r, +h=void 0!==(n=o.inheritMaxWidthFromTarget)&&n,p={width:s?e.width:i,maxWidth:h?e.width:void 0},t.attachment.vertical){case"bottom":case"middle":p.top=e.y;break;default:p[t.attachment.vertical]=e.y}switch(t.attachment.horizontal){case"right":case"center":p.left=e.x;break;default:p[t.attachment.horizontal]=e.x}return p}return{}},e.prototype._calcTargetProps=function(t,e,o){var i,r,s,n,h=t.getBoundingClientRect(),p=this._instanceElem.getBoundingClientRect(),a="parent"===this.props.root?this._getCoordsRelToParentEl(t,h):this._getCoordsRelToDocument(h);if(null===a)return null;switch(i=this._getDimensions(p),r=this._getDimensions(h).width,s=0,n=0,e.vertical){case"top":n=a[o.vertical];break;case"bottom":n=a[o.vertical]-i.height;break;case"middle":n=a[o.vertical]-i.height/2}switch(e.horizontal){case"left":s=a[o.horizontal];break;case"right":s=a[o.horizontal]-i.width;break;case"center":s=a[o.horizontal]-i.width/2}return"number"==typeof this.props.attachmentOffsetY&&(n+=this.props.attachmentOffsetY),"number"==typeof this.props.attachmentOffsetX&&(s+=this.props.attachmentOffsetX),{x:s,y:n,width:r}},e.prototype._getCoordsRelToDocument=function(t){var e=pageYOffset,o=pageXOffset,i=t.top+e,r=t.bottom+e,s=t.left+o,n=t.right+o,h=(i+t.height)/2,p=s+t.width/2;return{top:i,bottom:r,left:s,right:n,middle:h,center:p}},e.prototype._getCoordsRelToParentEl=function(t,e){var o,i,r,s,n,h=t.offsetParent;return null===h?null:(o=h.scrollTop,i=h.scrollLeft,r=t.offsetTop+o,s=t.offsetLeft+i,n=e.width+s,{top:r,bottom:e.height+r,left:s,right:n,middle:(r+e.height)/2,center:(s+e.width)/2})},e.prototype._getDimensions=function(t){return{height:t.height,width:t.width}},e.prototype._subscribe=function(){"document"===this.props.root&&(window.addEventListener("scroll",this._throttleCalcProps,!0),window.addEventListener("resize",this._throttleCalcProps))},e.prototype._unsubsribe=function(){window.removeEventListener("scroll",this._throttleCalcProps,!0),window.removeEventListener("resize",this._throttleCalcProps)},e}(p.PureComponent)).displayName="Attachable Component",n))}}]); \ No newline at end of file diff --git a/charting_library/static/bundles/13.209e3b38b8b016091a8e.css b/charting_library/static/bundles/13.209e3b38b8b016091a8e.css new file mode 100644 index 00000000..96d38b97 --- /dev/null +++ b/charting_library/static/bundles/13.209e3b38b8b016091a8e.css @@ -0,0 +1 @@ +.errors-C3KBJakt{position:absolute;z-index:2;padding:10px 15px;color:#fff;opacity:0;text-align:center;border-radius:3px;background-color:#2a2e39;pointer-events:none;box-sizing:border-box}html.theme-dark .errors-C3KBJakt{background-color:#363c4e}.errors-C3KBJakt:empty{display:none}.errors-C3KBJakt.show-2G4PY7Uu{opacity:1}.errors-C3KBJakt .error-3G4k6KUC{font-size:12px;line-height:1.4;text-transform:none} \ No newline at end of file diff --git a/charting_library/static/bundles/13.209e3b38b8b016091a8e.rtl.css b/charting_library/static/bundles/13.209e3b38b8b016091a8e.rtl.css new file mode 100644 index 00000000..96d38b97 --- /dev/null +++ b/charting_library/static/bundles/13.209e3b38b8b016091a8e.rtl.css @@ -0,0 +1 @@ +.errors-C3KBJakt{position:absolute;z-index:2;padding:10px 15px;color:#fff;opacity:0;text-align:center;border-radius:3px;background-color:#2a2e39;pointer-events:none;box-sizing:border-box}html.theme-dark .errors-C3KBJakt{background-color:#363c4e}.errors-C3KBJakt:empty{display:none}.errors-C3KBJakt.show-2G4PY7Uu{opacity:1}.errors-C3KBJakt .error-3G4k6KUC{font-size:12px;line-height:1.4;text-transform:none} \ No newline at end of file diff --git a/charting_library/static/bundles/13.46f312828e93b6546d0c.js b/charting_library/static/bundles/13.46f312828e93b6546d0c.js deleted file mode 100644 index ab82e138..00000000 --- a/charting_library/static/bundles/13.46f312828e93b6546d0c.js +++ /dev/null @@ -1,3 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[13],{"+EG+":function(e,t,n){"use strict";var o,r,i,s;n.d(t,"a",function(){return i}),n.d(t,"b",function(){return s}),o=n("mrSG"),r=n("q1tI"),i=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o.__extends(t,e),t.prototype.shouldComponentUpdate=function(){return!1},t.prototype.render=function(){return r.createElement("div",{style:{position:"fixed",zIndex:150,left:0,top:0},ref:this.props.reference})},t}(r.Component),s=r.createContext(null)},AVTG:function(e,t,n){"use strict";function o(e){var t=e.hideIcon?null:s.createElement(a.a,{className:u.close,icon:c,onClick:e.onClose});return s.createElement("div",{className:u.header,"data-dragg-area":!0,ref:e.reference},e.children,t)}function r(e){return s.createElement("div",{className:l(d.body,e.className),ref:e.reference},e.children)}function i(e){var t,n;return e.text?t=s.createElement("span",null,e.text):e.html&&(t=s.createElement("span",{dangerouslySetInnerHTML:{__html:e.html}})),n=p.message,e.isError&&(n+=" "+p.error),t?s.createElement("div",{className:n,key:"0"},s.createElement(h.a,{mouseDown:!0,touchStart:!0,handler:e.onClickOutside},t)):s.createElement("div",null)}var s=n("q1tI"),u=n("kgsH"),c=n("uo4K"),a=n("jjrI"),d=(n("kQXJ"),n("XYXm")),l=n("TSYQ"),p=n("cJj4"),h=n("RgaO");n.d(t,"b",function(){return o}),n.d(t,"a",function(){return r}),n.d(t,"c",function(){return i})},RgaO:function(e,t,n){"use strict";var o,r,i;n.d(t,"a",function(){return i}),o=n("mrSG"),r=n("q1tI"),i=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._scope=null,t._handleScopeRef=function(e){return t._scope=e},t._handleOutsideEvent=function(e){void 0!==t.props.handler&&null!==t._scope&&e.target instanceof Node&&(t._scope.contains(e.target)||t.props.handler(e))},t}return o.__extends(t,e),t.prototype.componentDidMount=function(){this.props.click&&document.addEventListener("click",this._handleOutsideEvent,!1),this.props.mouseDown&&document.addEventListener("mousedown",this._handleOutsideEvent,!1),this.props.touchEnd&&document.addEventListener("touchend",this._handleOutsideEvent,!1),this.props.touchStart&&document.addEventListener("touchstart",this._handleOutsideEvent,!1)},t.prototype.componentWillUnmount=function(){document.removeEventListener("click",this._handleOutsideEvent,!1),document.removeEventListener("mousedown",this._handleOutsideEvent,!1),document.removeEventListener("touchend",this._handleOutsideEvent,!1),document.removeEventListener("touchstart",this._handleOutsideEvent,!1)},t.prototype.render=function(){var e=this.props,t=(e.click,e.handler,e.mouseDown,e.touchEnd,e.touchStart,e.ctor),n=void 0===t?"span":t,i=o.__rest(e,["click","handler","mouseDown","touchEnd","touchStart","ctor"]);return r.createElement(n,o.__assign({},i,{ref:this._handleScopeRef}))},t}(r.PureComponent)},XYXm:function(e,t,n){e.exports={body:"body-2N-vuwQW-"}},cJj4:function(e,t,n){e.exports={message:"message-2o-rtQm0-",error:"error-2EW0C6z--"}},jAh7:function(e,t,n){"use strict";function o(e){var t,n,o -;return void 0===e&&(e=document),null!==(t=e.getElementById("overlap-manager-root"))?Object(r.ensureDefined)(u.get(t)):(n=new s(e),o=function(e){var t=e.createElement("div");return t.style.position="absolute",t.style.zIndex=150..toString(),t.style.top="0px",t.style.left="0px",t.id="overlap-manager-root",t}(e),u.set(o,n),n.setContainer(o),e.body.appendChild(o),n)}var r,i,s,u;n.r(t),n.d(t,"OverlapManager",function(){return s}),n.d(t,"getRootOverlapManager",function(){return o}),r=n("Eyy1"),i=function(){function e(){this._storage=[]}return e.prototype.add=function(e){this._storage.push(e)},e.prototype.remove=function(e){this._storage=this._storage.filter(function(t){return e!==t})},e.prototype.has=function(e){return this._storage.includes(e)},e.prototype.getItems=function(){return this._storage},e}(),s=function(){function e(e){void 0===e&&(e=document),this._storage=new i,this._windows=new Map,this._index=0,this._document=e,this._container=e.createDocumentFragment()}return e.prototype.setContainer=function(e){var t=this._container,n=null===e?this._document.createDocumentFragment():e;!function(e,t){Array.from(e.childNodes).forEach(function(e){e.nodeType===Node.ELEMENT_NODE&&t.appendChild(e)})}(t,n),this._container=n},e.prototype.registerWindow=function(e){this._storage.has(e)||this._storage.add(e)},e.prototype.ensureWindow=function(e,t){var n,o;return void 0===t&&(t={position:"fixed"}),void 0!==(n=this._windows.get(e))?n:(this.registerWindow(e),(o=this._document.createElement("div")).style.position=t.position,o.style.zIndex=this._index.toString(),o.dataset.id=e,this._container.appendChild(o),this._windows.set(e,o),++this._index,o)},e.prototype.unregisterWindow=function(e){this._storage.remove(e);var t=this._windows.get(e);void 0!==t&&(null!==t.parentElement&&t.parentElement.removeChild(t),this._windows.delete(e))},e.prototype.getZindex=function(e){var t=this.ensureWindow(e);return parseInt(t.style.zIndex||"0")},e.prototype.moveToTop=function(e){this.getZindex(e)!==this._index&&(this.ensureWindow(e).style.zIndex=(++this._index).toString())},e.prototype.removeWindow=function(e){this.unregisterWindow(e)},e}(),u=new WeakMap},jjrI:function(e,t,n){"use strict";function o(e){var t=e.className,n=e.icon,o=void 0===n?"":n,s=e.title,u=e.onClick,c=e.onMouseDown,a=e.onMouseUp,d=e.onMouseLeave,l=e.reference,p=r.__rest(e,["className","icon","title","onClick","onMouseDown","onMouseUp","onMouseLeave","reference"]);return i.createElement("span",r.__assign({},p,{title:s,className:t,dangerouslySetInnerHTML:{__html:o},onClick:u,onMouseDown:c,onMouseUp:a,onMouseLeave:d,ref:l}))}var r,i;n.d(t,"a",function(){return o}),r=n("mrSG"),i=n("q1tI")},kQXJ:function(e,t,n){e.exports={footer:"footer-2Zoji8zg-"}},kgsH:function(e,t,n){e.exports={header:"header-dpl-vtN_-",close:"close-3kPn4OTV-"}},uo4K:function(e,t){ -e.exports=''},"ycI/":function(e,t,n){"use strict";var o,r,i;n.d(t,"a",function(){return i}),o=n("mrSG"),r=n("q1tI"),i=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._handleKeyDown=function(e){e.keyCode===t.props.keyCode&&t.props.handler(e)},t}return o.__extends(t,e),t.prototype.componentDidMount=function(){document.addEventListener(this.props.eventType||"keydown",this._handleKeyDown,!1)},t.prototype.componentWillUnmount=function(){document.removeEventListener(this.props.eventType||"keydown",this._handleKeyDown,!1)},t.prototype.render=function(){return null},t}(r.PureComponent)}}]); \ No newline at end of file diff --git a/charting_library/static/bundles/13.c886cc29310f10f235a2.js b/charting_library/static/bundles/13.c886cc29310f10f235a2.js new file mode 100644 index 00000000..613b0543 --- /dev/null +++ b/charting_library/static/bundles/13.c886cc29310f10f235a2.js @@ -0,0 +1 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[13],[]]); \ No newline at end of file diff --git a/charting_library/static/bundles/14.579d7892443d1a90180c.js b/charting_library/static/bundles/14.579d7892443d1a90180c.js deleted file mode 100644 index 21068f1c..00000000 --- a/charting_library/static/bundles/14.579d7892443d1a90180c.js +++ /dev/null @@ -1,4 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[14],{"1O6C":function(t,e,n){"use strict";var o,i,r,s,a,u,h,l;n.d(e,"a",function(){return l}),o=n("mrSG"),i=n("q1tI"),r=n("TSYQ"),s=n("+EG+"),a=n("jAh7"),u=n("QpNh"),h=n("aYmi"),l=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._manager=new a.OverlapManager,e._handleSlot=function(t){e._manager.setContainer(t)},e}return o.__extends(e,t),e.prototype.render=function(){var t=this.props,e=t.rounded,n=void 0===e||e,a=t.shadowed,l=void 0===a||a,c=t.fullscreen,d=void 0!==c&&c,p=t.className,_=r(p,h.dialog,n&&h.rounded,l&&h.shadowed,d&&h.fullscreen),g=Object(u.a)(this.props);return i.createElement(i.Fragment,null,i.createElement(s.b.Provider,{value:this._manager},i.createElement("div",o.__assign({},g,{className:_,style:this._createStyles(),ref:this.props.reference,onFocus:this.props.onFocus,onMouseDown:this.props.onMouseDown,onMouseUp:this.props.onMouseUp,onClick:this.props.onClick,onKeyDown:this.props.onKeyDown,tabIndex:-1}),this.props.children)),i.createElement(s.a,{reference:this._handleSlot}))},e.prototype._createStyles=function(){var t=this.props,e=t.bottom,n=t.left,o=t.width;return{bottom:e,left:n,right:t.right,top:t.top,zIndex:t.zIndex,maxWidth:o,height:t.height}},e}(i.PureComponent)},AiMB:function(t,e,n){"use strict";var o,i,r,s,a,u,h,l;n.d(e,"a",function(){return h}),n.d(e,"b",function(){return l}),o=n("mrSG"),i=n("q1tI"),r=n("i8i4"),s=n("0waE"),a=n("jAh7"),u=n("+EG+"),h=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._uuid=Object(s.guid)(),e}return o.__extends(e,t),e.prototype.componentWillUnmount=function(){this._manager().removeWindow(this._uuid)},e.prototype.render=function(){return r.createPortal(i.createElement(l.Provider,{value:this},this.props.children),this._manager().ensureWindow(this._uuid))},e.prototype.moveToTop=function(){this._manager().moveToTop(this._uuid)},e.prototype._manager=function(){return null===this.context?Object(a.getRootOverlapManager)():this.context},e.contextType=u.b,e}(i.PureComponent),l=i.createContext(null)},QpNh:function(t,e,n){"use strict";function o(t){var e,n,o,r,s,a=Object.entries(t).filter(i),u={};for(e=0,n=a;eo&&(t=o-e),t
{{text}}'+s+'
{{^removeOkButton}}
{{/removeOkButton}}',{captionClassName:r,classSuffix:e.classSuffix||"",text:o,removeOkButton:e&&e.removeOkButton})),n.modalDialog.find("._tv-button.ok").on("click",function(){n.destroy(),e.onOkButtonClick&&e.onOkButtonClick()}),n.positionDialog(),n.applyHandlers(!1,{doNotCloseOnBgClickIfShadowbox:a,beforeDestroy:e.onClose}),n.modalDialog},showCustomDialog:function(t){function o(t){n.destroy(),t.preventDefault()}return n.createModalDialog(t.title||$.t("Dialog"),{addClass:""}),n.modalDialog.find("._tv-dialog").css("width",t.width||"400px"),n.modalDialog.find("._tv-dialog-content").html('
'+(t.html||$.t("Content"))+"
"),n.modalDialog.find(".ok").click(o),n.modalDialog.find("form").submit(o),n.modalDialog.find(".cancel").click(o),n.modalDialog.find("._tv-dialog-title-close").click(o),n.positionDialog(),n.applyHandlers(), -n.modalDialog},createModalDialog:function(t,o){var e,i;return o=o||{},null!==n.modalDialog&&n.destroy(),n.modalDialog=$('
'+(o.noHeader?"":'
'+(o.noClose?"":'')+''+t+"
")+'
').appendTo($("body")).data("title",t),n._addMessageCloseButton(n.modalDialog.find("._tv-dialog-error")),n._addMessageCloseButton(n.modalDialog.find("._tv-dialog-message")),o.noShadowBox&&n.modalDialog.addClass("transparent"),o.addClass&&n.modalDialog.addClass(o.addClass),o.width&&n.modalDialog.find("._tv-dialog").css({width:o.width}),o.content&&n.modalDialog.find("._tv-dialog-content").html(o.content),(e=$(".fancybox-overlay")).length&&(i=e.css("z-index"),$("._tv-dialog-shadowbox").css("z-index",i+1)),o.draggable&&s(n.modalDialog).draggable(n._constrainDraggableOptionsIfNeeded({handle:n.modalDialog.find("._tv-dialog-title")})),o.zIndex&&n.modalDialog.css("z-index",o.zIndex),n.modalDialog},_addMessageCloseButton:function(t){var o=$(e("BhuR")).attr({class:"close",title:$.t("Close message")});t.append(o),$(o).on("click",function(){t.animate({marginTop:n.NOTIFICATION_ANIMATION_START_OFFSET,opacity:0},"fast",function(){t.hide()})})},createDialog:function(t,o){var e,d,r,c,u,g;return n.isOpen(t)?((e=n.get(t)).find("._tv-dialog-content").html(""),e.data("new",!1),e):(d=(o=o||{}).ownerDocument||document,c=(r=l(d)).ensureWindow(t,{position:"relative"}),e=$(i.render('
{{^hideTitle}} {{&title}}{{/hideTitle}}{{^hideCloseCross}}{{/hideCloseCross}}
',{addClass:o.addClass||"",hideTitle:o.hideTitle,hideCloseCross:o.hideCloseCross,title:t}),d).appendTo(c),n._addMessageCloseButton(e.find("._tv-dialog-error")),n._addMessageCloseButton(e.find("._tv-dialog-message")),o.width&&e.css({width:o.width}),o.content&&e.find("._tv-dialog-content").html(o.content),u=0,u=o.zIndex?o.zIndex:n.dialogs&&n.dialogs.length?a($.map(n.dialogs,function(t){return parseInt((t.dialog||t).css("z-index"),10)}))+1:110,e.css("z-index",u),e.data("new",!0),e.data("title",t),e.data("id",n.dialogs.length+1),n.dialogs.push({title:t,dialog:e,id:n.dialogs.length+1}),e.on("mousedown touchstart",function(){r.moveToTop(t)}),g={start:function(t,o){var e,i,a=o.helper.css("z-index"),s=0,l=null;for(e=0;es&&(s=i,l=n.dialogs[e].dialog) -;o.helper.css("z-index",s),l.css("z-index",a)}},o.dragHandle?g.handle=o.dragHandle:o.hideTitle||(g.handle="._tv-dialog-title"),o.dragOptions&&$.extend(g,o.dragOptions),s(e).draggable(n._constrainDraggableOptionsIfNeeded(g)),e)},positionDialog:function(t,o,e){function i(){a.css("margin-left",-Math.round(a.outerWidth()/2)+"px"),a.css("margin-top",-Math.round(a.outerHeight()/2)+"px")}var a,s,l,d,r,c,u,g,p,f;e=e||{},o=o||e.position,t?(l=(s=t.prop("ownerDocument")).defaultView,d=t.width(),r=t.height(),c=$(l).width(),u=$(l).height(),o&&o.top&&o.left?(p=e.forcePosition?o.left:Math.max(2,Math.min(c-d-4,o.left))+"px",g=e.forcePosition?o.top:Math.max(2,Math.min(u-r-4,o.top))+"px"):o&&o.considerScroll?(f=$(s),p=Math.round((c-d)/2+f.scrollLeft())+"px",g=Math.round((u-r)/2+f.scrollTop())+"px"):(p=Math.round((c-d)/2)+"px",g=Math.round((u-r)/2)+"px"),e.fadeIn?t.css({left:p,top:g}).hide().fadeIn("fast"):e.smooth?t.animate({left:p,top:g}):t.css({left:p,top:g})):(t=n.modalDialog,a=t.find("._tv-dialog"),i(),a.resize(i))},applyHandlers:function(t,o){var e,i,a,s=!t||t===this.modalDialog;o=o||{},e=s?function(){n.destroy()}:function(){n.destroy(t.data("title"))},t=t||n.modalDialog.find("._tv-dialog"),i=t.prop("ownerDocument"),o.beforeDestroy&&t.on("destroy",o.beforeDestroy),t.find("._tv-dialog-title ._tv-dialog-title-close, .js-dialog-close").on("click",function(t){o.closeHandler&&"function"==typeof o.closeHandler?o.closeHandler(t):e()}),o.doNotCloseOnBgClick||setTimeout(function(){$(i).on("mousedown.closeDialog",function(n){var a=$(n.target).parents().andSelf();a.is(t)||o.doNotCloseOnBgClickIfShadowbox&&a.is("._tv-dialog-shadowbox, .tv-dialog__modal-wrap")||a.is(".colorpicker, .charts-popup-list, ._tv-dialog, .tvcolorpicker-popup, .symbol-edit-popup, .ui-datepicker, .clockpicker-popover, .pac-container, .context-menu-wrapper")||($(i).off("mousedown.closeDialog"),e())})},0),t.find('input[type="checkbox"]').change(function(){var t=$(this),o=t.next("._tv-dialog-checkbox-mask");o.toggleClass("disabled",t.prop("disabled")).toggleClass("_tv-dialog-checkbox-mask-active",t.is(":checked"))}),a=t.find('input[type="text"]').focus(function(){$(this).addClass("_tv-dialog-content-textactive")}).blur(function(){$(this).removeClass("_tv-dialog-content-textactive")}).first(),Modernizr.mobiletouch||o.notFocusFirst||a.focus(),t.find('input[type="password"]').focus(function(){$(this).addClass("_tv-dialog-content-textactive")}).blur(function(){$(this).removeClass("_tv-dialog-content-textactive")}),t.find("textarea").focus(function(){$(this).addClass("_tv-dialog-content-textareaactive")}).blur(function(){$(this).removeClass("_tv-dialog-content-textareaactive")}),t.find("._tv-dialog-checkbox-mask").click(function(){var t=$(this).prev();t.prop("disabled")||(t.prop("checked",!t[0].checked),t.change())}),o.doNotCloseOnEsc||$(i).bind("keyup.hideDialog",function(o){if(27===o.keyCode)return t?n.destroy(t.data("title")):n.destroy(),!1}),o.processEnterButton&&$(i).bind("keyup.confirmAndCloseDialog",function(t){ -13===t.keyCode&&"textarea"!==t.target.tagName.toLowerCase()&&(o.processEnterButton.click(),$(i).unbind("keyup.confirmAndCloseDialog"))})},showError:function(t,o,e){n.showMessage(t,o,$.extend(e||{},{isError:!0}))},showMessage:function(t,o,e){var i,a,s;o||(o=$("._tv-dialog")),i=(e=e||{}).isError?"_tv-dialog-error":"_tv-dialog-message",s=(a=o.find("."+i)).find(".message"),e.html?s.html("string"==typeof e.html?e.html:t):s.text(t),s.css("width",o.width()).toggleClass("selectable",Boolean(e.selectable)),a.toggleClass("with-close",Boolean(e.withClose)).css({marginTop:n.NOTIFICATION_ANIMATION_START_OFFSET,opacity:"0"}).show().animate({marginTop:0,opacity:1},"fast"),e.withClose||(e.hideWithoutAnimation?a.on("touchstartoutside mousedownoutside keydownoutside",function t(){a.hide(),a.off("touchstartoutside mousedownoutside keydownoutside",t)}):a.on("touchstartoutside mousedownoutside keydownoutside",function t(){a.animate({marginTop:n.NOTIFICATION_ANIMATION_START_OFFSET,opacity:0},"fast",function(){a.hide()}),a.off("touchstartoutside mousedownoutside keydownoutside",t)}))},isOpen:function(t){for(var o=0;oi&&(n-=t-i,n=Math.max(0,n),o.height(n))}},t.exports.TVOldDialogs=n}).call(this,e("Kxc7"),e("OiQe"))},PVgW:function(t,o,e){"use strict";function i(t){return t=Math.abs(t),!Object(r.isInteger)(t)&&t>1&&(t=parseFloat(t.toString().replace(/^.+\./,"0."))),0').appendTo(l.parent()),e=$('
').html(c).appendTo(o),i=$('
').html(c).appendTo(o),o.on("mousedown",function(t){t.preventDefault(),l.focus()}),e.click(function(){l.is(":disabled")||a(l)}),i.click(function(){l.is(":disabled")||s(l)}),l.keydown(function(t){l.is(":disabled")||(38===t.keyCode?e.addClass("i-active"):40===t.keyCode&&i.addClass("i-active"))}),l.keyup(function(t){l.is(":disabled")||(38===t.keyCode?(a(l),e.removeClass("i-active")):40===t.keyCode&&(s(l),i.removeClass("i-active")))}),l.mousewheel(function(t){t.deltaY*(t.deltaFactor/100)>0?e.click():i.click()}))})}},"R4+T":function(t,o){t.exports=''},jAh7:function(t,o,e){"use strict";function i(t){var o,e,i;return void 0===t&&(t=document),null!==(o=t.getElementById("overlap-manager-root"))?Object(n.ensureDefined)(l.get(o)):(e=new s(t),i=function(t){var o=t.createElement("div");return o.style.position="absolute",o.style.zIndex=150..toString(),o.style.top="0px",o.style.left="0px",o.id="overlap-manager-root",o}(t),l.set(i,e),e.setContainer(i),t.body.appendChild(i),e)}var n,a,s,l;e.r(o),e.d(o,"OverlapManager",function(){return s}),e.d(o,"getRootOverlapManager",function(){return i}),n=e("Eyy1"),a=function(){function t(){this._storage=[]}return t.prototype.add=function(t){this._storage.push(t)},t.prototype.remove=function(t){this._storage=this._storage.filter(function(o){return t!==o})},t.prototype.has=function(t){return this._storage.includes(t)},t.prototype.getItems=function(){return this._storage},t}(),s=function(){function t(t){void 0===t&&(t=document),this._storage=new a,this._windows=new Map,this._index=0,this._document=t,this._container=t.createDocumentFragment()}return t.prototype.setContainer=function(t){var o=this._container,e=null===t?this._document.createDocumentFragment():t;!function(t,o){Array.from(t.childNodes).forEach(function(t){t.nodeType===Node.ELEMENT_NODE&&o.appendChild(t)})}(o,e),this._container=e},t.prototype.registerWindow=function(t){this._storage.has(t)||this._storage.add(t)},t.prototype.ensureWindow=function(t,o){var e,i;return void 0===o&&(o={position:"fixed"}),void 0!==(e=this._windows.get(t))?e:(this.registerWindow(t),(i=this._document.createElement("div")).style.position=o.position,i.style.zIndex=this._index.toString(), -i.dataset.id=t,this._container.appendChild(i),this._windows.set(t,i),++this._index,i)},t.prototype.unregisterWindow=function(t){this._storage.remove(t);var o=this._windows.get(t);void 0!==o&&(null!==o.parentElement&&o.parentElement.removeChild(o),this._windows.delete(t))},t.prototype.getZindex=function(t){var o=this.ensureWindow(t);return parseInt(o.style.zIndex||"0")},t.prototype.moveToTop=function(t){this.getZindex(t)!==this._index&&(this.ensureWindow(t).style.zIndex=(++this._index).toString())},t.prototype.removeWindow=function(t){this.unregisterWindow(t)},t}(),l=new WeakMap},"y1L/":function(t,o,e){},zjLg:function(t,o,e){}}]); \ No newline at end of file diff --git a/charting_library/static/bundles/15.cd44d8a87856ff7ab0d3.js b/charting_library/static/bundles/15.cd44d8a87856ff7ab0d3.js new file mode 100644 index 00000000..68b568d1 --- /dev/null +++ b/charting_library/static/bundles/15.cd44d8a87856ff7ab0d3.js @@ -0,0 +1,3 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[15],{HSjo:function(e,n,t){"use strict";function r(e,n){return Object(D.__assign)({propType:"checkable",properties:e},n)}function i(e,n,t){return Object(D.__assign)({propType:"checkableSet",properties:e,childrenDefinitions:t},n)}function o(e,n){return Object(D.__assign)({propType:"color",properties:e,noAlpha:!1},n)}function u(e,n){var t=Object(D.__assign)({propType:"line",properties:e},n);return void 0!==t.properties.style&&(t.styleValues=k),void 0!==t.properties.width&&(t.widthValues=z),void 0===t.properties.leftEnd&&void 0===t.properties.rightEnd||void 0!==t.endsValues||(t.endsValues=N),void 0!==t.properties.value&&void 0===t.valueType&&(t.valueType=1),t}function s(e,n){var t=Object(D.__assign)({propType:"leveledLine",properties:e},n);return void 0!==t.properties.style&&(t.styleValues=P),void 0!==t.properties.width&&(t.widthValues=M),t}function c(e,n){return Object(D.__assign)({propType:"number",properties:e,type:1},n)}function a(e,n){return Object(D.__assign)({propType:"options",properties:e},n)}function p(e,n){return Object(D.__assign)({propType:"twoOptions",properties:e},n)}function l(e,n){var t=Object(D.__assign)(Object(D.__assign)({propType:"text",properties:e},n),{isEditable:n.isEditable||!1});return void 0!==t.properties.size&&void 0===t.sizeItems&&(t.sizeItems=C),void 0!==t.properties.alignmentVertical&&void 0===t.alignmentVerticalItems&&(t.alignmentVerticalItems=x),void 0!==t.properties.alignmentHorizontal&&void 0===t.alignmentHorizontalItems&&(t.alignmentHorizontalItems=W),(t.alignmentVerticalItems||t.alignmentHorizontalItems)&&void 0===t.alignmentTitle&&(t.alignmentTitle=R),void 0!==t.properties.borderWidth&&void 0===t.borderWidthItems&&(t.borderWidthItems=J),t}function f(e,n){return Object(D.__assign)({propType:"twoColors",properties:e,noAlpha1:!1,noAlpha2:!1},n)}function d(e,n){return Object(D.__assign)({propType:"coordinates",properties:e},n)}function v(e,n){return Object(D.__assign)({propType:"range",properties:e},n)}function b(e,n){return Object(D.__assign)({propType:"transparency",properties:e},n)}function g(e,n){return Object(D.__assign)({propType:"symbol",properties:e},n)}function y(e,n){return Object(D.__assign)({propType:"session",properties:e},n)}function _(e,n,t){return{id:n,title:t,groupType:"general",definitions:new q.a(e)}}function T(e,n,t){return{id:n,title:t,groupType:"leveledLines",definitions:new q.a(e)}}function w(e,n){var t=new Map,r=void 0!==n?n[0]:function(e){return e},i=void 0!==n?void 0!==n[1]?n[1]:n[0]:function(e){return e},o={value:function(){return r(e.value())},setValue:function(n){e.setValue(i(n))},subscribe:function(n,r){var i=function(e){r(o)};t.set(r,i),e.subscribe(n,i)},unsubscribe:function(n,r){var i=t.get(r);i&&(e.unsubscribe(n,i),t.delete(r))},unsubscribeAll:function(n){e.unsubscribeAll(n),t.clear()}};return o}function m(e,n,t,r){var i=w(n,r),o=void 0!==r?void 0!==r[1]?r[1]:r[0]:function(e){return e};return i.setValue=function(r){return e.setProperty(n,o(r),t)},i}function h(e,n,t,r){var i=function(e,n){ +var t=new Map,r=void 0!==n?n[0]:function(e){return e},i=void 0!==n?void 0!==n[1]?n[1]:n[0]:function(e){return e},o={value:function(){return r(e.value())},setValue:function(n){e.setValue(i(n))},subscribe:function(n,r){var i=function(){r(o)},u=t.get(n);void 0===u?((u=new Map).set(r,i),t.set(n,u)):u.set(r,i),e.subscribe(i)},unsubscribe:function(n,r){var i,o=t.get(n);void 0!==o&&void 0!==(i=o.get(r))&&(e.unsubscribe(i),o.delete(r))},unsubscribeAll:function(n){var r=t.get(n);void 0!==r&&(r.forEach(function(n,t){e.unsubscribe(n)}),r.clear())}};return o}(n,r),o=void 0!==r?void 0!==r[1]?r[1]:r[0]:function(e){return e};return i.setValue=function(r){return e.undoHistory().setWatchedValue(n,o(r),t)},i}function O(e,n){var t=w(n);return t.setValue=function(n){return e.setPriceScaleSelectionStrategy(n)},t}function E(e,n,t,r){var i=w(n);return i.setValue=function(n){var i={lockScale:n};e.setPriceScaleMode(i,t,r)},i}function j(e,n,t,r){var i=w(n,r);return i.setValue=function(r){e.setScaleRatioProperty(n,r,t)},i}function V(e,n){if(Object(F.isHexColor)(e)){var t=Object(B.parseRgb)(e);return Object(B.rgbaToString)(Object(B.rgba)(t,(100-n)/100))}return e}function S(e,n,t,r){var i;return(i=null!==t?function(e){var n=w(e);return n.destroy=function(){e.destroy()},n}(function(e){var n,t,r,i,o,u,s,c=[];for(n=1;n'},WboT:function(e,t,n){"use strict";function r(e){var t=u(C.control,C.controlIncrease),n=u(C.control,C.controlDecrease);return a.createElement("div",{className:u(C.controlWrapper,!e.visible&&C.hidden)},a.createElement("div",{className:t,onClick:e.increaseValue},a.createElement(b.a,{icon:w,className:C.increaseControlIcon})),a.createElement("div",{className:n,onClick:e.decreaseValue},a.createElement(b.a,{icon:w,className:C.decreaseControlIcon})))}function o(e){function t(){e.disabled||e.onValueByStepChange(1)}function n(){e.disabled||e.onValueByStepChange(-1)}var o,a,u=Object(E.b)(),p=u[0],h=u[1],d=Object(y.a)(),f=d[0],m=d[1],g=Object(O.a)(m.onFocus,e.onFocus),b=Object(O.a)(m.onBlur,e.onBlur);return l.a.createElement(v,Object(c.__assign)({},h,{name:e.name,pattern:e.pattern,borderStyle:e.borderStyle,fontSizeStyle:e.fontSizeStyle,value:e.value,className:e.className,button:(o=e.button,a=e.forceShowControls,e.disabled?void 0:l.a.createElement(l.a.Fragment,null,o||l.a.createElement(r,{visible:!Modernizr.mobiletouch&&(a||f||p),increaseValue:t,decreaseValue:n}))),disabled:e.disabled,placeholder:e.placeholder,containerReference:e.containerReference,inputReference:e.inputReference,inputMode:e.inputMode,error:e.error,errorMessage:e.errorMessage,showErrorMessage:e.error&&p,onClick:e.onClick,onFocus:g,onBlur:b,onChange:e.onValueChange,onKeyDown:function(t){var n,r;e.disabled||0!==Object(N.modifiersFromEvent)(t.nativeEvent)||(n=i,r=s, +e.controlDecKeyCodes&&(r=r.concat(e.controlDecKeyCodes)),e.controlIncKeyCodes&&(n=n.concat(e.controlIncKeyCodes)),(r.includes(t.keyCode)||n.includes(t.keyCode))&&(t.preventDefault(),e.onValueByStepChange(r.includes(t.keyCode)?-1:1)),e.onKeyDown&&e.onKeyDown(t))},onWheel:function(t){e.disabled||f&&(t.deltaY<0?e.onValueByStepChange(1):e.onValueByStepChange(-1))}}))}var i,s,c=n("mrSG"),a=n("q1tI"),l=n.n(a),u=(n("bf9a"),n("TSYQ")),p=n("kSQs"),h=n("Eyy1"),d=n("Ialn"),f=n("qFKp"),m=n("ZgM/"),g={attachment:{horizontal:"left",vertical:"bottom"},targetAttachment:{horizontal:"left",vertical:"top"}},v=function(e){function t(t){var n=e.call(this,t)||this;return n._input=null,n._buttons=null,n._container=null,n._onBlur=function(e){n.setState({focused:!1}),n.props.onBlur&&n.props.onBlur(e)},n._onFocus=function(e){n.setState({focused:!0}),n.props.onFocus&&n.props.onFocus(e)},n._containerFocus=function(e){!Modernizr.mobiletouch&&n._buttons&&n._buttons.contains(e.target)&&Object(h.ensureNotNull)(n._input).focus()},n._setContainerRef=function(e){n._container=e,n.props.containerReference&&n.props.containerReference(e)},n._setInputRef=function(e){n._input=e,n.props.inputReference&&n.props.inputReference(e)},n._setButtonsRef=function(e){n._buttons=e},n.state={focused:!1},n}return Object(c.__extends)(t,e),t.prototype.componentDidMount=function(){this.props.onWheelNoPassive&&this._addPassiveListenerOnWheel(this.props.onWheelNoPassive)},t.prototype.componentDidUpdate=function(e){this.props.onWheelNoPassive!==e.onWheelNoPassive&&this._updatePassiveListenerOnWheel(e.onWheelNoPassive)},t.prototype.componentWillUnmount=function(){this.props.onWheelNoPassive&&this._removePassiveListenerOnWheel(this.props.onWheelNoPassive)},t.prototype.render=function(){var e,t,n,r,o,i,s,c;return this.props.error?e=m.error:this.props.warning&&(e=m.warning),r=void 0===(n=(t=this.props).borderStyle)?"thick":n,i=void 0===(o=t.fontSizeStyle)?"large":o,s=u(m.inputWithErrorWrapper,"thick"===r&&m.thickBorder,this.props.className,this.state.focused&&!this.props.disabled&&m.focused,e,this.props.disabled&&m.disabled,this.props.readOnly&&m.readonly),c=u(m.innerInput,"large"===i&&m.largeFont,Object(d.isRtl)()&&!f.isChrome&&m.innerInputFix),a.createElement("div",{className:s},a.createElement("div",{className:m.inputWithError,ref:this._setContainerRef,onMouseOver:this.props.onMouseOver,onMouseOut:this.props.onMouseOut,onClick:this.props.onClick,onFocus:this._containerFocus,onWheel:this.props.onWheel},a.createElement("div",{className:u(m.inputContainer,Object(d.isRtl)()&&!f.isChrome&&m.inputContainerFix)},a.createElement("div",{className:m.innerInputContainer},a.createElement("input",{name:this.props.name,ref:this._setInputRef,className:c,pattern:this.props.pattern,type:this.props.type||"text",value:this.props.value,placeholder:this.props.placeholder,readOnly:this.props.readOnly,disabled:this.props.disabled,inputMode:this.props.inputMode,onBlur:this._onBlur,onChange:this.props.onChange,onClick:this.props.onInputClick,onFocus:this._onFocus,onKeyDown:this.props.onKeyDown, +onKeyUp:this.props.onKeyUp})),a.createElement("div",{className:m.iconBlock,onClick:this.props.onButtonClick,tabIndex:-1,ref:this._setButtonsRef},this.props.button)),this.props.children),this._renderError())},t.prototype._renderError=function(){return void 0!==this.props.errorMessage?a.createElement(p.a,{root:"document",show:!0,isOpened:this.props.showErrorMessage,targetAttachment:g.targetAttachment,attachment:g.attachment,target:this._container||void 0,inheritWidthFromTarget:!0,customErrorClass:m.errorMessage,attachmentOffsetY:-4},[this.props.errorMessage]):void 0},t.prototype._updatePassiveListenerOnWheel=function(e){e&&this._removePassiveListenerOnWheel(e),this.props.onWheelNoPassive&&this._addPassiveListenerOnWheel(this.props.onWheelNoPassive)},t.prototype._addPassiveListenerOnWheel=function(e){Object(h.ensureNotNull)(this._container).addEventListener("wheel",e,{passive:!1})},t.prototype._removePassiveListenerOnWheel=function(e){Object(h.ensureNotNull)(this._container).removeEventListener("wheel",e)},t}(a.PureComponent),b=n("jjrI"),w=n("R4+T"),C=n("uZsJ"),E=n("8d0Q"),y=n("Oi2w"),O=n("l9+T"),N=n("/3z9");n.d(t,"a",function(){return o}),i=[38],s=[40]},Wvr1:function(e,t,n){"use strict";function r(e){var t="";return 0!==e&&(1&e&&(t=i()(t,s["corner-top-left"])),2&e&&(t=i()(t,s["corner-top-right"])),4&e&&(t=i()(t,s["corner-bottom-right"])),8&e&&(t=i()(t,s["corner-bottom-left"]))),t}var o,i,s;n.d(t,"a",function(){return r}),o=n("TSYQ"),i=n.n(o),s=n("Hk3L")},"ZgM/":function(e,t,n){e.exports={inputWithErrorWrapper:"inputWithErrorWrapper-3VldItns",disabled:"disabled-1H5pTmbC",thickBorder:"thickBorder-17UV-SuS",readonly:"readonly-3wmbSVwP",focused:"focused-3rk113Ah",innerInput:"innerInput-29Ku0bwF",error:"error-32uXEKXM",warning:"warning-1fcuxDP3",inputWithError:"inputWithError-1wKt_k8s",inputContainer:"inputContainer-2JfcvOzg",inputContainerFix:"inputContainerFix-3bYyvsOT",innerInputContainer:"innerInputContainer-FSOtBYl0",largeFont:"largeFont-1Tlrlf5g",innerInputFix:"innerInputFix-3nQEuMmn",errorMessage:"errorMessage-3U3e1ayv",iconBlock:"iconBlock-1uOkuIhU"}},"k+zC":function(e,t,n){"use strict";function r(e){var t=e.onFocus,n=e.onBlur,r=e.intent,c=e.highlight,a=Object(i.a)(),l=a[0],u=a[1],p=Object(s.a)(u.onFocus,t),h=Object(s.a)(u.onBlur,n);return Object(o.__assign)(Object(o.__assign)({},e),{intent:r||(l?"primary":"default"),highlight:c||l,onFocus:p,onBlur:h})}var o,i,s;n.d(t,"a",function(){return r}),o=n("mrSG"),i=n("Oi2w"),s=n("l9+T")},"l9+T":function(e,t,n){"use strict";function r(){var e,t=[];for(e=0;e=5;else if(2===n)r=o[i]>5||5==o[i]&&(r||i<0||o[i+1]!==b||1&o[i-1]);else if(3===n)r=r||!!o[0];else if(r=!1,0!==n)throw Error(g);if(i<1)o.length=1,r?(e.e=-t,o[0]=1):o[0]=e.e=0;else{if(o.length=i--,r)for(;++o[i]>9;)o[i]=0,i--||(++e.e,o.unshift(1)) +;for(i=o.length;!o[--i];)o.pop()}}else if(n<0||n>3||n!==~~n)throw Error(g);return e}function s(e,t,n,r){var o,s,c=e.constructor,a=!e.c[0];if(n!==b){if(n!==~~n||n<(3==t)||n>u)throw Error(3==t?f+"precision":m);for(n=r-(e=new c(e)).e,e.c.length>++r&&i(e,n,c.RM),2==t&&(r=e.e+n+1);e.c.length=c.PE))s=s.charAt(0)+(n>1?"."+s.slice(1):"")+(o<0?"e":"e+")+o;else if(o<0){for(;++o;)s="0"+s;s="0."+s}else if(o>0)if(++o>n)for(o-=n;o--;)s+="0";else o1&&(s=s.charAt(0)+"."+s.slice(1));return e.s<0&&(!a||4==t)?"-"+s:s}var c,a=20,l=1,u=1e6,p=-7,h=21,d="[big.js] ",f=d+"Invalid ",m=f+"decimal places",g=f+"rounding mode",v={},b=void 0,w=/^-?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i;v.abs=function(){var e=new this.constructor(this);return e.s=1,e},v.cmp=function(e){var t,n=this,r=n.c,o=(e=new n.constructor(e)).c,i=n.s,s=e.s,c=n.e,a=e.e;if(!r[0]||!o[0])return r[0]?i:o[0]?-s:0;if(i!=s)return i;if(t=i<0,c!=a)return c>a^t?1:-1;for(s=(c=r.length)<(a=o.length)?c:a,i=-1;++io[i]^t?1:-1;return c==a?0:c>a^t?1:-1},v.div=function(e){var t,n,r,o,s,c,a,l,p,h,d,f,g,v,w=this,C=w.constructor,E=w.c,y=(e=new C(e)).c,O=w.s==e.s?1:-1,N=C.DP;if(N!==~~N||N<0||N>u)throw Error(m);if(!y[0])throw Error("[big.js] Division by zero");if(!E[0])return new C(0*O);for(c=y.slice(),a=t=y.length,l=E.length,h=(p=E.slice(0,t)).length,f=(d=e).c=[],g=0,v=N+(d.e=w.e-e.e)+1,d.s=O,O=v<0?0:v,c.unshift(0);h++h?1:-1;else for(s=-1,o=0;++sp[s]?1:-1;break}if(!(o<0))break;for(n=h==t?y:c;h;){if(p[--h]v&&i(d,N,C.RM,p[0]!==b),d},v.eq=function(e){return!this.cmp(e)},v.gt=function(e){return this.cmp(e)>0},v.gte=function(e){return this.cmp(e)>-1},v.lt=function(e){return this.cmp(e)<0},v.lte=function(e){return this.cmp(e)<1},v.minus=v.sub=function(e){var t,n,r,o,i,s,c,a,l=this,u=l.constructor,p=l.s,h=(e=new u(e)).s;if(p!=h)return e.s=-h,l.plus(e);if(i=l.c.slice(),s=l.e,c=e.c,a=e.e,!i[0]||!c[0])return c[0]?(e.s=-h,e):new u(i[0]?l:0);if(p=s-a){for((o=p<0)?(p=-p,r=i):(a=s,r=c),r.reverse(),h=p;h--;)r.push(0);r.reverse()}else for(n=((o=i.length0)for(;h--;)i[t++]=0;for(h=t;n>p;){if(i[--n]0?(o=n,t=i):(a=-a,t=r),t.reverse();a--;)t.push(0);t.reverse()}for(r.length-i.length<0&&(t=i,i=r,r=t),a=i.length,l=0;a;r[a]%=10)l=(r[--a]=r[a]+i[a]+l)/10|0;for(l&&(r.unshift(l),++o),a=r.length;0===r[--a];)r.pop();return e.c=r,e.e=o,e},v.pow=function(e){var t=this,n=new t.constructor(1),r=n,o=e<0;if(e!==~~e||e<-1e6||e>1e6)throw Error(f+"exponent");for(o&&(e=-e);1&e&&(r=r.times(t)),e>>=1;)t=t.times(t);return o?n.div(r):r},v.round=function(e,t){var n=this.constructor;if(e===b)e=0;else if(e!==~~e||e<-u||e>u)throw Error(m);return i(new n(this),e,t===b?n.RM:t)},v.sqrt=function(){var e,t,n,r=this,o=r.constructor,s=r.s,c=r.e,a=new o(.5);if(!r.c[0])return new o(r);if(s<0)throw Error(d+"No square root");0===(s=Math.sqrt(r+""))||s===1/0?((t=r.c.join("")).length+c&1||(t+="0"),s=Math.sqrt(t),c=((c+1)/2|0)-(c<0||1&c),e=new o((s==1/0?"1e":(s=s.toExponential()).slice(0,s.indexOf("e")+1))+c)):e=new o(s),c=e.e+(o.DP+=4);do{n=e,e=a.times(n.plus(r.div(n)))}while(n.c.slice(0,c).join("")!==e.c.slice(0,c).join(""));return i(e,o.DP-=4,o.RM)},v.times=v.mul=function(e){var t,n=this,r=n.constructor,o=n.c,i=(e=new r(e)).c,s=o.length,c=i.length,a=n.e,l=e.e;if(e.s=n.s==e.s?1:-1,!o[0]||!i[0])return new r(0*e.s);for(e.e=a+l,sa;)c=t[l]+i[a]*o[l-a-1]+c,t[l--]=c%10,c=c/10|0;t[l]=(t[l]+c)%10}for(c?++e.e:t.shift(),a=t.length;!t[--a];)t.pop();return e.c=t,e},v.toExponential=function(e){return s(this,1,e,e)},v.toFixed=function(e){return s(this,2,e,this.e+e)},v.toPrecision=function(e){return s(this,3,e,e-1)},v.toString=function(){return s(this)},v.valueOf=v.toJSON=function(){return s(this,4)},(c=function e(){function t(n){var r=this;if(!(r instanceof t))return n===b?e():new t(n);n instanceof t?(r.s=n.s,r.e=n.e,r.c=n.c.slice()):function(e,t){var n,r,o;if(0===t&&1/t<0)t="-0";else if(!w.test(t+=""))throw Error(f+"number");for(e.s="-"==t.charAt(0)?(t=t.slice(1),-1):1,(n=t.indexOf("."))>-1&&(t=t.replace(".","")),(r=t.search(/e/i))>0?(n<0&&(n=r),n+=+t.slice(r+1),t=t.substring(0,r)):n<0&&(n=t.length),o=t.length,r=0;r0&&"0"==t.charAt(--o););for(e.e=n-r-1,e.c=[],n=0;r<=o;)e.c[n++]=+t.charAt(r++)}}(r,n),r.constructor=t}return t.prototype=v,t.DP=a,t.RM=l,t.NE=p,t.PE=h,t.version="5.2.2",t}()).default=c.Big=c,void 0===(r=function(){return c}.call(t,n,t,e))||(e.exports=r)}()},uZsJ:function(e,t,n){e.exports={controlWrapper:"controlWrapper-skuqZLfC",hidden:"hidden-3NLdXwWA",control:"control-1HTkHp6S",controlIncrease:"controlIncrease-2YFIq5Gk",controlDecrease:"controlDecrease-3RZJUOOQ",increaseControlIcon:"increaseControlIcon-1tvvZsEf",decreaseControlIcon:"decreaseControlIcon-O8mAFFIw"}},uhWF:function(e,t,n){e.exports={wrapper:"wrapper-CRZXrxS2",hidden:"hidden-1wnB-Kx5",button:"button-1Eugtpck",icon:"icon-17-1vCIN", +dropped:"dropped-ecaUHMhj"}}}]); \ No newline at end of file diff --git a/charting_library/static/bundles/16.cc58f582c191485d9392.css b/charting_library/static/bundles/16.cc58f582c191485d9392.css deleted file mode 100644 index c714af6c..00000000 --- a/charting_library/static/bundles/16.cc58f582c191485d9392.css +++ /dev/null @@ -1 +0,0 @@ -.header-dpl-vtN_-{position:relative;font-size:14px;font-weight:700;color:#212121;padding:30px 60px 30px 30px;border-bottom:1px solid;border-bottom-color:#dadde0}html.theme-dark .header-dpl-vtN_-{border-bottom-color:#363c4e;color:#c5cbce}@media screen and (max-width:767px){.header-dpl-vtN_-{padding:20px 60px 20px 20px}}.header-dpl-vtN_- .close-3kPn4OTV-{position:absolute;padding:15px;top:17px;right:15px;cursor:pointer;opacity:.5;transition:opacity .35s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media screen and (max-width:767px){.header-dpl-vtN_- .close-3kPn4OTV-{top:7px;right:7px}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.header-dpl-vtN_- .close-3kPn4OTV-:hover{opacity:1;transition-duration:.06s}}.header-dpl-vtN_- .close-3kPn4OTV- svg{display:block;width:13px;height:13px;fill:#4a4a4a}html.theme-dark .header-dpl-vtN_- .close-3kPn4OTV- svg{fill:#c5cbce}.footer-2Zoji8zg-{padding:0 30px 30px}@media screen and (max-width:767px){.footer-2Zoji8zg-{padding:0 20px 20px}}.body-2N-vuwQW-{flex-grow:1;padding:30px;overflow:auto;-webkit-overflow-scrolling:touch}.body-2N-vuwQW-::-webkit-scrollbar{width:5px;height:5px}.body-2N-vuwQW-::-webkit-scrollbar-thumb{border:1px solid;border-color:#f1f3f6;border-radius:3px;background-color:#9db2bd}html.theme-dark .body-2N-vuwQW-::-webkit-scrollbar-thumb{background-color:#363c4e;border-color:#1c2030}.body-2N-vuwQW-::-webkit-scrollbar-track{background-color:transparent;border-radius:3px}@media screen and (max-width:767px){.body-2N-vuwQW-{padding:20px}}.message-2o-rtQm0-{position:absolute;left:0;top:0;right:0;font-size:14px;padding:30px;text-align:center;color:#37bc9b;background:#ebf9f5;transition:opacity .2625s ease,transform .2625s ease}html.theme-dark .message-2o-rtQm0-{background:#21384d}.message-2o-rtQm0-.error-2EW0C6z--{color:#ff4a68;background:#ffedf0}html.theme-dark .message-2o-rtQm0-.error-2EW0C6z--{background:#6f2626} \ No newline at end of file diff --git a/charting_library/static/bundles/16.cc58f582c191485d9392.rtl.css b/charting_library/static/bundles/16.cc58f582c191485d9392.rtl.css deleted file mode 100644 index 2ae2f1eb..00000000 --- a/charting_library/static/bundles/16.cc58f582c191485d9392.rtl.css +++ /dev/null @@ -1 +0,0 @@ -.header-dpl-vtN_-{position:relative;font-size:14px;font-weight:700;color:#212121;padding:30px 30px 30px 60px;border-bottom:1px solid;border-bottom-color:#dadde0}html.theme-dark .header-dpl-vtN_-{border-bottom-color:#363c4e;color:#c5cbce}@media screen and (max-width:767px){.header-dpl-vtN_-{padding:20px 20px 20px 60px}}.header-dpl-vtN_- .close-3kPn4OTV-{position:absolute;padding:15px;top:17px;left:15px;cursor:pointer;opacity:.5;transition:opacity .35s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media screen and (max-width:767px){.header-dpl-vtN_- .close-3kPn4OTV-{top:7px;left:7px}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.header-dpl-vtN_- .close-3kPn4OTV-:hover{opacity:1;transition-duration:.06s}}.header-dpl-vtN_- .close-3kPn4OTV- svg{display:block;width:13px;height:13px;fill:#4a4a4a}html.theme-dark .header-dpl-vtN_- .close-3kPn4OTV- svg{fill:#c5cbce}.footer-2Zoji8zg-{padding:0 30px 30px}@media screen and (max-width:767px){.footer-2Zoji8zg-{padding:0 20px 20px}}.body-2N-vuwQW-{flex-grow:1;padding:30px;overflow:auto;-webkit-overflow-scrolling:touch}.body-2N-vuwQW-::-webkit-scrollbar{width:5px;height:5px}.body-2N-vuwQW-::-webkit-scrollbar-thumb{border:1px solid;border-color:#f1f3f6;border-radius:3px;background-color:#9db2bd}html.theme-dark .body-2N-vuwQW-::-webkit-scrollbar-thumb{background-color:#363c4e;border-color:#1c2030}.body-2N-vuwQW-::-webkit-scrollbar-track{background-color:transparent;border-radius:3px}@media screen and (max-width:767px){.body-2N-vuwQW-{padding:20px}}.message-2o-rtQm0-{position:absolute;right:0;top:0;left:0;font-size:14px;padding:30px;text-align:center;color:#37bc9b;background:#ebf9f5;transition:opacity .2625s ease,transform .2625s ease}html.theme-dark .message-2o-rtQm0-{background:#21384d}.message-2o-rtQm0-.error-2EW0C6z--{color:#ff4a68;background:#ffedf0}html.theme-dark .message-2o-rtQm0-.error-2EW0C6z--{background:#6f2626} \ No newline at end of file diff --git a/charting_library/static/bundles/16.e0d00f8a564954896734.js b/charting_library/static/bundles/16.e0d00f8a564954896734.js deleted file mode 100644 index 1be04eab..00000000 --- a/charting_library/static/bundles/16.e0d00f8a564954896734.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[16],[]]); \ No newline at end of file diff --git a/charting_library/static/bundles/17.00b04a06a8cd9c6f5f6c.js b/charting_library/static/bundles/17.00b04a06a8cd9c6f5f6c.js deleted file mode 100644 index d0e5e337..00000000 --- a/charting_library/static/bundles/17.00b04a06a8cd9c6f5f6c.js +++ /dev/null @@ -1,5 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[17],{bR4N:function(t,e,a){"use strict";var n,o=a("wmOI").ESC,s=a("0waE").guid,i=a("jAh7").getRootOverlapManager,p=function(t,e,n){var l,c,r,u,d,h,f=".popup-menu";t=$(t),(n=n||{}).activeClass=n.activeClass||"",l=(n.event||"click")+f,n.hideEvent&&(c=n.hideEvent+f),u=r=function(){},d={},h=function(l,h,v){function m(e){var a=$(e.target).parents().andSelf();a.is(w)||a.is(t)||a.is(".charts-popup-tab-headers, .charts-popup-itemheader")||u()}function g(t){if(d.preventFirstProcessClick)d.preventFirstProcessClick=!1;else{var e=$(t.target).parents().andSelf();e.is(".charts-popup-tab-headers, .charts-popup-itemheader")||n.notCloseOnButtons&&e.is(".icon-delete")||u()}}function b(t){t.keyCode===o&&u()}var C,w,y,T,x,D,_,k,S,M,A,I,N,L,E,O,W,P,R,z,B,F,G,H=s(),J=l.target.ownerDocument,U=J.defaultView,V=i(J),K=h||e;if("function"==typeof K&&(K=K()),$(this).hasClass("open")||$(this).hasClass("active"))return l.preventDefault(),u(),void(C=d.scrollTop);switch(u=function(){d.scrollTop=w.scrollTop(),w.remove(),V.removeWindow(H),t.removeClass("active open "+n.activeClass),t.data("popup-menu",null),$(J).off("click",g),$(J).off("mousedown",m),Modernizr.mobiletouch&&$(J).off("touchstart.chartgui",m),$(J).off("selectstart."+f),J.removeEventListener("keydown",b,!1),u=r,n.onRemove&&n.onRemove()},t.addClass("active open "+n.activeClass),w=$('
'),n.addClass&&w.addClass(n.addClass),n.zIndex&&w.css("z-index",n.zIndex),y=w,n.listInner&&(y=$('
').appendTo(y)),n.listTable&&(y=$('').text(o.title));else{if(o.separator)return h=$(''),void i.append(h);h=$(''),o.url&&h.attr("href",o.url),o.target&&h.attr("target",o.target),s||h.addClass("first"),"function"==typeof o.active?o.active(o)&&h.addClass("active"):o.active&&h.addClass("active"),o.addClass&&h.addClass(o.addClass),o.addData&&h.data(o.addData),o.disabled&&h.addClass("disabled"),"function"==typeof o.action&&(f=o.action,v=function(t){$(t.target).parents().andSelf().is(T)||(f.apply(h,arguments),!o.url&&t&&"function"==typeof t.preventDefault&&t.preventDefault())},n.upAction?h.bind("mouseup",v):h.bind("click",v)),o.date?(m=$('').appendTo(h),$('').text(o.date||"").appendTo(h)):o.icon&&!n.svg?((g=$('').appendTo(h)).css("background-image",o.icon.image||""),o.icon.offset&&g.css("background-position","string"==typeof o.icon.offset?o.icon.offset:o.icon.offset.x+"px "+o.icon.offset.y+"px"),m=$('').appendTo(h)):!0===n.svg&&o.svg?(n.wrapIcon?h.append($('').addClass(o.iconClass).append(o.svg)):h.append(o.svg),m=$('').appendTo(h)):o.iconClass?(h.append($('').addClass(o.iconClass)),m=$('').appendTo(h)):m=$('').appendTo(h),o.html?m.html(o.html):m.text(TradingView.clean(o.title,!0)||""),b=$('').appendTo(h),o.shortcut&&b.text(o.shortcut.keys),"function"==typeof o.deleteAction&&(C=o.deleteAction,y=o.deleteAction.title||$.t("Delete"),(T=$('')).html(a("uo4K")),T.attr("title",y),T.on("click",function(t){C.apply(h,arguments),t.preventDefault()}),h.append(T)),o.buttons instanceof Array&&o.buttons.length&&o.buttons.forEach(function(t){t.el instanceof $||(t.el=$(t.el)),t.el.appendTo(h),t.handler&&t.el.on("click",function(e){t.handler.apply(h,arguments)})}),void 0!==o.counter&&("function"==typeof o.counter?$('').html(o.counter()).appendTo(h):(x=o.counterBlue?"blue":"",$('').text(o.counter+"").addClass(x).appendTo(h))),i.append(h),t.data("popup-menu",i)}}(this,e,y)}),c||(d.preventFirstProcessClick=!0),$(J).on("click",g),$(J).on("mousedown",m),J.addEventListener("keydown",b,!1),Modernizr.mobiletouch&&$(J).on("touchstart.chartgui",m),n.upAction&&$(J).on("selectstart.popup-menu",function(){return!1}),w.appendTo(V.ensureWindow(H)),T=J.documentElement.clientWidth,x=J.documentElement.clientHeight,D=t.outerWidth(),_=t.outerHeight(),k=t.offset(),C=$(U).scrollTop()||0,k.top-=C, -k.top=Math.round(k.top),k.left=Math.round(k.left),S=w.outerWidth(),M=w.outerHeight(),A=void 0!==n.viewportSpacing?n.viewportSpacing:10,I=n.popupSpacing?~~n.popupSpacing:1,N=n.popupDrift?~~n.popupDrift:0,L=M-w.height(),E="down",n.direction&&(E="function"==typeof n.direction?n.direction():n.direction),O=!!n.reverse,"down"===E?(W=x-k.top-_-I-A-L,P=k.top-I-A-L,WW&&(E="up")):"right"===E&&(R=T-k.left-D-I-A-L,z=k.left-I-A-L,RR&&(E="left")),E){case"down":case"up":"down"===E?w.css("top",k.top+_+I+"px"):w.css("bottom",x-k.top+I+"px").css("top","auto"),O?w.css("left",Math.max(k.left+N+D-S,A)+"px").css("right","auto"):w.css("left",k.left+N+"px").css("right","auto");break;case"right":case"left":I=Math.max(I,4),"right"===E?w.css("left",Math.floor(k.left+D+I)+"px").css("right","auto"):w.css("left",Math.floor(Math.max(k.left-S-I,A))+"px").css("right","auto"),O?w.css("top",Math.floor(Math.max(k.top+N+_-M,A))+"px"):w.css("top",Math.floor(k.top+N)+"px")}w.show(),B=k.top,"up"===E||{left:1,right:1}[E]&&O?"up"!==E?B+=_:B-=_+I+L+A:B=x-B-_-2*I-L,w.height()>B&&w.addClass("popup-menu-scroll-y"),w.css("max-height",B+"px"),n.careRightBorder&&(F=T+$(U).scrollLeft(),parseInt(w.css("left"))+w.width()+A>F&&w.css("left",F-w.width()-A+"px").css("right","auto")),n.careBottomBorder&&parseInt(w.css("top"))+w.height()+A>x+C&&w.css("top",x-w.height()-A+C+"px"),G=w.offset(),w.css({position:"fixed",left:G.left-$(J).scrollLeft(),right:"auto"}),w[0].scrollHeight>w.height()&&w.addClass("popup-with-scroll"),l&&l.preventDefault()},l&&t.bind(l,h),c&&t.bind(c,function(){u()}),n.runOpened&&h()};p.TabGroup=function t(e){if(!(this instanceof t))return new t(e);e=e||{},this.tabs=[],"function"==typeof e.onChange&&(this.onChange=e.onChange)},p.TabGroup.prototype.appendTab=function(t,e,a){if(null==t?t="":t+="",e||(e=[]),a||(a={}),!Array.isArray(e))throw new TypeError("items must be an array");return this.tabs.push({name:t,items:e,active:!!a.active}),e},p.Header=function t(e){if(!(this instanceof t))return new t(e);this.title=e},p.Group=function t(e){if(!(this instanceof t))return new t(e);e=e||{},this.items=[],this.title=null==e.title?"":e.title+"",this.collapsible=!!e.collapsible,this.collapsed=!!e.collapsed,"function"==typeof e.onChange&&(this.onChange=e.onChange)},p.Group.prototype.push=function(){this.items.push.apply(this.items,arguments)},e.bindPopupMenu=p,n=function(t){(t=$(t)).unbind(".popup-menu"),t.removeData("popup-menu")},e.unbindPopupMenu=n},guTw:function(t,e,a){"use strict";(function(e){function n(t,a,n){var o={saveAsText:$.t("Save As..."),applyDefaultText:$.t("Apply Defaults")};this._toolName=t,this._applyTemplate=a,this._options=$.extend(o,n||{}),this._list=[],e.enabled("charting_library_base")||(this.templatesDeferred=this.loadData())}var o=a("bR4N").bindPopupMenu,s=a("UJLt").SaveRenameDialog,i=a("hkLy").InputField,p=a("oNDq").createConfirmDialog,l=a("uOxu").getLogger("Chart.LineToolTemplatesList");n._cache={},n.prototype.getData=function(){return this._list},n.prototype.loadData=function(){var t=this -;return this._toolName in n._cache?(this._list=n._cache[this._toolName],$.Deferred().resolve()):$.get("/drawing-templates/"+this._toolName+"/",function(e){t._list=e,n._cache[t._toolName]=e}).error(function(){l.logWarn("Failed to load drawing template: "+t._toolName)})},n.prototype.templatesLoaded=function(){return this.templatesDeferred},n.prototype.invalidateToolCache=function(){delete n._cache[this._toolName]},n.prototype.createButton=function(t){var e,a=this;return t=$.extend({},t,a._options),e=$("").addClass(t.buttonClass?t.buttonClass:"_tv-button").html(t.buttonInner?t.buttonInner:$.t("Template")+''),o(e,null,{event:"button-popup",hideEvent:"hide-popup",zIndex:t.popupZIndex,activeClass:t.popupActiveClass,direction:t.popupDirection}),e.bind("click",function(e){var n,o,s;e.stopPropagation(),$(this).is("active")||(n=[],"function"==typeof t.getDataForSaveAs&&(o=function(e){var n=JSON.stringify(t.getDataForSaveAs());a.saveTemplate(e,n)},n.push({title:t.saveAsText,action:a.showSaveDialog.bind(a,o),addClass:"special"})),"function"==typeof t.defaultsCallback&&n.push({title:t.applyDefaultText,action:t.defaultsCallback,addClass:"special"}),s=[],$.each(a._list,function(e,n){s.push({title:n,action:function(){a.loadTemplate.call(a,n,t.loadTemplateCallback)},deleteAction:function(){runOrSignIn(function(){var t=$.t("Do you really want to delete Drawing Template '{0}' ?").format(n);p({type:"modal",content:t}).then(function(t){t.on("action:yes",function(t){a.removeTemplate.call(a,n),t.close()}),t.open()})},{source:"Delete line tool template"})}})}),s.length&&(s.sort(function(t,e){return(t=t.title.toUpperCase())===(e=e.title.toUpperCase())?0:t>e?1:-1}),n.push({separator:!0}),n=n.concat(s)),$(this).trigger("button-popup",[n]))}),e},n.prototype.loadTemplate=function(t,e){var a=this;return $.get("/drawing-template/"+this._toolName+"/?templateName="+encodeURIComponent(t),function(t){a._applyTemplate(JSON.parse(t.content)),e&&e()}).error(function(t){l.logWarn(t.responseText)})},n.prototype.removeTemplate=function(t){if(t){$.post("/remove-drawing-template/",{name:t,tool:this._toolName}).error(function(t){l.logWarn(t.responseText)}),this.invalidateToolCache(),this._list=$.grep(this._list,function(e){return e!==t})}},n.prototype.saveTemplate=function(t,e){var a,n=this;t&&e&&(t=TradingView.clean(t),a=-1!==$.inArray(t,n._list),function(){var o={name:t,tool:n._toolName,content:e},s=function(){a||n._list.push(t)};$.post("/save-drawing-template/",o,s).error(function(t){l.logWarn(t.responseText)}),n.invalidateToolCache()}())},n.prototype.deleteAction=function(t){var e=t,a=this;runOrSignIn(function(){var t=$.t(" Do you really want to delete Drawing Template '{0}' ?").format(e);p({type:"modal",content:t}).then(function(t){t.on("action:yes",function(t){a.removeTemplate.call(a,e),t.close()}),t.open()})},{source:"Delete line tool template"})},n.prototype.showSaveDialog=function(t){var e=this,a="text",n=function(t){return TradingView.clean(t[a])},o=new s({fields:[new i({name:a,label:$.t("Template name")+":", -maxLength:64,error:$.t("Please enter template name")})],title:$.t("Save Drawing Template As"),confirm:{shouldShowDialog:function(t){return-1!==e._list.indexOf(n(t))},getMessage:function(t){return $.t("Drawing Template '{0}' already exists. Do you really want to replace it?").format(n(t))}}});runOrSignIn(function(){o.show().then(function(e){t(e[a])})},{source:"Save line tool template",sourceMeta:"Chart"})},t.exports=n}).call(this,a("Kxc7"))},uo4K:function(t,e){t.exports=''}}]); \ No newline at end of file diff --git a/charting_library/static/bundles/17.3f086dbf98c41fd496c6.js b/charting_library/static/bundles/17.3f086dbf98c41fd496c6.js new file mode 100644 index 00000000..da2bed4c --- /dev/null +++ b/charting_library/static/bundles/17.3f086dbf98c41fd496c6.js @@ -0,0 +1 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[17],[]]); \ No newline at end of file diff --git a/charting_library/static/bundles/17.dcb588d08f4758f3cef4.css b/charting_library/static/bundles/17.dcb588d08f4758f3cef4.css new file mode 100644 index 00000000..d1edf4d0 --- /dev/null +++ b/charting_library/static/bundles/17.dcb588d08f4758f3cef4.css @@ -0,0 +1 @@ +.container-2kDJVADV{display:inline-flex;position:relative;box-sizing:border-box;align-items:center;margin:0;border-radius:4px;border-style:solid;border-color:#d1d4dc}html.theme-dark .container-2kDJVADV{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-2kDJVADV:hover{border-color:#a3a6af}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .container-2kDJVADV:hover{border-color:#6a6d78}}.container-2kDJVADV.focused-GwkJELgF{border-color:#2196f3}html.theme-dark .container-2kDJVADV.focused-GwkJELgF{border-color:#1976d2}.container-2kDJVADV.readonly-3PcaDYes{border-color:#d1d4dc;background-color:#f0f3fa}html.theme-dark .container-2kDJVADV.readonly-3PcaDYes{background-color:#2a2e39;border-color:#50535e}.container-2kDJVADV.disabled-3y5wOPXy{color:#b2b5be;border-color:#d1d4dc;background-color:#f0f3fa}html.theme-dark .container-2kDJVADV.disabled-3y5wOPXy{background-color:#2a2e39;border-color:#50535e;color:#50535e}.container-2kDJVADV.size-medium-2QF4qrsy{height:34px}.container-2kDJVADV.size-large-3c0aAmCz{height:48px}.container-2kDJVADV.font-size-medium-15_hd7kR{font-size:14px;line-height:20px}.container-2kDJVADV.font-size-large-sNxmYZSZ{font-size:16px;line-height:24px}.container-2kDJVADV.border-none-2W-f5CeX{border-width:0}.container-2kDJVADV.border-none-2W-f5CeX .shadow-fRMVHbcr{margin:0}.container-2kDJVADV.border-thin-39LN06wV{border-width:1px}.container-2kDJVADV.border-thin-39LN06wV .shadow-fRMVHbcr{margin:-1px}.container-2kDJVADV.border-thick-3YqbfLWG{border-width:2px}.container-2kDJVADV.border-thick-3YqbfLWG .shadow-fRMVHbcr{margin:-2px}.container-2kDJVADV.intent-default-2WqrktAC .shadow-fRMVHbcr{border-color:#d1d4dc}html.theme-dark .container-2kDJVADV.intent-default-2WqrktAC .shadow-fRMVHbcr{border-color:#50535e}.container-2kDJVADV.intent-success-2qRddKlF,.container-2kDJVADV.intent-success-2qRddKlF .shadow-fRMVHbcr,html.theme-dark .container-2kDJVADV.intent-success-2qRddKlF,html.theme-dark .container-2kDJVADV.intent-success-2qRddKlF .shadow-fRMVHbcr{border-color:#00897b}.container-2kDJVADV.intent-warning-3nKtF1a7,.container-2kDJVADV.intent-warning-3nKtF1a7 .shadow-fRMVHbcr,html.theme-dark .container-2kDJVADV.intent-warning-3nKtF1a7,html.theme-dark .container-2kDJVADV.intent-warning-3nKtF1a7 .shadow-fRMVHbcr{border-color:#ff9800}.container-2kDJVADV.intent-danger-2UcBu3hY{border-color:#f44336}html.theme-dark .container-2kDJVADV.intent-danger-2UcBu3hY{border-color:#d32f2f}.container-2kDJVADV.intent-danger-2UcBu3hY .shadow-fRMVHbcr{border-color:#f44336}html.theme-dark .container-2kDJVADV.intent-danger-2UcBu3hY .shadow-fRMVHbcr{border-color:#d32f2f}.container-2kDJVADV.intent-primary-1GPjPo8I{border-color:#2196f3}html.theme-dark .container-2kDJVADV.intent-primary-1GPjPo8I{border-color:#1976d2}.container-2kDJVADV.intent-primary-1GPjPo8I .shadow-fRMVHbcr{border-color:#2196f3}html.theme-dark .container-2kDJVADV.intent-primary-1GPjPo8I .shadow-fRMVHbcr{border-color:#1976d2}.container-2kDJVADV.corner-top-left-1UYBpB66{border-top-left-radius:0}.container-2kDJVADV.corner-top-right-3vjbw1SH{border-top-right-radius:0}.container-2kDJVADV.corner-bottom-right-2Xs3BwD0{border-bottom-right-radius:0}.container-2kDJVADV.corner-bottom-left-2m7Qn1wR{border-bottom-left-radius:0}.container-2kDJVADV.border-none-2W-f5CeX .input-1Fp9QlzO{padding:0 8px}.container-2kDJVADV.border-none-2W-f5CeX.icon-left-sV9DQagg .icon-1S_6X6gw{margin-left:3px}.container-2kDJVADV.border-none-2W-f5CeX.icon-right-2uMWnixv .icon-1S_6X6gw{margin-right:3px}.container-2kDJVADV.border-thin-39LN06wV.grouped-vertical-2lC0wjMX:not(:first-child){margin-left:-1px}.container-2kDJVADV.border-thin-39LN06wV.grouped-horizontal-3T_Yy5c3:not(:first-child){margin-top:-1px}.container-2kDJVADV.border-thin-39LN06wV .input-1Fp9QlzO{padding:0 7px}.container-2kDJVADV.border-thin-39LN06wV.icon-left-sV9DQagg .icon-1S_6X6gw{margin-left:2px}.container-2kDJVADV.border-thin-39LN06wV.icon-right-2uMWnixv .icon-1S_6X6gw{margin-right:2px}.container-2kDJVADV.border-thick-3YqbfLWG.grouped-vertical-2lC0wjMX:not(:first-child){margin-left:-2px}.container-2kDJVADV.border-thick-3YqbfLWG.grouped-horizontal-3T_Yy5c3:not(:first-child){margin-top:-2px}.container-2kDJVADV.border-thick-3YqbfLWG .input-1Fp9QlzO{padding:0 6px}.container-2kDJVADV.border-thick-3YqbfLWG.icon-left-sV9DQagg .icon-1S_6X6gw{margin-left:1px}.container-2kDJVADV.border-thick-3YqbfLWG.icon-right-2uMWnixv .icon-1S_6X6gw{margin-right:1px}.container-2kDJVADV.icon-right-2uMWnixv .input-1Fp9QlzO{padding-right:4px}.container-2kDJVADV.icon-right-2uMWnixv .icon-1S_6X6gw{order:1}.container-2kDJVADV.icon-left-sV9DQagg .input-1Fp9QlzO{padding-left:4px}.container-2kDJVADV.icon-left-sV9DQagg .icon-1S_6X6gw{order:-1}.container-2kDJVADV.highlight-fnJ4zkJY,.container-2kDJVADV.highlight-fnJ4zkJY.focused-GwkJELgF{border-color:#d1d4dc}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-2kDJVADV.highlight-fnJ4zkJY:hover{border-color:#d1d4dc}}html.theme-dark .container-2kDJVADV.highlight-fnJ4zkJY,html.theme-dark .container-2kDJVADV.highlight-fnJ4zkJY.focused-GwkJELgF{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .container-2kDJVADV.highlight-fnJ4zkJY:hover{border-color:#50535e}}.container-2kDJVADV.grouped-vertical-2lC0wjMX:not(:first-child){margin-left:-1px}.container-2kDJVADV.grouped-horizontal-3T_Yy5c3:not(:first-child){margin-top:-1px}.container-2kDJVADV.grouped-horizontal-3T_Yy5c3.focused-GwkJELgF,.container-2kDJVADV.grouped-vertical-2lC0wjMX.focused-GwkJELgF{z-index:1}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-2kDJVADV.grouped-horizontal-3T_Yy5c3:hover,.container-2kDJVADV.grouped-vertical-2lC0wjMX:hover{z-index:1}}.container-2kDJVADV.grouped-horizontal-3T_Yy5c3.focused-GwkJELgF,.container-2kDJVADV.grouped-vertical-2lC0wjMX.focused-GwkJELgF{z-index:2}.icon-1S_6X6gw{display:flex;flex:none;color:#787b86;height:28px;width:28px;align-items:center;justify-content:center}html.theme-dark .icon-1S_6X6gw{color:#787b86}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-2kDJVADV:hover .icon-1S_6X6gw.interactive-3QZtt2FP{color:#131722}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .container-2kDJVADV:hover .icon-1S_6X6gw.interactive-3QZtt2FP{color:#b2b5be}}.input-1Fp9QlzO{display:block;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;width:100%;min-width:0;height:100%;margin:0;padding:0;border:0;outline:0;background-color:transparent;-webkit-text-fill-color:currentColor;font-size:inherit;font-family:inherit;line-height:inherit;order:0}.input-1Fp9QlzO:-ms-input-placeholder,.input-1Fp9QlzO::-ms-input-placeholder{color:#d1d4dc}.input-1Fp9QlzO::placeholder{color:#d1d4dc}html.theme-dark .input-1Fp9QlzO:-ms-input-placeholder,html.theme-dark .input-1Fp9QlzO::-ms-input-placeholder{color:#50535e}html.theme-dark .input-1Fp9QlzO::placeholder{color:#50535e}.input-1Fp9QlzO::-webkit-calendar-picker-indicator,.input-1Fp9QlzO::-webkit-clear-button,.input-1Fp9QlzO::-webkit-inner-spin-button,.input-1Fp9QlzO::-webkit-outer-spin-button,.input-1Fp9QlzO::-webkit-search-cancel-button{-webkit-appearance:none;appearance:none}.input-1Fp9QlzO::-ms-clear,.input-1Fp9QlzO::-ms-reveal{display:none}.input-1Fp9QlzO:-webkit-autofill,.input-1Fp9QlzO:-webkit-autofill:active,.input-1Fp9QlzO:-webkit-autofill:focus{border-radius:3px}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.input-1Fp9QlzO:-webkit-autofill:hover{border-radius:3px}}.shadow-fRMVHbcr{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;pointer-events:none;border-radius:4px;border:2px solid}.shadow-fRMVHbcr.corner-top-left-1UYBpB66{border-top-left-radius:0}.shadow-fRMVHbcr.corner-top-right-3vjbw1SH{border-top-right-radius:0}.shadow-fRMVHbcr.corner-bottom-right-2Xs3BwD0{border-bottom-right-radius:0}.shadow-fRMVHbcr.corner-bottom-left-2m7Qn1wR{border-bottom-left-radius:0}.wrapper-CRZXrxS2{flex:none;box-sizing:border-box;margin-right:2px;padding:2px 0;height:32px;width:21px;outline:none!important;order:1}.wrapper-CRZXrxS2.hidden-1wnB-Kx5{display:none}.button-1Eugtpck{display:flex;flex:none;align-items:center;justify-content:center;height:100%;width:100%;border-radius:2px}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.button-1Eugtpck:hover{background-color:#f0f3fa}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .button-1Eugtpck:hover{background-color:#363a45}}.icon-17-1vCIN{display:flex;flex:none;align-items:center;justify-content:center;transition:transform .35s ease}.icon-17-1vCIN.dropped-ecaUHMhj{transform:rotate(180deg)}.inputWithErrorWrapper-3VldItns{display:block;position:relative;z-index:0;box-sizing:border-box;height:34px;box-shadow:inset 0 0 0 1px transparent;border:1px solid #d1d4dc;border-radius:4px;background-color:transparent;font-size:15px;color:#131722;-webkit-appearance:none;-moz-appearance:none;appearance:none;transition:border-color 87.5ms ease,box-shadow 87.5ms ease}html.theme-dark .inputWithErrorWrapper-3VldItns{color:#b2b5be;border:1px solid #50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns:hover{z-index:1;border-color:#b2b5be}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns:hover{border-color:#6a6d78}}.disabled-1H5pTmbC{border-color:#d1d4dc;background-color:#f0f3fa;color:#d1d4dc}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.disabled-1H5pTmbC:hover{border-color:#d1d4dc;background-color:#f0f3fa;color:#d1d4dc}}html.theme-dark .disabled-1H5pTmbC{color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .disabled-1H5pTmbC:hover{color:#50535e}}html.theme-dark .disabled-1H5pTmbC{background-color:#2a2e39}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .disabled-1H5pTmbC:hover{background-color:#2a2e39}}html.theme-dark .disabled-1H5pTmbC{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .disabled-1H5pTmbC:hover{border-color:#50535e}}.disabled-1H5pTmbC.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px transparent}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.disabled-1H5pTmbC:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px transparent}}.readonly-3wmbSVwP{border-color:#b2b5be;background-color:#f0f3fa}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.readonly-3wmbSVwP:hover{border-color:#b2b5be;background-color:#f0f3fa}}html.theme-dark .readonly-3wmbSVwP{background-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .readonly-3wmbSVwP:hover{background-color:#50535e}}html.theme-dark .readonly-3wmbSVwP{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .readonly-3wmbSVwP:hover{border-color:#50535e}}.readonly-3wmbSVwP.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px transparent}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.readonly-3wmbSVwP:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px transparent}}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah{border-color:#2196f3;z-index:2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover{border-color:#2196f3;z-index:2}}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah{border-color:#1976d2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover{border-color:#1976d2}}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #2196f3!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #2196f3!important}}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #1976d2!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #1976d2!important}}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF{color:#131722}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF{color:#131722}}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF{color:#b2b5be}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF{color:#b2b5be}}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF:-ms-input-placeholder,.inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF::-ms-input-placeholder{opacity:1;color:#e0e3eb}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF::placeholder{opacity:1;color:#e0e3eb}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF:-ms-input-placeholder,.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF::-ms-input-placeholder{opacity:1;color:#e0e3eb}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF::placeholder{opacity:1;color:#e0e3eb}}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF:-ms-input-placeholder,html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF::-ms-input-placeholder{color:#363a45}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF::placeholder{color:#363a45}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF:-ms-input-placeholder,html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF::-ms-input-placeholder{color:#363a45}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF::placeholder{color:#363a45}}.inputWithErrorWrapper-3VldItns.error-32uXEKXM{border-color:#ef5350}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover{border-color:#ef5350}}html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM{border-color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover{border-color:#e53935}}.inputWithErrorWrapper-3VldItns.error-32uXEKXM.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #ef5350!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #ef5350!important}}html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #e53935!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #e53935!important}}.inputWithErrorWrapper-3VldItns.error-32uXEKXM .innerInput-29Ku0bwF{color:#ef5350}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover .innerInput-29Ku0bwF{color:#ef5350}}html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM .innerInput-29Ku0bwF{color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover .innerInput-29Ku0bwF{color:#e53935}}.inputWithErrorWrapper-3VldItns.warning-1fcuxDP3 .innerInput-29Ku0bwF{color:#ef6c00}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.warning-1fcuxDP3:hover .innerInput-29Ku0bwF{color:#ef6c00}}html.theme-dark .inputWithErrorWrapper-3VldItns.warning-1fcuxDP3 .innerInput-29Ku0bwF{color:#ef6c00}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.warning-1fcuxDP3:hover .innerInput-29Ku0bwF{color:#ef6c00}}.inputWithError-1wKt_k8s{display:flex;position:relative;flex:0 0 auto;justify-content:space-between;align-items:center;box-sizing:border-box;height:100%}.inputContainer-2JfcvOzg{display:flex;position:relative;width:100%;height:100%}.inputContainerFix-3bYyvsOT{flex-direction:row}.innerInputContainer-FSOtBYl0{display:flex;flex:1 1 auto;align-items:center;justify-content:space-between}.innerInput-29Ku0bwF{display:block;width:100%;height:100%;border:none;padding:0 3px 0 8px;background-color:transparent;box-shadow:0 0 0 0 transparent;font-size:14px;-webkit-appearance:none;-moz-appearance:none;appearance:none;transition:color .35s ease;box-sizing:border-box;-webkit-text-fill-color:currentColor}.innerInput-29Ku0bwF.largeFont-1Tlrlf5g{font-size:16px}.innerInput-29Ku0bwF:-ms-input-placeholder,.innerInput-29Ku0bwF::-ms-input-placeholder{opacity:1;color:#c1c4cd}.innerInput-29Ku0bwF::placeholder{opacity:1;color:#c1c4cd}html.theme-dark .innerInput-29Ku0bwF:-ms-input-placeholder,html.theme-dark .innerInput-29Ku0bwF::-ms-input-placeholder{color:#2a2e39}html.theme-dark .innerInput-29Ku0bwF::placeholder{color:#2a2e39}.innerInput-29Ku0bwF::selection{background:rgba(33,150,243,.25)}html.theme-dark .innerInput-29Ku0bwF::selection{background:rgba(25,118,210,.25)}.innerInputFix-3nQEuMmn{direction:ltr;text-align:left;padding:0 3px 0 8px}.errorMessage-3U3e1ayv{padding:5px 8px;font-size:12px;line-height:14px;color:#fff;background-color:#2a2e39;box-sizing:border-box}html.theme-dark .errorMessage-3U3e1ayv{background-color:#434651;color:#b2b5be}.errorMessage-3U3e1ayv:after{content:"";display:block;position:absolute;bottom:-5px;left:50%;transform:translateX(-50%);width:0;height:0;border-style:solid;border-width:5px 8px 0;border-color:#2a2e39 transparent transparent}html.theme-dark .errorMessage-3U3e1ayv:after{border-color:#434651 transparent transparent}.iconBlock-1uOkuIhU{display:flex;flex:0 0 auto;height:100%}.container-AqxbM340{display:inline-flex;position:relative;box-sizing:border-box;align-items:center;margin:0;border-radius:4px;border-style:solid;border-color:#d1d4dc;max-width:100%;cursor:default}html.theme-dark .container-AqxbM340{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-AqxbM340:hover{border-color:#a3a6af}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .container-AqxbM340:hover{border-color:#6a6d78}}.container-AqxbM340.focused-3bgZ4yBI{border-color:#2196f3}html.theme-dark .container-AqxbM340.focused-3bgZ4yBI{border-color:#1976d2}.container-AqxbM340.readonly-3YlYTz9Q{border-color:#d1d4dc;background-color:#f0f3fa}html.theme-dark .container-AqxbM340.readonly-3YlYTz9Q{background-color:#2a2e39;border-color:#50535e}.container-AqxbM340.disabled-3kisU58M{color:#b2b5be;border-color:#d1d4dc;background-color:#f0f3fa}html.theme-dark .container-AqxbM340.disabled-3kisU58M{background-color:#2a2e39;border-color:#50535e;color:#50535e}.container-AqxbM340.size-medium-2saizg8j{height:34px}.container-AqxbM340.size-large-1HDInl7D{height:48px}.container-AqxbM340.font-size-medium-3qTDml7i{font-size:14px;line-height:20px}.container-AqxbM340.font-size-large-36ClMPCZ{font-size:16px;line-height:24px}.container-AqxbM340.border-none-2VoAEzD9{border-width:0}.container-AqxbM340.border-none-2VoAEzD9 .shadow-rtripSA4{margin:0}.container-AqxbM340.border-thin-2A_CUSMk{border-width:1px}.container-AqxbM340.border-thin-2A_CUSMk .shadow-rtripSA4{margin:-1px}.container-AqxbM340.border-thick-1_qIhMms{border-width:2px}.container-AqxbM340.border-thick-1_qIhMms .shadow-rtripSA4{margin:-2px}.container-AqxbM340.intent-default-saHBD6pK .shadow-rtripSA4{border-color:#d1d4dc}html.theme-dark .container-AqxbM340.intent-default-saHBD6pK .shadow-rtripSA4{border-color:#50535e}.container-AqxbM340.intent-success-3xXQLoWT,.container-AqxbM340.intent-success-3xXQLoWT .shadow-rtripSA4,html.theme-dark .container-AqxbM340.intent-success-3xXQLoWT,html.theme-dark .container-AqxbM340.intent-success-3xXQLoWT .shadow-rtripSA4{border-color:#00897b}.container-AqxbM340.intent-warning-SstNFztT,.container-AqxbM340.intent-warning-SstNFztT .shadow-rtripSA4,html.theme-dark .container-AqxbM340.intent-warning-SstNFztT,html.theme-dark .container-AqxbM340.intent-warning-SstNFztT .shadow-rtripSA4{border-color:#ff9800}.container-AqxbM340.intent-danger-1URZFATh{border-color:#f44336}html.theme-dark .container-AqxbM340.intent-danger-1URZFATh{border-color:#d32f2f}.container-AqxbM340.intent-danger-1URZFATh .shadow-rtripSA4{border-color:#f44336}html.theme-dark .container-AqxbM340.intent-danger-1URZFATh .shadow-rtripSA4{border-color:#d32f2f}.container-AqxbM340.intent-primary-npIFDxc3{border-color:#2196f3}html.theme-dark .container-AqxbM340.intent-primary-npIFDxc3{border-color:#1976d2}.container-AqxbM340.intent-primary-npIFDxc3 .shadow-rtripSA4{border-color:#2196f3}html.theme-dark .container-AqxbM340.intent-primary-npIFDxc3 .shadow-rtripSA4{border-color:#1976d2}.container-AqxbM340.corner-top-left-1Ex1ff4b{border-top-left-radius:0}.container-AqxbM340.corner-top-right-37x9-mDc{border-top-right-radius:0}.container-AqxbM340.corner-bottom-right-3-_3mqIz{border-bottom-right-radius:0}.container-AqxbM340.corner-bottom-left-3mogFNyF{border-bottom-left-radius:0}.shadow-rtripSA4{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;pointer-events:none;border-radius:4px;border:2px solid}.shadow-rtripSA4.corner-top-left-1Ex1ff4b{border-top-left-radius:0}.shadow-rtripSA4.corner-top-right-37x9-mDc{border-top-right-radius:0}.shadow-rtripSA4.corner-bottom-right-3-_3mqIz{border-bottom-right-radius:0}.shadow-rtripSA4.corner-bottom-left-3mogFNyF{border-bottom-left-radius:0}.placeholder-3IHl8nis,.selected-2IjEMdXr{flex:1 1 auto;box-sizing:border-box;max-width:100%;padding:0 4px 0 8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hiddenArrow-1HtcxiMc{max-width:100%;padding-right:8px}.placeholder-3IHl8nis{color:#d1d4dc}html.theme-dark .placeholder-3IHl8nis{color:#50535e}.controlWrapper-skuqZLfC{box-sizing:border-box;margin-right:2px;padding:2px 0;height:100%;border-radius:0 4px 4px 0;overflow:hidden}.controlWrapper-skuqZLfC.hidden-3NLdXwWA{display:none}.control-1HTkHp6S{display:flex;flex:0 0 auto;box-sizing:border-box;align-items:center;border-radius:2px;padding:0 6px;height:50%;background-color:transparent;color:#787b86;cursor:pointer;transition:color .35s ease,background-color .35s ease}.control-1HTkHp6S svg{fill:currentColor}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.control-1HTkHp6S:hover{color:#131722;background-color:#f0f3fa}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .control-1HTkHp6S:hover{background-color:#363a45;color:#b2b5be}}.controlIncrease-2YFIq5Gk{transform:rotate(180deg)}.decreaseControlIcon-O8mAFFIw,.increaseControlIcon-1tvvZsEf{display:flex;flex:0 0 auto;justify-content:center;width:10px}.decreaseControlIcon-O8mAFFIw svg,.increaseControlIcon-1tvvZsEf svg{width:100%}.content-jw-2aYgg{display:inline-grid;grid-template-columns:auto 1fr;color:#131722;padding:16px 20px;max-width:550px;box-sizing:border-box;width:100%}html.theme-dark .content-jw-2aYgg{color:#b2b5be}.content-jw-2aYgg.ie-2-BNrQbP{display:-ms-inline-grid;-ms-grid-columns:1fr auto}.cell-hIDC3uV- .inner--hn7i_PK{display:flex;align-items:center;padding:8px 0}.ie-2-BNrQbP .cell-hIDC3uV- .inner--hn7i_PK{width:100%}.cell-hIDC3uV-.first-2n3flLMC{display:flex;min-width:0;align-items:center}.ie-2-BNrQbP .cell-hIDC3uV-.first-2n3flLMC{-ms-grid-column:1}.cell-hIDC3uV-.first-2n3flLMC .inner--hn7i_PK{display:block;padding-right:20px;text-transform:capitalize;min-width:0;word-wrap:break-word;cursor:default}.cell-hIDC3uV-.fill-1Pff_fQf{grid-column:1/3}.ie-2-BNrQbP .cell-hIDC3uV-.fill-1Pff_fQf{-ms-grid-column-span:2}.ie-2-BNrQbP .cell-hIDC3uV-.last-3u0rzQsJ{-ms-grid-column:2}.cell-hIDC3uV-.top-E6bk4zZh{align-items:flex-start}.ie-2-BNrQbP .cell-hIDC3uV-.top-E6bk4zZh{-ms-grid-row-align:start}.cell-hIDC3uV-:only-child{max-width:340px}.cell-hIDC3uV-.offset-2t8eK615{padding-left:26px}.grouped-HUhXUUdM .inner--hn7i_PK{padding:4px 0}.separator-27YVz1Zr{margin:8px -20px;height:1px;background-color:#e0e3eb}html.theme-dark .separator-27YVz1Zr{background-color:#434651}.groupSeparator-3LbEcdXc{height:8px}.groupSeparator-3LbEcdXc.big-1ygh-FzO{height:14px}@media screen and (max-width:379px){.content-jw-2aYgg{grid-template-columns:auto -webkit-min-content;grid-template-columns:auto min-content}.cell-hIDC3uV-.first-2n3flLMC .inner--hn7i_PK{padding:8px 20px 8px 0}.cell-hIDC3uV-.adaptive-3nNVfvpI{align-items:flex-start}.ie-2-BNrQbP .cell-hIDC3uV-.adaptive-3nNVfvpI{-ms-grid-row-align:start}.cell-hIDC3uV-.adaptive-3nNVfvpI:not(.checkableTitle-3xDSPDqb){padding-top:8px}} \ No newline at end of file diff --git a/charting_library/static/bundles/17.dcb588d08f4758f3cef4.rtl.css b/charting_library/static/bundles/17.dcb588d08f4758f3cef4.rtl.css new file mode 100644 index 00000000..c233f468 --- /dev/null +++ b/charting_library/static/bundles/17.dcb588d08f4758f3cef4.rtl.css @@ -0,0 +1 @@ +.container-2kDJVADV{display:inline-flex;position:relative;box-sizing:border-box;align-items:center;margin:0;border-radius:4px;border-style:solid;border-color:#d1d4dc}html.theme-dark .container-2kDJVADV{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-2kDJVADV:hover{border-color:#a3a6af}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .container-2kDJVADV:hover{border-color:#6a6d78}}.container-2kDJVADV.focused-GwkJELgF{border-color:#2196f3}html.theme-dark .container-2kDJVADV.focused-GwkJELgF{border-color:#1976d2}.container-2kDJVADV.readonly-3PcaDYes{border-color:#d1d4dc;background-color:#f0f3fa}html.theme-dark .container-2kDJVADV.readonly-3PcaDYes{background-color:#2a2e39;border-color:#50535e}.container-2kDJVADV.disabled-3y5wOPXy{color:#b2b5be;border-color:#d1d4dc;background-color:#f0f3fa}html.theme-dark .container-2kDJVADV.disabled-3y5wOPXy{background-color:#2a2e39;border-color:#50535e;color:#50535e}.container-2kDJVADV.size-medium-2QF4qrsy{height:34px}.container-2kDJVADV.size-large-3c0aAmCz{height:48px}.container-2kDJVADV.font-size-medium-15_hd7kR{font-size:14px;line-height:20px}.container-2kDJVADV.font-size-large-sNxmYZSZ{font-size:16px;line-height:24px}.container-2kDJVADV.border-none-2W-f5CeX{border-width:0}.container-2kDJVADV.border-none-2W-f5CeX .shadow-fRMVHbcr{margin:0}.container-2kDJVADV.border-thin-39LN06wV{border-width:1px}.container-2kDJVADV.border-thin-39LN06wV .shadow-fRMVHbcr{margin:-1px}.container-2kDJVADV.border-thick-3YqbfLWG{border-width:2px}.container-2kDJVADV.border-thick-3YqbfLWG .shadow-fRMVHbcr{margin:-2px}.container-2kDJVADV.intent-default-2WqrktAC .shadow-fRMVHbcr{border-color:#d1d4dc}html.theme-dark .container-2kDJVADV.intent-default-2WqrktAC .shadow-fRMVHbcr{border-color:#50535e}.container-2kDJVADV.intent-success-2qRddKlF,.container-2kDJVADV.intent-success-2qRddKlF .shadow-fRMVHbcr,html.theme-dark .container-2kDJVADV.intent-success-2qRddKlF,html.theme-dark .container-2kDJVADV.intent-success-2qRddKlF .shadow-fRMVHbcr{border-color:#00897b}.container-2kDJVADV.intent-warning-3nKtF1a7,.container-2kDJVADV.intent-warning-3nKtF1a7 .shadow-fRMVHbcr,html.theme-dark .container-2kDJVADV.intent-warning-3nKtF1a7,html.theme-dark .container-2kDJVADV.intent-warning-3nKtF1a7 .shadow-fRMVHbcr{border-color:#ff9800}.container-2kDJVADV.intent-danger-2UcBu3hY{border-color:#f44336}html.theme-dark .container-2kDJVADV.intent-danger-2UcBu3hY{border-color:#d32f2f}.container-2kDJVADV.intent-danger-2UcBu3hY .shadow-fRMVHbcr{border-color:#f44336}html.theme-dark .container-2kDJVADV.intent-danger-2UcBu3hY .shadow-fRMVHbcr{border-color:#d32f2f}.container-2kDJVADV.intent-primary-1GPjPo8I{border-color:#2196f3}html.theme-dark .container-2kDJVADV.intent-primary-1GPjPo8I{border-color:#1976d2}.container-2kDJVADV.intent-primary-1GPjPo8I .shadow-fRMVHbcr{border-color:#2196f3}html.theme-dark .container-2kDJVADV.intent-primary-1GPjPo8I .shadow-fRMVHbcr{border-color:#1976d2}.container-2kDJVADV.corner-top-left-1UYBpB66{border-top-right-radius:0}.container-2kDJVADV.corner-top-right-3vjbw1SH{border-top-left-radius:0}.container-2kDJVADV.corner-bottom-right-2Xs3BwD0{border-bottom-left-radius:0}.container-2kDJVADV.corner-bottom-left-2m7Qn1wR{border-bottom-right-radius:0}.container-2kDJVADV.border-none-2W-f5CeX .input-1Fp9QlzO{padding:0 8px}.container-2kDJVADV.border-none-2W-f5CeX.icon-left-sV9DQagg .icon-1S_6X6gw{margin-right:3px}.container-2kDJVADV.border-none-2W-f5CeX.icon-right-2uMWnixv .icon-1S_6X6gw{margin-left:3px}.container-2kDJVADV.border-thin-39LN06wV.grouped-vertical-2lC0wjMX:not(:first-child){margin-right:-1px}.container-2kDJVADV.border-thin-39LN06wV.grouped-horizontal-3T_Yy5c3:not(:first-child){margin-top:-1px}.container-2kDJVADV.border-thin-39LN06wV .input-1Fp9QlzO{padding:0 7px}.container-2kDJVADV.border-thin-39LN06wV.icon-left-sV9DQagg .icon-1S_6X6gw{margin-right:2px}.container-2kDJVADV.border-thin-39LN06wV.icon-right-2uMWnixv .icon-1S_6X6gw{margin-left:2px}.container-2kDJVADV.border-thick-3YqbfLWG.grouped-vertical-2lC0wjMX:not(:first-child){margin-right:-2px}.container-2kDJVADV.border-thick-3YqbfLWG.grouped-horizontal-3T_Yy5c3:not(:first-child){margin-top:-2px}.container-2kDJVADV.border-thick-3YqbfLWG .input-1Fp9QlzO{padding:0 6px}.container-2kDJVADV.border-thick-3YqbfLWG.icon-left-sV9DQagg .icon-1S_6X6gw{margin-right:1px}.container-2kDJVADV.border-thick-3YqbfLWG.icon-right-2uMWnixv .icon-1S_6X6gw{margin-left:1px}.container-2kDJVADV.icon-right-2uMWnixv .input-1Fp9QlzO{padding-left:4px}.container-2kDJVADV.icon-right-2uMWnixv .icon-1S_6X6gw{order:1}.container-2kDJVADV.icon-left-sV9DQagg .input-1Fp9QlzO{padding-right:4px}.container-2kDJVADV.icon-left-sV9DQagg .icon-1S_6X6gw{order:-1}.container-2kDJVADV.highlight-fnJ4zkJY,.container-2kDJVADV.highlight-fnJ4zkJY.focused-GwkJELgF{border-color:#d1d4dc}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-2kDJVADV.highlight-fnJ4zkJY:hover{border-color:#d1d4dc}}html.theme-dark .container-2kDJVADV.highlight-fnJ4zkJY,html.theme-dark .container-2kDJVADV.highlight-fnJ4zkJY.focused-GwkJELgF{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .container-2kDJVADV.highlight-fnJ4zkJY:hover{border-color:#50535e}}.container-2kDJVADV.grouped-vertical-2lC0wjMX:not(:first-child){margin-right:-1px}.container-2kDJVADV.grouped-horizontal-3T_Yy5c3:not(:first-child){margin-top:-1px}.container-2kDJVADV.grouped-horizontal-3T_Yy5c3.focused-GwkJELgF,.container-2kDJVADV.grouped-vertical-2lC0wjMX.focused-GwkJELgF{z-index:1}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-2kDJVADV.grouped-horizontal-3T_Yy5c3:hover,.container-2kDJVADV.grouped-vertical-2lC0wjMX:hover{z-index:1}}.container-2kDJVADV.grouped-horizontal-3T_Yy5c3.focused-GwkJELgF,.container-2kDJVADV.grouped-vertical-2lC0wjMX.focused-GwkJELgF{z-index:2}.icon-1S_6X6gw{display:flex;flex:none;color:#787b86;height:28px;width:28px;align-items:center;justify-content:center}html.theme-dark .icon-1S_6X6gw{color:#787b86}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-2kDJVADV:hover .icon-1S_6X6gw.interactive-3QZtt2FP{color:#131722}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .container-2kDJVADV:hover .icon-1S_6X6gw.interactive-3QZtt2FP{color:#b2b5be}}.input-1Fp9QlzO{display:block;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;width:100%;min-width:0;height:100%;margin:0;padding:0;border:0;outline:0;background-color:transparent;-webkit-text-fill-color:currentColor;font-size:inherit;font-family:inherit;line-height:inherit;order:0}.input-1Fp9QlzO:-ms-input-placeholder,.input-1Fp9QlzO::-ms-input-placeholder{color:#d1d4dc}.input-1Fp9QlzO::placeholder{color:#d1d4dc}html.theme-dark .input-1Fp9QlzO:-ms-input-placeholder,html.theme-dark .input-1Fp9QlzO::-ms-input-placeholder{color:#50535e}html.theme-dark .input-1Fp9QlzO::placeholder{color:#50535e}.input-1Fp9QlzO::-webkit-calendar-picker-indicator,.input-1Fp9QlzO::-webkit-clear-button,.input-1Fp9QlzO::-webkit-inner-spin-button,.input-1Fp9QlzO::-webkit-outer-spin-button,.input-1Fp9QlzO::-webkit-search-cancel-button{-webkit-appearance:none;appearance:none}.input-1Fp9QlzO::-ms-clear,.input-1Fp9QlzO::-ms-reveal{display:none}.input-1Fp9QlzO:-webkit-autofill,.input-1Fp9QlzO:-webkit-autofill:active,.input-1Fp9QlzO:-webkit-autofill:focus{border-radius:3px}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.input-1Fp9QlzO:-webkit-autofill:hover{border-radius:3px}}.shadow-fRMVHbcr{position:absolute;top:0;right:0;left:0;bottom:0;z-index:3;pointer-events:none;border-radius:4px;border:2px solid}.shadow-fRMVHbcr.corner-top-left-1UYBpB66{border-top-right-radius:0}.shadow-fRMVHbcr.corner-top-right-3vjbw1SH{border-top-left-radius:0}.shadow-fRMVHbcr.corner-bottom-right-2Xs3BwD0{border-bottom-left-radius:0}.shadow-fRMVHbcr.corner-bottom-left-2m7Qn1wR{border-bottom-right-radius:0}.wrapper-CRZXrxS2{flex:none;box-sizing:border-box;padding:2px 0;height:32px;width:21px;outline:none!important;margin-left:2px;margin-right:0;order:1}.wrapper-CRZXrxS2.hidden-1wnB-Kx5{display:none}.button-1Eugtpck{display:flex;flex:none;align-items:center;justify-content:center;height:100%;width:100%;border-radius:2px}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.button-1Eugtpck:hover{background-color:#f0f3fa}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .button-1Eugtpck:hover{background-color:#363a45}}.icon-17-1vCIN{display:flex;flex:none;align-items:center;justify-content:center;transition:transform .35s ease}.icon-17-1vCIN.dropped-ecaUHMhj{transform:rotate(-180deg)}.inputWithErrorWrapper-3VldItns{display:block;position:relative;z-index:0;box-sizing:border-box;height:34px;box-shadow:inset 0 0 0 1px transparent;border:1px solid #d1d4dc;border-radius:4px;background-color:transparent;font-size:15px;color:#131722;-webkit-appearance:none;-moz-appearance:none;appearance:none;transition:border-color 87.5ms ease,box-shadow 87.5ms ease}html.theme-dark .inputWithErrorWrapper-3VldItns{color:#b2b5be;border:1px solid #50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns:hover{z-index:1;border-color:#b2b5be}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns:hover{border-color:#6a6d78}}.disabled-1H5pTmbC{border-color:#d1d4dc;background-color:#f0f3fa;color:#d1d4dc}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.disabled-1H5pTmbC:hover{border-color:#d1d4dc;background-color:#f0f3fa;color:#d1d4dc}}html.theme-dark .disabled-1H5pTmbC{color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .disabled-1H5pTmbC:hover{color:#50535e}}html.theme-dark .disabled-1H5pTmbC{background-color:#2a2e39}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .disabled-1H5pTmbC:hover{background-color:#2a2e39}}html.theme-dark .disabled-1H5pTmbC{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .disabled-1H5pTmbC:hover{border-color:#50535e}}.disabled-1H5pTmbC.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px transparent}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.disabled-1H5pTmbC:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px transparent}}.readonly-3wmbSVwP{border-color:#b2b5be;background-color:#f0f3fa}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.readonly-3wmbSVwP:hover{border-color:#b2b5be;background-color:#f0f3fa}}html.theme-dark .readonly-3wmbSVwP{background-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .readonly-3wmbSVwP:hover{background-color:#50535e}}html.theme-dark .readonly-3wmbSVwP{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .readonly-3wmbSVwP:hover{border-color:#50535e}}.readonly-3wmbSVwP.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px transparent}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.readonly-3wmbSVwP:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px transparent}}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah{border-color:#2196f3;z-index:2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover{border-color:#2196f3;z-index:2}}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah{border-color:#1976d2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover{border-color:#1976d2}}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #2196f3!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #2196f3!important}}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #1976d2!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #1976d2!important}}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF{color:#131722}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF{color:#131722}}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF{color:#b2b5be}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF{color:#b2b5be}}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF:-ms-input-placeholder,.inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF::-ms-input-placeholder{opacity:1;color:#e0e3eb}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF::placeholder{opacity:1;color:#e0e3eb}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF:-ms-input-placeholder,.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF::-ms-input-placeholder{opacity:1;color:#e0e3eb}.inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF::placeholder{opacity:1;color:#e0e3eb}}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF:-ms-input-placeholder,html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF::-ms-input-placeholder{color:#363a45}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah .innerInput-29Ku0bwF::placeholder{color:#363a45}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF:-ms-input-placeholder,html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF::-ms-input-placeholder{color:#363a45}html.theme-dark .inputWithErrorWrapper-3VldItns.focused-3rk113Ah:hover .innerInput-29Ku0bwF::placeholder{color:#363a45}}.inputWithErrorWrapper-3VldItns.error-32uXEKXM{border-color:#ef5350}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover{border-color:#ef5350}}html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM{border-color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover{border-color:#e53935}}.inputWithErrorWrapper-3VldItns.error-32uXEKXM.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #ef5350!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #ef5350!important}}html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #e53935!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover.thickBorder-17UV-SuS{box-shadow:inset 0 0 0 1px #e53935!important}}.inputWithErrorWrapper-3VldItns.error-32uXEKXM .innerInput-29Ku0bwF{color:#ef5350}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover .innerInput-29Ku0bwF{color:#ef5350}}html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM .innerInput-29Ku0bwF{color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.error-32uXEKXM:hover .innerInput-29Ku0bwF{color:#e53935}}.inputWithErrorWrapper-3VldItns.warning-1fcuxDP3 .innerInput-29Ku0bwF{color:#ef6c00}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.inputWithErrorWrapper-3VldItns.warning-1fcuxDP3:hover .innerInput-29Ku0bwF{color:#ef6c00}}html.theme-dark .inputWithErrorWrapper-3VldItns.warning-1fcuxDP3 .innerInput-29Ku0bwF{color:#ef6c00}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .inputWithErrorWrapper-3VldItns.warning-1fcuxDP3:hover .innerInput-29Ku0bwF{color:#ef6c00}}.inputWithError-1wKt_k8s{display:flex;position:relative;flex:0 0 auto;justify-content:space-between;align-items:center;box-sizing:border-box;height:100%}.inputContainer-2JfcvOzg{display:flex;position:relative;width:100%;height:100%;flex-direction:row-reverse}.inputContainerFix-3bYyvsOT{flex-direction:row}.innerInputContainer-FSOtBYl0{display:flex;flex:1 1 auto;align-items:center;justify-content:space-between}.innerInput-29Ku0bwF{display:block;width:100%;height:100%;border:none;padding:0 8px 0 3px;background-color:transparent;box-shadow:0 0 0 0 transparent;font-size:14px;-webkit-appearance:none;-moz-appearance:none;appearance:none;transition:color .35s ease;box-sizing:border-box;-webkit-text-fill-color:currentColor}direction:ltr;text-align:right;padding:0 8px 0 3px;.innerInput-29Ku0bwF.largeFont-1Tlrlf5g{font-size:16px}.innerInput-29Ku0bwF:-ms-input-placeholder,.innerInput-29Ku0bwF::-ms-input-placeholder{opacity:1;color:#c1c4cd}.innerInput-29Ku0bwF::placeholder{opacity:1;color:#c1c4cd}html.theme-dark .innerInput-29Ku0bwF:-ms-input-placeholder,html.theme-dark .innerInput-29Ku0bwF::-ms-input-placeholder{color:#2a2e39}html.theme-dark .innerInput-29Ku0bwF::placeholder{color:#2a2e39}.innerInput-29Ku0bwF::selection{background:rgba(33,150,243,.25)}html.theme-dark .innerInput-29Ku0bwF::selection{background:rgba(25,118,210,.25)}.innerInputFix-3nQEuMmn{direction:ltr;text-align:left;padding:0 3px 0 8px}.errorMessage-3U3e1ayv{padding:5px 8px;font-size:12px;line-height:14px;color:#fff;background-color:#2a2e39;box-sizing:border-box}html.theme-dark .errorMessage-3U3e1ayv{background-color:#434651;color:#b2b5be}.errorMessage-3U3e1ayv:after{content:"";display:block;position:absolute;bottom:-5px;right:50%;transform:translateX(50%);width:0;height:0;border-style:solid;border-width:5px 8px 0;border-color:#2a2e39 transparent transparent}html.theme-dark .errorMessage-3U3e1ayv:after{border-color:#434651 transparent transparent}.iconBlock-1uOkuIhU{display:flex;flex:0 0 auto;height:100%}.container-AqxbM340{display:inline-flex;position:relative;box-sizing:border-box;align-items:center;margin:0;border-radius:4px;border-style:solid;border-color:#d1d4dc;max-width:100%;cursor:default}html.theme-dark .container-AqxbM340{border-color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.container-AqxbM340:hover{border-color:#a3a6af}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .container-AqxbM340:hover{border-color:#6a6d78}}.container-AqxbM340.focused-3bgZ4yBI{border-color:#2196f3}html.theme-dark .container-AqxbM340.focused-3bgZ4yBI{border-color:#1976d2}.container-AqxbM340.readonly-3YlYTz9Q{border-color:#d1d4dc;background-color:#f0f3fa}html.theme-dark .container-AqxbM340.readonly-3YlYTz9Q{background-color:#2a2e39;border-color:#50535e}.container-AqxbM340.disabled-3kisU58M{color:#b2b5be;border-color:#d1d4dc;background-color:#f0f3fa}html.theme-dark .container-AqxbM340.disabled-3kisU58M{background-color:#2a2e39;border-color:#50535e;color:#50535e}.container-AqxbM340.size-medium-2saizg8j{height:34px}.container-AqxbM340.size-large-1HDInl7D{height:48px}.container-AqxbM340.font-size-medium-3qTDml7i{font-size:14px;line-height:20px}.container-AqxbM340.font-size-large-36ClMPCZ{font-size:16px;line-height:24px}.container-AqxbM340.border-none-2VoAEzD9{border-width:0}.container-AqxbM340.border-none-2VoAEzD9 .shadow-rtripSA4{margin:0}.container-AqxbM340.border-thin-2A_CUSMk{border-width:1px}.container-AqxbM340.border-thin-2A_CUSMk .shadow-rtripSA4{margin:-1px}.container-AqxbM340.border-thick-1_qIhMms{border-width:2px}.container-AqxbM340.border-thick-1_qIhMms .shadow-rtripSA4{margin:-2px}.container-AqxbM340.intent-default-saHBD6pK .shadow-rtripSA4{border-color:#d1d4dc}html.theme-dark .container-AqxbM340.intent-default-saHBD6pK .shadow-rtripSA4{border-color:#50535e}.container-AqxbM340.intent-success-3xXQLoWT,.container-AqxbM340.intent-success-3xXQLoWT .shadow-rtripSA4,html.theme-dark .container-AqxbM340.intent-success-3xXQLoWT,html.theme-dark .container-AqxbM340.intent-success-3xXQLoWT .shadow-rtripSA4{border-color:#00897b}.container-AqxbM340.intent-warning-SstNFztT,.container-AqxbM340.intent-warning-SstNFztT .shadow-rtripSA4,html.theme-dark .container-AqxbM340.intent-warning-SstNFztT,html.theme-dark .container-AqxbM340.intent-warning-SstNFztT .shadow-rtripSA4{border-color:#ff9800}.container-AqxbM340.intent-danger-1URZFATh{border-color:#f44336}html.theme-dark .container-AqxbM340.intent-danger-1URZFATh{border-color:#d32f2f}.container-AqxbM340.intent-danger-1URZFATh .shadow-rtripSA4{border-color:#f44336}html.theme-dark .container-AqxbM340.intent-danger-1URZFATh .shadow-rtripSA4{border-color:#d32f2f}.container-AqxbM340.intent-primary-npIFDxc3{border-color:#2196f3}html.theme-dark .container-AqxbM340.intent-primary-npIFDxc3{border-color:#1976d2}.container-AqxbM340.intent-primary-npIFDxc3 .shadow-rtripSA4{border-color:#2196f3}html.theme-dark .container-AqxbM340.intent-primary-npIFDxc3 .shadow-rtripSA4{border-color:#1976d2}.container-AqxbM340.corner-top-left-1Ex1ff4b{border-top-right-radius:0}.container-AqxbM340.corner-top-right-37x9-mDc{border-top-left-radius:0}.container-AqxbM340.corner-bottom-right-3-_3mqIz{border-bottom-left-radius:0}.container-AqxbM340.corner-bottom-left-3mogFNyF{border-bottom-right-radius:0}.shadow-rtripSA4{position:absolute;top:0;right:0;left:0;bottom:0;z-index:3;pointer-events:none;border-radius:4px;border:2px solid}.shadow-rtripSA4.corner-top-left-1Ex1ff4b{border-top-right-radius:0}.shadow-rtripSA4.corner-top-right-37x9-mDc{border-top-left-radius:0}.shadow-rtripSA4.corner-bottom-right-3-_3mqIz{border-bottom-left-radius:0}.shadow-rtripSA4.corner-bottom-left-3mogFNyF{border-bottom-right-radius:0}.placeholder-3IHl8nis,.selected-2IjEMdXr{flex:1 1 auto;box-sizing:border-box;max-width:100%;padding:0 8px 0 4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hiddenArrow-1HtcxiMc{max-width:100%;padding-left:8px}.placeholder-3IHl8nis{color:#d1d4dc}html.theme-dark .placeholder-3IHl8nis{color:#50535e}.controlWrapper-skuqZLfC{box-sizing:border-box;margin-left:2px;padding:2px 0;height:100%;border-radius:4px 0 0 4px;overflow:hidden}margin-left:2px;margin-right:0;.controlWrapper-skuqZLfC.hidden-3NLdXwWA{display:none}.control-1HTkHp6S{display:flex;flex:0 0 auto;box-sizing:border-box;align-items:center;border-radius:2px;padding:0 6px;height:50%;background-color:transparent;color:#787b86;cursor:pointer;transition:color .35s ease,background-color .35s ease}.control-1HTkHp6S svg{fill:currentColor}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.control-1HTkHp6S:hover{color:#131722;background-color:#f0f3fa}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .control-1HTkHp6S:hover{background-color:#363a45;color:#b2b5be}}.controlIncrease-2YFIq5Gk{transform:rotate(-180deg)}.decreaseControlIcon-O8mAFFIw,.increaseControlIcon-1tvvZsEf{display:flex;flex:0 0 auto;justify-content:center;width:10px}.decreaseControlIcon-O8mAFFIw svg,.increaseControlIcon-1tvvZsEf svg{width:100%}.content-jw-2aYgg{display:inline-grid;grid-template-columns:auto 1fr;color:#131722;padding:16px 20px;max-width:550px;box-sizing:border-box;width:100%}html.theme-dark .content-jw-2aYgg{color:#b2b5be}.content-jw-2aYgg.ie-2-BNrQbP{display:-ms-inline-grid;-ms-grid-columns:1fr auto}.cell-hIDC3uV- .inner--hn7i_PK{display:flex;align-items:center;padding:8px 0}.ie-2-BNrQbP .cell-hIDC3uV- .inner--hn7i_PK{width:100%}.cell-hIDC3uV-.first-2n3flLMC{display:flex;min-width:0;align-items:center}.ie-2-BNrQbP .cell-hIDC3uV-.first-2n3flLMC{-ms-grid-column:1}.cell-hIDC3uV-.first-2n3flLMC .inner--hn7i_PK{display:block;padding-left:20px;text-transform:capitalize;min-width:0;word-wrap:break-word;cursor:default}.cell-hIDC3uV-.fill-1Pff_fQf{grid-column:1/3}.ie-2-BNrQbP .cell-hIDC3uV-.fill-1Pff_fQf{-ms-grid-column-span:2}.ie-2-BNrQbP .cell-hIDC3uV-.last-3u0rzQsJ{-ms-grid-column:2}.cell-hIDC3uV-.top-E6bk4zZh{align-items:flex-start}.ie-2-BNrQbP .cell-hIDC3uV-.top-E6bk4zZh{-ms-grid-row-align:start}.cell-hIDC3uV-:only-child{max-width:340px}.cell-hIDC3uV-.offset-2t8eK615{padding-right:26px}.grouped-HUhXUUdM .inner--hn7i_PK{padding:4px 0}.separator-27YVz1Zr{margin:8px -20px;height:1px;background-color:#e0e3eb}html.theme-dark .separator-27YVz1Zr{background-color:#434651}.groupSeparator-3LbEcdXc{height:8px}.groupSeparator-3LbEcdXc.big-1ygh-FzO{height:14px}@media screen and (max-width:379px){.content-jw-2aYgg{grid-template-columns:auto -webkit-min-content;grid-template-columns:auto min-content}.cell-hIDC3uV-.first-2n3flLMC .inner--hn7i_PK{padding:8px 0 8px 20px}.cell-hIDC3uV-.adaptive-3nNVfvpI{align-items:flex-start}.ie-2-BNrQbP .cell-hIDC3uV-.adaptive-3nNVfvpI{-ms-grid-row-align:start}.cell-hIDC3uV-.adaptive-3nNVfvpI:not(.checkableTitle-3xDSPDqb){padding-top:8px}} \ No newline at end of file diff --git a/charting_library/static/bundles/18.183d41ade16dae257526.css b/charting_library/static/bundles/18.183d41ade16dae257526.css deleted file mode 100644 index 71a8e58a..00000000 --- a/charting_library/static/bundles/18.183d41ade16dae257526.css +++ /dev/null @@ -1 +0,0 @@ -.inputWrapper-6bNZbTW4-{display:flex;flex-grow:1;position:relative;border-radius:2px 2px 2px 2px}.textInput-3WRWEmm7-{background-color:#fff;border:1px solid;box-sizing:border-box;color:#535353;display:flex;font-size:13px;height:34px;padding:0 12px;transition:border-color .35s ease 0s,background-color .35s ease 0s;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:inherit;border-color:#dadde0;flex:1}html.theme-dark .textInput-3WRWEmm7-{border-color:#363c4e;color:#f2f3f5;background-color:#131722}.textInput-3WRWEmm7-:-ms-input-placeholder,.textInput-3WRWEmm7-::-ms-input-placeholder{color:#adaeb0;opacity:1}.textInput-3WRWEmm7-::placeholder{color:#adaeb0;opacity:1}html.theme-dark .textInput-3WRWEmm7-:-ms-input-placeholder,html.theme-dark .textInput-3WRWEmm7-::-ms-input-placeholder{color:#4f5966}html.theme-dark .textInput-3WRWEmm7-::placeholder{color:#4f5966}.textInput-3WRWEmm7-[readonly],.textInput-3WRWEmm7-[readonly]:focus{border-color:#dadde0;color:#8a8a8a}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-[readonly]:hover{border-color:#dadde0;color:#8a8a8a}}html.theme-dark .textInput-3WRWEmm7-[readonly],html.theme-dark .textInput-3WRWEmm7-[readonly]:focus{color:#758696}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[readonly]:hover{color:#758696}}html.theme-dark .textInput-3WRWEmm7-[readonly],html.theme-dark .textInput-3WRWEmm7-[readonly]:focus{border-color:#363c4e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[readonly]:hover{border-color:#363c4e}}.textInput-3WRWEmm7-[disabled]{color:#ececec;border-color:#ececec;background-color:#fff;cursor:auto}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-[disabled]:hover{color:#ececec;border-color:#ececec;background-color:#fff;cursor:auto}}html.theme-dark .textInput-3WRWEmm7-[disabled]{background-color:#131722}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[disabled]:hover{background-color:#131722}}html.theme-dark .textInput-3WRWEmm7-[disabled]{border-color:#262b3e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[disabled]:hover{border-color:#262b3e}}html.theme-dark .textInput-3WRWEmm7-[disabled]{color:#262b3e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[disabled]:hover{color:#262b3e}}.textInput-3WRWEmm7-[disabled]:-ms-input-placeholder,.textInput-3WRWEmm7-[disabled]::-ms-input-placeholder{color:#ececec}.textInput-3WRWEmm7-[disabled]::placeholder{color:#ececec}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-[disabled]:hover:-ms-input-placeholder,.textInput-3WRWEmm7-[disabled]:hover::-ms-input-placeholder{color:#ececec}.textInput-3WRWEmm7-[disabled]:hover::placeholder{color:#ececec}}html.theme-dark .textInput-3WRWEmm7-[disabled]:-ms-input-placeholder,html.theme-dark .textInput-3WRWEmm7-[disabled]::-ms-input-placeholder{color:#262b3e}html.theme-dark .textInput-3WRWEmm7-[disabled]::placeholder{color:#262b3e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[disabled]:hover:-ms-input-placeholder,html.theme-dark .textInput-3WRWEmm7-[disabled]:hover::-ms-input-placeholder{color:#262b3e}html.theme-dark .textInput-3WRWEmm7-[disabled]:hover::placeholder{color:#262b3e}}.textInput-3WRWEmm7-.error-v0663AtN-,.textInput-3WRWEmm7-.error-v0663AtN-[disabled],.textInput-3WRWEmm7-.error-v0663AtN-[readonly]{border-color:#f24965!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-.error-v0663AtN-:hover{border-color:#f24965!important}}.textInput-3WRWEmm7-.success-7iP8kTY5-,.textInput-3WRWEmm7-.success-7iP8kTY5-[disabled],.textInput-3WRWEmm7-.success-7iP8kTY5-[readonly]{border-color:#38b395!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-.success-7iP8kTY5-:hover{border-color:#38b395!important}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-:hover{border-color:#c8c8c8;transition-duration:.06s}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-:hover{border-color:#4c525e}}.textInput-3WRWEmm7-:focus{border-color:#2196f3!important;transition-duration:.06s}.textInput-3WRWEmm7-.textInputLeftDirection-mlAXPh8V-{text-align:left;direction:ltr}.xsmall-3Ah_Or2--{height:19px}.small-2bmxiJCE-{height:27px}.large-1JDowW2I-{height:48px}.iconed-3ZQvxTot- .textInput-3WRWEmm7-{padding-left:30px}.iconed-3ZQvxTot- .inputIcon-W_Bse-a1-{opacity:.4}.iconed-3ZQvxTot- .inputIcon-W_Bse-a1- svg{display:inline-block;position:absolute;width:14px;height:14px;margin:10px 0 0 10px;fill:#4a4a4a;stroke:#4a4a4a}.clearable-2tabt_rj- .textInput-3WRWEmm7-{display:inline-block;width:100%}.clearable-2tabt_rj- .clearIcon-389FR5J4-{display:inline-flex;position:absolute;right:12px;top:10px;cursor:pointer;opacity:.4}.clearable-2tabt_rj- .clearIcon-389FR5J4- svg{max-width:16px;height:16px;fill:#4a4a4a;stroke:#4a4a4a} \ No newline at end of file diff --git a/charting_library/static/bundles/18.183d41ade16dae257526.rtl.css b/charting_library/static/bundles/18.183d41ade16dae257526.rtl.css deleted file mode 100644 index cc585cfd..00000000 --- a/charting_library/static/bundles/18.183d41ade16dae257526.rtl.css +++ /dev/null @@ -1 +0,0 @@ -.inputWrapper-6bNZbTW4-{display:flex;flex-grow:1;position:relative;border-radius:2px 2px 2px 2px}.textInput-3WRWEmm7-{background-color:#fff;border:1px solid;box-sizing:border-box;color:#535353;display:flex;font-size:13px;height:34px;padding:0 12px;transition:border-color .35s ease 0s,background-color .35s ease 0s;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:inherit;border-color:#dadde0;flex:1}html.theme-dark .textInput-3WRWEmm7-{border-color:#363c4e;color:#f2f3f5;background-color:#131722}.textInput-3WRWEmm7-:-ms-input-placeholder,.textInput-3WRWEmm7-::-ms-input-placeholder{color:#adaeb0;opacity:1}.textInput-3WRWEmm7-::placeholder{color:#adaeb0;opacity:1}html.theme-dark .textInput-3WRWEmm7-:-ms-input-placeholder,html.theme-dark .textInput-3WRWEmm7-::-ms-input-placeholder{color:#4f5966}html.theme-dark .textInput-3WRWEmm7-::placeholder{color:#4f5966}.textInput-3WRWEmm7-[readonly],.textInput-3WRWEmm7-[readonly]:focus{border-color:#dadde0;color:#8a8a8a}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-[readonly]:hover{border-color:#dadde0;color:#8a8a8a}}html.theme-dark .textInput-3WRWEmm7-[readonly],html.theme-dark .textInput-3WRWEmm7-[readonly]:focus{color:#758696}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[readonly]:hover{color:#758696}}html.theme-dark .textInput-3WRWEmm7-[readonly],html.theme-dark .textInput-3WRWEmm7-[readonly]:focus{border-color:#363c4e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[readonly]:hover{border-color:#363c4e}}.textInput-3WRWEmm7-[disabled]{color:#ececec;border-color:#ececec;background-color:#fff;cursor:auto}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-[disabled]:hover{color:#ececec;border-color:#ececec;background-color:#fff;cursor:auto}}html.theme-dark .textInput-3WRWEmm7-[disabled]{background-color:#131722}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[disabled]:hover{background-color:#131722}}html.theme-dark .textInput-3WRWEmm7-[disabled]{border-color:#262b3e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[disabled]:hover{border-color:#262b3e}}html.theme-dark .textInput-3WRWEmm7-[disabled]{color:#262b3e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[disabled]:hover{color:#262b3e}}.textInput-3WRWEmm7-[disabled]:-ms-input-placeholder,.textInput-3WRWEmm7-[disabled]::-ms-input-placeholder{color:#ececec}.textInput-3WRWEmm7-[disabled]::placeholder{color:#ececec}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-[disabled]:hover:-ms-input-placeholder,.textInput-3WRWEmm7-[disabled]:hover::-ms-input-placeholder{color:#ececec}.textInput-3WRWEmm7-[disabled]:hover::placeholder{color:#ececec}}html.theme-dark .textInput-3WRWEmm7-[disabled]:-ms-input-placeholder,html.theme-dark .textInput-3WRWEmm7-[disabled]::-ms-input-placeholder{color:#262b3e}html.theme-dark .textInput-3WRWEmm7-[disabled]::placeholder{color:#262b3e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-[disabled]:hover:-ms-input-placeholder,html.theme-dark .textInput-3WRWEmm7-[disabled]:hover::-ms-input-placeholder{color:#262b3e}html.theme-dark .textInput-3WRWEmm7-[disabled]:hover::placeholder{color:#262b3e}}.textInput-3WRWEmm7-.error-v0663AtN-,.textInput-3WRWEmm7-.error-v0663AtN-[disabled],.textInput-3WRWEmm7-.error-v0663AtN-[readonly]{border-color:#f24965!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-.error-v0663AtN-:hover{border-color:#f24965!important}}.textInput-3WRWEmm7-.success-7iP8kTY5-,.textInput-3WRWEmm7-.success-7iP8kTY5-[disabled],.textInput-3WRWEmm7-.success-7iP8kTY5-[readonly]{border-color:#38b395!important}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-.success-7iP8kTY5-:hover{border-color:#38b395!important}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.textInput-3WRWEmm7-:hover{border-color:#c8c8c8;transition-duration:.06s}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .textInput-3WRWEmm7-:hover{border-color:#4c525e}}.textInput-3WRWEmm7-:focus{border-color:#2196f3!important;transition-duration:.06s}.textInput-3WRWEmm7-.textInputLeftDirection-mlAXPh8V-{text-align:left;direction:ltr}.xsmall-3Ah_Or2--{height:19px}.small-2bmxiJCE-{height:27px}.large-1JDowW2I-{height:48px}.iconed-3ZQvxTot- .textInput-3WRWEmm7-{padding-right:30px}.iconed-3ZQvxTot- .inputIcon-W_Bse-a1-{opacity:.4}.iconed-3ZQvxTot- .inputIcon-W_Bse-a1- svg{display:inline-block;position:absolute;width:14px;height:14px;margin:10px 10px 0 0;fill:#4a4a4a;stroke:#4a4a4a}.clearable-2tabt_rj- .textInput-3WRWEmm7-{display:inline-block;width:100%}.clearable-2tabt_rj- .clearIcon-389FR5J4-{display:inline-flex;position:absolute;left:12px;top:10px;cursor:pointer;opacity:.4}.clearable-2tabt_rj- .clearIcon-389FR5J4- svg{max-width:16px;height:16px;fill:#4a4a4a;stroke:#4a4a4a} \ No newline at end of file diff --git a/charting_library/static/bundles/18.390326ae19e7f97c8419.css b/charting_library/static/bundles/18.390326ae19e7f97c8419.css new file mode 100644 index 00000000..2dbe7f54 --- /dev/null +++ b/charting_library/static/bundles/18.390326ae19e7f97c8419.css @@ -0,0 +1 @@ +.tv-button{position:relative;display:inline-block;vertical-align:middle;min-width:40px;margin:0;padding:1px 22px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:32px;text-align:center;white-space:nowrap;text-decoration:none;font-size:14px;color:#757575;fill:currentColor;border:none;border-radius:4px;outline:0;background-color:transparent;cursor:pointer;overflow:hidden;box-sizing:border-box;-webkit-tap-highlight-color:transparent;transition:background-color .35s ease,border-color .35s ease,color .35s ease}.tv-button.tv-button--danger_ghost,.tv-button.tv-button--default,.tv-button.tv-button--default_ghost,.tv-button.tv-button--primary_ghost,.tv-button.tv-button--secondary_ghost,.tv-button.tv-button--state,.tv-button.tv-button--success_ghost,.tv-button.tv-button--warning_ghost{padding:0 21px}.tv-button.i-active,.tv-button.i-hover,.tv-button:active{transition-duration:.06s}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button:hover{transition-duration:.06s}}.tv-button svg{vertical-align:middle}.tv-button--block{display:block;width:100%;text-align:center}.tv-button+.tv-button{margin-left:15px}.tv-button.tv-button--no-left-margin{margin-left:0}.tv-button__text{position:relative;display:inline-block}.tv-button__text--full-height{display:flex;align-items:center;justify-content:center;height:100%;width:100%;white-space:normal;word-wrap:break-word;line-height:1.2em;margin:11px 5px}.tv-button--default,.tv-button--default_ghost{color:#fff;border-color:#fff;background-color:#fff}html.theme-dark .tv-button--default,html.theme-dark .tv-button--default_ghost{background-color:#1e222d;border-color:#1e222d}.tv-button--default_ghost{color:#fff}html.theme-dark .tv-button--default_ghost{color:#1e222d}.tv-button--default_ghost.i-checked{color:#fff;border-color:#fff;background-color:#fff}html.theme-dark .tv-button--default_ghost.i-checked{background-color:#1e222d;border-color:#1e222d}.tv-button--default.i-hover,.tv-button--default_ghost.i-hover{color:#fff;border-color:#f2f2f2;background-color:#f2f2f2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--default:hover,.tv-button--default_ghost:hover{color:#fff;border-color:#f2f2f2;background-color:#f2f2f2}}html.theme-dark .tv-button--default.i-hover,html.theme-dark .tv-button--default_ghost.i-hover{background-color:#1c2030}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--default:hover,html.theme-dark .tv-button--default_ghost:hover{background-color:#1c2030}}html.theme-dark .tv-button--default.i-hover,html.theme-dark .tv-button--default_ghost.i-hover{border-color:#1c2030}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--default:hover,html.theme-dark .tv-button--default_ghost:hover{border-color:#1c2030}}.tv-button--default.i-active,.tv-button--default:active,.tv-button--default_ghost.i-active,.tv-button--default_ghost:active{color:#fff;border-color:#ececec;background-color:#ececec;transform:translateY(1px)}html.theme-dark .tv-button--default.i-active,html.theme-dark .tv-button--default:active,html.theme-dark .tv-button--default_ghost.i-active,html.theme-dark .tv-button--default_ghost:active{background-color:#1c2030;border-color:#1c2030}.tv-button--default,.tv-button--default.i-checked,.tv-button--default_ghost,.tv-button--default_ghost.i-checked{color:#757575;border:1px solid;border-color:#b5b7b9}html.theme-dark .tv-button--default,html.theme-dark .tv-button--default.i-checked,html.theme-dark .tv-button--default_ghost,html.theme-dark .tv-button--default_ghost.i-checked{border-color:#363c4e;color:#758696}.tv-button--default.i-hover,.tv-button--default_ghost.i-hover{color:#757575;border-color:#b5b7b9}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--default:hover,.tv-button--default_ghost:hover{color:#757575;border-color:#b5b7b9}}html.theme-dark .tv-button--default.i-hover,html.theme-dark .tv-button--default_ghost.i-hover{border-color:#363c4e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--default:hover,html.theme-dark .tv-button--default_ghost:hover{border-color:#363c4e}}html.theme-dark .tv-button--default.i-hover,html.theme-dark .tv-button--default_ghost.i-hover{color:#758696}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--default:hover,html.theme-dark .tv-button--default_ghost:hover{color:#758696}}.tv-button--default.i-active,.tv-button--default:active,.tv-button--default_ghost.i-active,.tv-button--default_ghost:active{color:#757575;border-color:#b5b7b9}html.theme-dark .tv-button--default.i-active,html.theme-dark .tv-button--default:active,html.theme-dark .tv-button--default_ghost.i-active,html.theme-dark .tv-button--default_ghost:active{border-color:#363c4e;color:#758696}.tv-button--primary,.tv-button--primary_ghost{color:#fff;border-color:#2196f3;background-color:#2196f3}html.theme-dark .tv-button--primary,html.theme-dark .tv-button--primary_ghost{background-color:#1976d2;border-color:#1976d2;color:#fff}.tv-button--primary_ghost{color:#2196f3}html.theme-dark .tv-button--primary_ghost{color:#1976d2}.tv-button--primary_ghost.i-checked{color:#fff;border-color:#2196f3;background-color:#2196f3}html.theme-dark .tv-button--primary_ghost.i-checked{background-color:#1976d2;border-color:#1976d2;color:#fff}.tv-button--primary.i-hover,.tv-button--primary_ghost.i-hover{color:#fff;border-color:#1e88e5;background-color:#1e88e5}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--primary:hover,.tv-button--primary_ghost:hover{color:#fff;border-color:#1e88e5;background-color:#1e88e5}}html.theme-dark .tv-button--primary.i-hover,html.theme-dark .tv-button--primary_ghost.i-hover{background-color:#1e88e5}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--primary:hover,html.theme-dark .tv-button--primary_ghost:hover{background-color:#1e88e5}}html.theme-dark .tv-button--primary.i-hover,html.theme-dark .tv-button--primary_ghost.i-hover{border-color:#1e88e5}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--primary:hover,html.theme-dark .tv-button--primary_ghost:hover{border-color:#1e88e5}}html.theme-dark .tv-button--primary.i-hover,html.theme-dark .tv-button--primary_ghost.i-hover{color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--primary:hover,html.theme-dark .tv-button--primary_ghost:hover{color:#fff}}.tv-button--primary.i-active,.tv-button--primary:active,.tv-button--primary_ghost.i-active,.tv-button--primary_ghost:active{color:#fff;border-color:#1e88e5;background-color:#1e88e5;transform:translateY(1px)}html.theme-dark .tv-button--primary.i-active,html.theme-dark .tv-button--primary:active,html.theme-dark .tv-button--primary_ghost.i-active,html.theme-dark .tv-button--primary_ghost:active{background-color:#1e88e5;border-color:#1e88e5;color:#fff}.tv-button--secondary,.tv-button--secondary_ghost{color:#757575;border-color:#e9eff2;background-color:#e9eff2}.tv-button--secondary_ghost{color:#757575}.tv-button--secondary_ghost.i-checked{color:#757575;border-color:#e9eff2;background-color:#e9eff2}.tv-button--secondary.i-hover,.tv-button--secondary_ghost.i-hover{color:#757575;border-color:#dce6ea;background-color:#dce6ea}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--secondary:hover,.tv-button--secondary_ghost:hover{color:#757575;border-color:#dce6ea;background-color:#dce6ea}}.tv-button--secondary.i-active,.tv-button--secondary:active,.tv-button--secondary_ghost.i-active,.tv-button--secondary_ghost:active{color:#757575;border-color:#cfdce3;background-color:#cfdce3;transform:translateY(1px)}.tv-button--success,.tv-button--success_ghost{color:#fff;border-color:#009688;background-color:#009688}html.theme-dark .tv-button--success,html.theme-dark .tv-button--success_ghost{background-color:#00796b;border-color:#00796b;color:#fff}.tv-button--success_ghost{color:#009688}html.theme-dark .tv-button--success_ghost{color:#00796b}.tv-button--success_ghost.i-checked{color:#fff;border-color:#009688;background-color:#009688}html.theme-dark .tv-button--success_ghost.i-checked{background-color:#00796b;border-color:#00796b;color:#fff}.tv-button--success.i-hover,.tv-button--success_ghost.i-hover{color:#fff;border-color:#00897b;background-color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--success:hover,.tv-button--success_ghost:hover{color:#fff;border-color:#00897b;background-color:#00897b}}html.theme-dark .tv-button--success.i-hover,html.theme-dark .tv-button--success_ghost.i-hover{background-color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--success:hover,html.theme-dark .tv-button--success_ghost:hover{background-color:#00897b}}html.theme-dark .tv-button--success.i-hover,html.theme-dark .tv-button--success_ghost.i-hover{border-color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--success:hover,html.theme-dark .tv-button--success_ghost:hover{border-color:#00897b}}html.theme-dark .tv-button--success.i-hover,html.theme-dark .tv-button--success_ghost.i-hover{color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--success:hover,html.theme-dark .tv-button--success_ghost:hover{color:#fff}}.tv-button--success.i-active,.tv-button--success:active,.tv-button--success_ghost.i-active,.tv-button--success_ghost:active{color:#fff;border-color:#00796b;background-color:#00796b;transform:translateY(1px)}html.theme-dark .tv-button--success.i-active,html.theme-dark .tv-button--success:active,html.theme-dark .tv-button--success_ghost.i-active,html.theme-dark .tv-button--success_ghost:active{background-color:#009688;border-color:#009688;color:#fff}.tv-button--danger,.tv-button--danger_ghost{color:#fff;border-color:#f44336;background-color:#f44336}html.theme-dark .tv-button--danger,html.theme-dark .tv-button--danger_ghost{background-color:#d32f2f;border-color:#d32f2f;color:#fff}.tv-button--danger_ghost{color:#f44336}html.theme-dark .tv-button--danger_ghost{color:#d32f2f}.tv-button--danger_ghost.i-checked{color:#fff;border-color:#f44336;background-color:#f44336}html.theme-dark .tv-button--danger_ghost.i-checked{background-color:#d32f2f;border-color:#d32f2f;color:#fff}.tv-button--danger.i-hover,.tv-button--danger_ghost.i-hover{color:#fff;border-color:#e53935;background-color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--danger:hover,.tv-button--danger_ghost:hover{color:#fff;border-color:#e53935;background-color:#e53935}}html.theme-dark .tv-button--danger.i-hover,html.theme-dark .tv-button--danger_ghost.i-hover{background-color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--danger:hover,html.theme-dark .tv-button--danger_ghost:hover{background-color:#e53935}}html.theme-dark .tv-button--danger.i-hover,html.theme-dark .tv-button--danger_ghost.i-hover{border-color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--danger:hover,html.theme-dark .tv-button--danger_ghost:hover{border-color:#e53935}}html.theme-dark .tv-button--danger.i-hover,html.theme-dark .tv-button--danger_ghost.i-hover{color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--danger:hover,html.theme-dark .tv-button--danger_ghost:hover{color:#fff}}.tv-button--danger.i-active,.tv-button--danger:active,.tv-button--danger_ghost.i-active,.tv-button--danger_ghost:active{color:#fff;border-color:#d32f2f;background-color:#d32f2f;transform:translateY(1px)}html.theme-dark .tv-button--danger.i-active,html.theme-dark .tv-button--danger:active,html.theme-dark .tv-button--danger_ghost.i-active,html.theme-dark .tv-button--danger_ghost:active{background-color:#f44336;border-color:#f44336;color:#fff}.tv-button--warning,.tv-button--warning_ghost{color:#fff;border-color:#f89e30;background-color:#f89e30}.tv-button--warning_ghost{color:#f89e30}.tv-button--warning_ghost.i-checked{color:#fff;border-color:#f89e30;background-color:#f89e30}.tv-button--warning.i-hover,.tv-button--warning_ghost.i-hover{color:#fff;border-color:#f79217;background-color:#f79217}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--warning:hover,.tv-button--warning_ghost:hover{color:#fff;border-color:#f79217;background-color:#f79217}}.tv-button--warning.i-active,.tv-button--warning:active,.tv-button--warning_ghost.i-active,.tv-button--warning_ghost:active{color:#fff;border-color:#d47807;background-color:#d47807;transform:translateY(1px)}.tv-button--link{color:#2196f3;transition:color .35s ease}html.theme-dark .tv-button--link{color:#1976d2}.tv-button--link:visited{color:#2196f3;fill:#2196f3}html.theme-dark .tv-button--link:visited{fill:#1976d2;color:#1976d2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--link:hover{color:#1e88e5;fill:#1e88e5;transition-duration:.06s}}.tv-button--link:focus{outline:auto}.tv-button--link:focus:not(:-moz-focusring){outline:none}.tv-button--link:-moz-focusring{outline:auto}.tv-button--link:active{color:#1e88e5;fill:#1e88e5;transition-duration:.06s}.tv-button--danger_ghost,.tv-button--default_ghost,.tv-button--primary_ghost,.tv-button--secondary_ghost,.tv-button--success_ghost,.tv-button--warning_ghost{border-width:1px;border-style:solid;background-color:transparent}html.theme-dark .tv-button--danger_ghost,html.theme-dark .tv-button--default_ghost,html.theme-dark .tv-button--primary_ghost,html.theme-dark .tv-button--secondary_ghost,html.theme-dark .tv-button--success_ghost,html.theme-dark .tv-button--warning_ghost{background-color:transparent}.tv-button--danger_ghost.tv-button--size_large,.tv-button--default_ghost.tv-button--size_large,.tv-button--primary_ghost.tv-button--size_large,.tv-button--secondary_ghost.tv-button--size_large,.tv-button--success_ghost.tv-button--size_large,.tv-button--warning_ghost.tv-button--size_large{border-width:2px}.tv-button--danger_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--default_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--primary_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--secondary_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--success_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--warning_ghost.tv-button--size_large.tv-button--thin-border{border-width:1px}.tv-button .tv-ripple{background-color:hsla(0,0%,100%,.25)}.tv-button--default .tv-ripple,.tv-button--default_ghost .tv-ripple{background-color:rgba(117,134,150,.25)}.tv-button.i-disabled .tv-ripple{background-color:transparent}.tv-button.i-disabled,.tv-button.i-disabled:active,.tv-button:disabled,.tv-button:disabled:active{cursor:default;color:#b2b5be;border-color:#e0e3eb;background-color:#e0e3eb}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button.i-disabled:hover,.tv-button:disabled:hover{cursor:default;color:#b2b5be;border-color:#e0e3eb;background-color:#e0e3eb}}html.theme-dark .tv-button.i-disabled,html.theme-dark .tv-button.i-disabled:active,html.theme-dark .tv-button:disabled,html.theme-dark .tv-button:disabled:active{background-color:#363a45}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button.i-disabled:hover,html.theme-dark .tv-button:disabled:hover{background-color:#363a45}}html.theme-dark .tv-button.i-disabled,html.theme-dark .tv-button.i-disabled:active,html.theme-dark .tv-button:disabled,html.theme-dark .tv-button:disabled:active{border-color:#363a45}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button.i-disabled:hover,html.theme-dark .tv-button:disabled:hover{border-color:#363a45}}html.theme-dark .tv-button.i-disabled,html.theme-dark .tv-button.i-disabled:active,html.theme-dark .tv-button:disabled,html.theme-dark .tv-button:disabled:active{color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button.i-disabled:hover,html.theme-dark .tv-button:disabled:hover{color:#50535e}}.tv-button.i-disabled:active,.tv-button:disabled:active{transform:translateY(0)}.tv-button--size_xsmall{padding:2px 7px;line-height:15px;border-radius:1px;font-size:11px;font-weight:400}.tv-button--size_xsmall.tv-button--danger_ghost,.tv-button--size_xsmall.tv-button--default,.tv-button--size_xsmall.tv-button--default_ghost,.tv-button--size_xsmall.tv-button--primary_ghost,.tv-button--size_xsmall.tv-button--secondary_ghost,.tv-button--size_xsmall.tv-button--state,.tv-button--size_xsmall.tv-button--success_ghost,.tv-button--size_xsmall.tv-button--warning_ghost{padding:1px 6px}.tv-button--size_xsmall+.tv-button--size_xsmall{margin-left:10px}.tv-button--size_small{padding:1px 12px;line-height:25px;font-size:13px}.tv-button--size_small.tv-button--danger_ghost,.tv-button--size_small.tv-button--default,.tv-button--size_small.tv-button--default_ghost,.tv-button--size_small.tv-button--primary_ghost,.tv-button--size_small.tv-button--secondary_ghost,.tv-button--size_small.tv-button--state,.tv-button--size_small.tv-button--success_ghost,.tv-button--size_small.tv-button--warning_ghost{padding:0 11px}.tv-button--size_small+.tv-button--size_small{margin-left:10px}.tv-button--size_large{padding:1px 30px;font-size:17px;letter-spacing:1px;line-height:44px}.tv-button--size_large.tv-button--danger_ghost,.tv-button--size_large.tv-button--default,.tv-button--size_large.tv-button--default_ghost,.tv-button--size_large.tv-button--primary_ghost,.tv-button--size_large.tv-button--secondary_ghost,.tv-button--size_large.tv-button--state,.tv-button--size_large.tv-button--success_ghost,.tv-button--size_large.tv-button--warning_ghost{padding:0 29px}.tv-button--max-width{max-width:300px}.tv-button--no-padding{padding:1px}.tv-button--no-padding.tv-button--danger_ghost,.tv-button--no-padding.tv-button--default,.tv-button--no-padding.tv-button--default_ghost,.tv-button--no-padding.tv-button--primary_ghost,.tv-button--no-padding.tv-button--secondary_ghost,.tv-button--no-padding.tv-button--state,.tv-button--no-padding.tv-button--success_ghost,.tv-button--no-padding.tv-button--warning_ghost{padding:0}.tv-button--content-center{display:flex;align-items:center;justify-content:center;height:100%;margin:0 auto;max-width:220px}.tv-button--state{text-align:center;border-width:1px;border-style:solid}.tv-button--state,html.theme-dark .tv-button--state{background:transparent}.tv-button--state:after{content:"";display:inline-block}.tv-button--state__checked,.tv-button--state__uncheck-hint,.tv-button--state__unchecked{display:block;height:0;transition:opacity .2625s ease,transform .2625s ease}.tv-button--state__ellipsis-text{display:block;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__checked,.tv-button--state.i-checked:hover .tv-button--state__uncheck-hint,.tv-button--state.i-checked:hover .tv-button--state__unchecked{will-change:opacity,transform}}.tv-button--state.i-checked .tv-button--state__unchecked,.tv-button--state__checked,.tv-button--state__uncheck-hint{opacity:0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__checked{opacity:0}}.tv-button--state.i-checked .tv-button--state__checked,.tv-button--state__unchecked{opacity:1}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__uncheck-hint{opacity:1}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__checked{transform:translateY(-5px)}}.tv-button--state.i-checked .tv-button--state__unchecked,.tv-button--state__checked,.tv-button--state__uncheck-hint{transform:translateY(5px)}.tv-button--state.i-checked .tv-button--state__checked{transform:translateY(0)}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__uncheck-hint{transform:translateY(0)}}.tv-button--state.tv-button--success{color:#009688;background-color:transparent}html.theme-dark .tv-button--state.tv-button--success{background-color:transparent;color:#00796b}.tv-button--state.tv-button--success.i-checked{color:#fff;background-color:#009688}html.theme-dark .tv-button--state.tv-button--success.i-checked{background-color:#00796b;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--success:hover{color:#fff;background-color:#00897b}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--state.tv-button--success:hover{background-color:#00897b;color:#fff}}.tv-button--state.tv-button--success:active{color:#fff;background-color:#00796b}html.theme-dark .tv-button--state.tv-button--success:active{background-color:#009688;color:#fff}.tv-button--state.tv-button--danger{color:#f44336;background-color:transparent}html.theme-dark .tv-button--state.tv-button--danger{background-color:transparent;color:#d32f2f}.tv-button--state.tv-button--danger.i-checked{color:#fff;background-color:#ff4a68}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--danger:hover{color:#fff;background-color:#f24965}}.tv-button--state.tv-button--danger:active{color:#fff;background-color:#ff173e}.tv-button--state.tv-button--primary{color:#2196f3;background-color:transparent}html.theme-dark .tv-button--state.tv-button--primary{background-color:transparent;color:#1976d2}.tv-button--state.tv-button--primary.i-checked{color:#fff;background-color:#2196f3}html.theme-dark .tv-button--state.tv-button--primary.i-checked{background-color:#1976d2;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--primary:hover{color:#fff;background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--state.tv-button--primary:hover{background-color:#1e88e5;color:#fff}}.tv-button--state.tv-button--primary:active{color:#fff;background-color:#1e88e5}html.theme-dark .tv-button--state.tv-button--primary:active{background-color:#1e88e5;color:#fff}.tv-button--state.tv-button--secondary{color:#757575;background-color:transparent}.tv-button--state.tv-button--secondary.i-checked{color:#757575;background-color:#e9eff2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--secondary:hover{color:#757575;background-color:#dce6ea}}.tv-button--state.tv-button--secondary:active{color:#757575;background-color:#cfdce3}.tv-button--state.tv-button--warning{color:#f89e30;background-color:transparent}.tv-button--state.tv-button--warning.i-checked{color:#fff;background-color:#f89e30}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--warning:hover{color:#fff;background-color:#f79217}}.tv-button--state.tv-button--warning:active{color:#fff;background-color:#d47807}.tv-button--icon{display:inline-flex;align-items:center;justify-content:center;padding:0!important;min-width:auto;width:34px;height:34px}.tv-button--icon.tv-button--size_xsmall{width:19px;height:19px}.tv-button--icon.tv-button--size_small{width:27px;height:27px}.tv-button--icon.tv-button--size_large{width:46px;height:46px}.tv-button--loader .tv-button__text{transition:opacity .175s ease,transform .175s ease}.tv-button--loader.i-start-load .tv-button__text{opacity:0;transform:translateY(-5px)}.tv-button--loader.i-loading .tv-button__text{opacity:0;transform:translateY(5px)}.tv-button--loader.i-stop-load .tv-button__text{opacity:1;transform:translateY(0);transition-delay:.175s}.tv-button__loader{position:absolute;top:0;left:0;right:0;bottom:0;height:100%;margin:0 auto;text-align:center;font-size:0;opacity:0;transition:opacity .35s ease}.tv-button__loader:after{content:"";display:inline-block;height:100%;vertical-align:middle}.tv-button--loader.i-loading .tv-button__loader,.tv-button--loader.i-start-load .tv-button__loader{opacity:1}.tv-button--loader.i-stop-load .tv-button__loader{opacity:0}.tv-button__loader-item{margin-right:2px;margin-left:2px;display:inline-block;vertical-align:middle;width:10px;height:10px;opacity:0;border-radius:100%;background-color:#fff;transform:translateY(12px) scale(.6);transition:transform .35s cubic-bezier(.68,-.55,.265,1.55),opacity .35s ease}.tv-button__loader-item:nth-child(2){transition-delay:.11666667s}.tv-button__loader-item:nth-child(3){transition-delay:.23333333s}.tv-button--default .tv-button__loader-item{background-color:#757575}.tv-button--loader.i-loading .tv-button__loader-item,.tv-button--loader.i-start-load .tv-button__loader-item{opacity:1}.tv-button--loader.i-stop-load .tv-button__loader-item{opacity:0}.tv-button--loader.i-loading .tv-button__loader-item,.tv-button--loader.i-start-load .tv-button__loader-item,.tv-button--loader.i-stop-load .tv-button__loader-item{transform:translateY(0) scale(.6)}.tv-button--loader.i-loading .tv-button__loader-item,.tv-button--loader.i-stop-load .tv-button__loader-item{animation:tv-button-loader .96s infinite ease-in-out both}.tv-button--loader.i-loading .tv-button__loader-item:nth-child(2),.tv-button--loader.i-stop-load .tv-button__loader-item:nth-child(2){animation-delay:.151s}.tv-button--loader.i-loading .tv-button__loader-item:nth-child(3),.tv-button--loader.i-stop-load .tv-button__loader-item:nth-child(3){animation-delay:.32s}.tv-button--no-border-radius{border-radius:0}.tv-button--no-border{border:none}.tv-button--connect{border-radius:0}.tv-button--connect_left{border-top-left-radius:0;border-bottom-left-radius:0}.tv-button--connect_right{border-top-right-radius:0;border-bottom-right-radius:0}@keyframes tv-button-loader{0%,to{transform:scale(.6)}50%{transform:scale(.9)}}.tv-control-checkbox{cursor:pointer;-webkit-tap-highlight-color:transparent}.tv-control-checkbox--in-actions{max-width:50%}@media screen and (max-width:479px){.tv-control-checkbox--in-actions{max-width:none}}.tv-control-checkbox,.tv-control-checkbox__label{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tv-control-checkbox--nowrap,.tv-control-checkbox__label--nowrap{white-space:nowrap}.tv-control-checkbox__input{position:absolute;top:0;left:0;width:18px;height:18px;opacity:0}.tv-control-checkbox__box{display:block;width:18px;height:18px;line-height:1;border-radius:2px;box-sizing:border-box;pointer-events:none;transition:background-color .35s ease}.tv-control-checkbox__box:before{top:50%;left:50%;margin-top:-9px;margin-left:-9px;border-radius:2px;background-color:transparent;transform:scale(1);transition:transform .35s ease,background-color .35s ease,border-radius .35s ease}.tv-control-checkbox__box:after,.tv-control-checkbox__box:before{content:"";display:block;position:absolute;width:18px;height:18px}.tv-control-checkbox__box:after{top:0;left:0;border:2px solid #758696;border-radius:2px;box-sizing:border-box;transition:border-color .35s ease}.tv-control-checkbox__box svg{display:block;position:absolute;top:50%;left:50%;margin-top:-6px;margin-left:-6px;width:12px;height:12px;stroke:transparent;transform:scale(0);transition:stroke .35s ease 1ms,transform .35s ease 1ms}.tv-control-checkbox__label{white-space:normal;margin-right:10px}.tv-control-checkbox__label--two-lines{width:155px}.tv-control-checkbox__label--nowrap{white-space:nowrap}.tv-control-checkbox__label--lil-line-height{line-height:16px;min-width:45%;max-width:80%}.tv-control-checkbox__label+.tv-control-checkbox{margin-left:0}.tv-control-checkbox+.tv-control-checkbox__label{margin-right:0;margin-left:10px;max-width:calc(100% - 1ex - 28px)}.tv-control-checkbox:active .tv-control-checkbox__box,.tv-control-checkbox__input:focus+.tv-control-checkbox__box{will-change:background-color}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box{will-change:background-color}}.tv-control-checkbox:active .tv-control-checkbox__box:before,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:before{will-change:transform,border-radius}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box:before{will-change:transform,border-radius}}.tv-control-checkbox:active .tv-control-checkbox__box:after,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{will-change:border-color}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box:after{will-change:border-color;border-color:#627384}}.tv-control-checkbox:active .tv-control-checkbox__box:after,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{border-color:#2196f3}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{border-color:#1976d2}.tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#2196f3}html.theme-dark .tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#1976d2}.tv-control-checkbox__input:checked+.tv-control-checkbox__box,.tv-control-checkbox__input:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input:checked+.tv-control-checkbox__box:before{transition-timing-function:cubic-bezier(.215,.61,.355,1)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box:before{border-radius:50%;transform:scale(0)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#2196f3}html.theme-dark .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#1976d2}.tv-control-checkbox__input:checked+.tv-control-checkbox__box svg{stroke:#fff;transform:scale(1);transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-delay:.0875s;will-change:stroke,transform}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#1e88e5}}.tv-control-checkbox:active .tv-control-checkbox__input:checked+.tv-control-checkbox__box,.tv-control-checkbox__input:focus:checked+.tv-control-checkbox__box{background-color:#049ddc}.tv-control-checkbox:active .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input:focus:checked+.tv-control-checkbox__box:after{border-color:#049ddc}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#dadde0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#dadde0}}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#363c4e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-control-checkbox:hover .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#363c4e}}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:before,.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:before{background-color:#f1f3f6;transition:background-color .35s ease}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:before,html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:before{background-color:#2f3241}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box{background-color:#dadde0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box{background-color:#dadde0}}.tv-control-checkbox__ripple{display:block;position:absolute;top:0;right:0;width:100%;height:100%;margin:-10px;padding:10px;overflow:hidden;border-radius:50%;-webkit-mask-image:radial-gradient(circle,#fff 100%,#000 0);mask-image:radial-gradient(circle,#fff 100%,#000 0)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple{background-color:rgba(33,150,243,.25)}.tv-control-checkbox__input[disabled]+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple{background-color:transparent}.tv-control-checkbox.i-error .tv-control-checkbox__box:after{border-color:#ff4a68}.tv-control-checkbox.i-disabled{cursor:default}.sb-inner-shadow{box-shadow:0 0 5px rgba(0,0,0,.15);position:absolute;bottom:-10px;width:100%;height:10px;background:#fff;z-index:5;pointer-events:none;transform:translateY(0);transition:opacity .11666667s ease,transform .11666667s ease}html.theme-dark .sb-inner-shadow{background:#1e222d}.sb-inner-shadow.top{box-shadow:0 0 5px rgba(0,0,0,.15);top:-10px}.sb-inner-shadow.i-invisible{transform:translateY(5px)}.sb-inner-shadow.i-invisible.top{transform:translateY(-5px)}.sb-inner-shadow.i-invisible{opacity:0}.sb-scrollbar{position:absolute!important;opacity:0;width:7px;top:73px;right:1px;z-index:1;transition:opacity .3s}.sb-scrollbar.active,.sb-scrollbar.active-always{opacity:1}.sb-scrollbar__content-wrapper--scroll-inited{position:relative}.sb-scrollbar__content--scroll-inited{position:absolute}.sb-scrollbar-wrap{position:absolute;top:0;right:1px;width:6px;height:100%;z-index:1}.sb-scrollbar-wrap .sb-scrollbar{right:0}.sb-scrollbar-body{width:6px;border:0;background:#d8d8d8}html.theme-dark .sb-scrollbar-body{background:#4f5966}.gray .sb-scrollbar-body{background:#75757a;border-color:#75757a;border-radius:3px}.sb-scrollbar-bottom,.sb-scrollbar-top{display:none}.active-always.gray,.gray{opacity:.5}.i-hidden{display:none!important}.i-invisible{visibility:hidden!important}.i-clearfix:after{clear:both;display:table;content:""}.i-align_left{text-align:left!important}.i-align_right{text-align:right!important}.i-align_center{text-align:center!important}.i-float_left{float:left!important}.i-float_right{float:right!important}.i-float_none{float:none!important}@media screen and (min-width:1020px){.i-device-only{display:none!important}}@media screen and (max-width:1019px){.i-desktop-only{display:none!important}}@media screen and (min-width:479px){.i-phones-only{display:none!important}}@media screen and (max-width:479px){.i-except-phones-only{display:none!important}}.i-no-break{white-space:nowrap}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_{overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:scrollbar}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar{width:5px;height:5px}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar-thumb{border:1px solid;border-color:#f1f3f6;border-radius:3px;background-color:#9598a1}html.theme-dark .wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar-thumb{background-color:#363a45;border-color:#1e222d}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar-track{background-color:transparent;border-radius:3px}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar-corner{display:none} \ No newline at end of file diff --git a/charting_library/static/bundles/18.390326ae19e7f97c8419.rtl.css b/charting_library/static/bundles/18.390326ae19e7f97c8419.rtl.css new file mode 100644 index 00000000..60fdd9f4 --- /dev/null +++ b/charting_library/static/bundles/18.390326ae19e7f97c8419.rtl.css @@ -0,0 +1 @@ +.tv-button{position:relative;display:inline-block;vertical-align:middle;min-width:40px;margin:0;padding:1px 22px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:32px;text-align:center;white-space:nowrap;text-decoration:none;font-size:14px;color:#757575;fill:currentColor;border:none;border-radius:4px;outline:0;background-color:transparent;cursor:pointer;overflow:hidden;box-sizing:border-box;-webkit-tap-highlight-color:transparent;transition:background-color .35s ease,border-color .35s ease,color .35s ease}.tv-button.tv-button--danger_ghost,.tv-button.tv-button--default,.tv-button.tv-button--default_ghost,.tv-button.tv-button--primary_ghost,.tv-button.tv-button--secondary_ghost,.tv-button.tv-button--state,.tv-button.tv-button--success_ghost,.tv-button.tv-button--warning_ghost{padding:0 21px}.tv-button.i-active,.tv-button.i-hover,.tv-button:active{transition-duration:.06s}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button:hover{transition-duration:.06s}}.tv-button svg{vertical-align:middle}.tv-button--block{display:block;width:100%;text-align:center}.tv-button+.tv-button{margin-right:15px}.tv-button.tv-button--no-left-margin{margin-right:0}.tv-button__text{position:relative;display:inline-block}.tv-button__text--full-height{display:flex;align-items:center;justify-content:center;height:100%;width:100%;white-space:normal;word-wrap:break-word;line-height:1.2em;margin:11px 5px}.tv-button--default,.tv-button--default_ghost{color:#fff;border-color:#fff;background-color:#fff}html.theme-dark .tv-button--default,html.theme-dark .tv-button--default_ghost{background-color:#1e222d;border-color:#1e222d}.tv-button--default_ghost{color:#fff}html.theme-dark .tv-button--default_ghost{color:#1e222d}.tv-button--default_ghost.i-checked{color:#fff;border-color:#fff;background-color:#fff}html.theme-dark .tv-button--default_ghost.i-checked{background-color:#1e222d;border-color:#1e222d}.tv-button--default.i-hover,.tv-button--default_ghost.i-hover{color:#fff;border-color:#f2f2f2;background-color:#f2f2f2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--default:hover,.tv-button--default_ghost:hover{color:#fff;border-color:#f2f2f2;background-color:#f2f2f2}}html.theme-dark .tv-button--default.i-hover,html.theme-dark .tv-button--default_ghost.i-hover{background-color:#1c2030}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--default:hover,html.theme-dark .tv-button--default_ghost:hover{background-color:#1c2030}}html.theme-dark .tv-button--default.i-hover,html.theme-dark .tv-button--default_ghost.i-hover{border-color:#1c2030}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--default:hover,html.theme-dark .tv-button--default_ghost:hover{border-color:#1c2030}}.tv-button--default.i-active,.tv-button--default:active,.tv-button--default_ghost.i-active,.tv-button--default_ghost:active{color:#fff;border-color:#ececec;background-color:#ececec;transform:translateY(1px)}html.theme-dark .tv-button--default.i-active,html.theme-dark .tv-button--default:active,html.theme-dark .tv-button--default_ghost.i-active,html.theme-dark .tv-button--default_ghost:active{background-color:#1c2030;border-color:#1c2030}.tv-button--default,.tv-button--default.i-checked,.tv-button--default_ghost,.tv-button--default_ghost.i-checked{color:#757575;border:1px solid;border-color:#b5b7b9}html.theme-dark .tv-button--default,html.theme-dark .tv-button--default.i-checked,html.theme-dark .tv-button--default_ghost,html.theme-dark .tv-button--default_ghost.i-checked{border-color:#363c4e;color:#758696}.tv-button--default.i-hover,.tv-button--default_ghost.i-hover{color:#757575;border-color:#b5b7b9}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--default:hover,.tv-button--default_ghost:hover{color:#757575;border-color:#b5b7b9}}html.theme-dark .tv-button--default.i-hover,html.theme-dark .tv-button--default_ghost.i-hover{border-color:#363c4e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--default:hover,html.theme-dark .tv-button--default_ghost:hover{border-color:#363c4e}}html.theme-dark .tv-button--default.i-hover,html.theme-dark .tv-button--default_ghost.i-hover{color:#758696}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--default:hover,html.theme-dark .tv-button--default_ghost:hover{color:#758696}}.tv-button--default.i-active,.tv-button--default:active,.tv-button--default_ghost.i-active,.tv-button--default_ghost:active{color:#757575;border-color:#b5b7b9}html.theme-dark .tv-button--default.i-active,html.theme-dark .tv-button--default:active,html.theme-dark .tv-button--default_ghost.i-active,html.theme-dark .tv-button--default_ghost:active{border-color:#363c4e;color:#758696}.tv-button--primary,.tv-button--primary_ghost{color:#fff;border-color:#2196f3;background-color:#2196f3}html.theme-dark .tv-button--primary,html.theme-dark .tv-button--primary_ghost{background-color:#1976d2;border-color:#1976d2;color:#fff}.tv-button--primary_ghost{color:#2196f3}html.theme-dark .tv-button--primary_ghost{color:#1976d2}.tv-button--primary_ghost.i-checked{color:#fff;border-color:#2196f3;background-color:#2196f3}html.theme-dark .tv-button--primary_ghost.i-checked{background-color:#1976d2;border-color:#1976d2;color:#fff}.tv-button--primary.i-hover,.tv-button--primary_ghost.i-hover{color:#fff;border-color:#1e88e5;background-color:#1e88e5}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--primary:hover,.tv-button--primary_ghost:hover{color:#fff;border-color:#1e88e5;background-color:#1e88e5}}html.theme-dark .tv-button--primary.i-hover,html.theme-dark .tv-button--primary_ghost.i-hover{background-color:#1e88e5}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--primary:hover,html.theme-dark .tv-button--primary_ghost:hover{background-color:#1e88e5}}html.theme-dark .tv-button--primary.i-hover,html.theme-dark .tv-button--primary_ghost.i-hover{border-color:#1e88e5}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--primary:hover,html.theme-dark .tv-button--primary_ghost:hover{border-color:#1e88e5}}html.theme-dark .tv-button--primary.i-hover,html.theme-dark .tv-button--primary_ghost.i-hover{color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--primary:hover,html.theme-dark .tv-button--primary_ghost:hover{color:#fff}}.tv-button--primary.i-active,.tv-button--primary:active,.tv-button--primary_ghost.i-active,.tv-button--primary_ghost:active{color:#fff;border-color:#1e88e5;background-color:#1e88e5;transform:translateY(1px)}html.theme-dark .tv-button--primary.i-active,html.theme-dark .tv-button--primary:active,html.theme-dark .tv-button--primary_ghost.i-active,html.theme-dark .tv-button--primary_ghost:active{background-color:#1e88e5;border-color:#1e88e5;color:#fff}.tv-button--secondary,.tv-button--secondary_ghost{color:#757575;border-color:#e9eff2;background-color:#e9eff2}.tv-button--secondary_ghost{color:#757575}.tv-button--secondary_ghost.i-checked{color:#757575;border-color:#e9eff2;background-color:#e9eff2}.tv-button--secondary.i-hover,.tv-button--secondary_ghost.i-hover{color:#757575;border-color:#dce6ea;background-color:#dce6ea}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--secondary:hover,.tv-button--secondary_ghost:hover{color:#757575;border-color:#dce6ea;background-color:#dce6ea}}.tv-button--secondary.i-active,.tv-button--secondary:active,.tv-button--secondary_ghost.i-active,.tv-button--secondary_ghost:active{color:#757575;border-color:#cfdce3;background-color:#cfdce3;transform:translateY(1px)}.tv-button--success,.tv-button--success_ghost{color:#fff;border-color:#009688;background-color:#009688}html.theme-dark .tv-button--success,html.theme-dark .tv-button--success_ghost{background-color:#00796b;border-color:#00796b;color:#fff}.tv-button--success_ghost{color:#009688}html.theme-dark .tv-button--success_ghost{color:#00796b}.tv-button--success_ghost.i-checked{color:#fff;border-color:#009688;background-color:#009688}html.theme-dark .tv-button--success_ghost.i-checked{background-color:#00796b;border-color:#00796b;color:#fff}.tv-button--success.i-hover,.tv-button--success_ghost.i-hover{color:#fff;border-color:#00897b;background-color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--success:hover,.tv-button--success_ghost:hover{color:#fff;border-color:#00897b;background-color:#00897b}}html.theme-dark .tv-button--success.i-hover,html.theme-dark .tv-button--success_ghost.i-hover{background-color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--success:hover,html.theme-dark .tv-button--success_ghost:hover{background-color:#00897b}}html.theme-dark .tv-button--success.i-hover,html.theme-dark .tv-button--success_ghost.i-hover{border-color:#00897b}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--success:hover,html.theme-dark .tv-button--success_ghost:hover{border-color:#00897b}}html.theme-dark .tv-button--success.i-hover,html.theme-dark .tv-button--success_ghost.i-hover{color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--success:hover,html.theme-dark .tv-button--success_ghost:hover{color:#fff}}.tv-button--success.i-active,.tv-button--success:active,.tv-button--success_ghost.i-active,.tv-button--success_ghost:active{color:#fff;border-color:#00796b;background-color:#00796b;transform:translateY(1px)}html.theme-dark .tv-button--success.i-active,html.theme-dark .tv-button--success:active,html.theme-dark .tv-button--success_ghost.i-active,html.theme-dark .tv-button--success_ghost:active{background-color:#009688;border-color:#009688;color:#fff}.tv-button--danger,.tv-button--danger_ghost{color:#fff;border-color:#f44336;background-color:#f44336}html.theme-dark .tv-button--danger,html.theme-dark .tv-button--danger_ghost{background-color:#d32f2f;border-color:#d32f2f;color:#fff}.tv-button--danger_ghost{color:#f44336}html.theme-dark .tv-button--danger_ghost{color:#d32f2f}.tv-button--danger_ghost.i-checked{color:#fff;border-color:#f44336;background-color:#f44336}html.theme-dark .tv-button--danger_ghost.i-checked{background-color:#d32f2f;border-color:#d32f2f;color:#fff}.tv-button--danger.i-hover,.tv-button--danger_ghost.i-hover{color:#fff;border-color:#e53935;background-color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--danger:hover,.tv-button--danger_ghost:hover{color:#fff;border-color:#e53935;background-color:#e53935}}html.theme-dark .tv-button--danger.i-hover,html.theme-dark .tv-button--danger_ghost.i-hover{background-color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--danger:hover,html.theme-dark .tv-button--danger_ghost:hover{background-color:#e53935}}html.theme-dark .tv-button--danger.i-hover,html.theme-dark .tv-button--danger_ghost.i-hover{border-color:#e53935}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--danger:hover,html.theme-dark .tv-button--danger_ghost:hover{border-color:#e53935}}html.theme-dark .tv-button--danger.i-hover,html.theme-dark .tv-button--danger_ghost.i-hover{color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--danger:hover,html.theme-dark .tv-button--danger_ghost:hover{color:#fff}}.tv-button--danger.i-active,.tv-button--danger:active,.tv-button--danger_ghost.i-active,.tv-button--danger_ghost:active{color:#fff;border-color:#d32f2f;background-color:#d32f2f;transform:translateY(1px)}html.theme-dark .tv-button--danger.i-active,html.theme-dark .tv-button--danger:active,html.theme-dark .tv-button--danger_ghost.i-active,html.theme-dark .tv-button--danger_ghost:active{background-color:#f44336;border-color:#f44336;color:#fff}.tv-button--warning,.tv-button--warning_ghost{color:#fff;border-color:#f89e30;background-color:#f89e30}.tv-button--warning_ghost{color:#f89e30}.tv-button--warning_ghost.i-checked{color:#fff;border-color:#f89e30;background-color:#f89e30}.tv-button--warning.i-hover,.tv-button--warning_ghost.i-hover{color:#fff;border-color:#f79217;background-color:#f79217}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--warning:hover,.tv-button--warning_ghost:hover{color:#fff;border-color:#f79217;background-color:#f79217}}.tv-button--warning.i-active,.tv-button--warning:active,.tv-button--warning_ghost.i-active,.tv-button--warning_ghost:active{color:#fff;border-color:#d47807;background-color:#d47807;transform:translateY(1px)}.tv-button--link{color:#2196f3;transition:color .35s ease}html.theme-dark .tv-button--link{color:#1976d2}.tv-button--link:visited{color:#2196f3;fill:#2196f3}html.theme-dark .tv-button--link:visited{fill:#1976d2;color:#1976d2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--link:hover{color:#1e88e5;fill:#1e88e5;transition-duration:.06s}}.tv-button--link:focus{outline:auto}.tv-button--link:focus:not(:-moz-focusring){outline:none}.tv-button--link:-moz-focusring{outline:auto}.tv-button--link:active{color:#1e88e5;fill:#1e88e5;transition-duration:.06s}.tv-button--danger_ghost,.tv-button--default_ghost,.tv-button--primary_ghost,.tv-button--secondary_ghost,.tv-button--success_ghost,.tv-button--warning_ghost{border-width:1px;border-style:solid;background-color:transparent}html.theme-dark .tv-button--danger_ghost,html.theme-dark .tv-button--default_ghost,html.theme-dark .tv-button--primary_ghost,html.theme-dark .tv-button--secondary_ghost,html.theme-dark .tv-button--success_ghost,html.theme-dark .tv-button--warning_ghost{background-color:transparent}.tv-button--danger_ghost.tv-button--size_large,.tv-button--default_ghost.tv-button--size_large,.tv-button--primary_ghost.tv-button--size_large,.tv-button--secondary_ghost.tv-button--size_large,.tv-button--success_ghost.tv-button--size_large,.tv-button--warning_ghost.tv-button--size_large{border-width:2px}.tv-button--danger_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--default_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--primary_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--secondary_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--success_ghost.tv-button--size_large.tv-button--thin-border,.tv-button--warning_ghost.tv-button--size_large.tv-button--thin-border{border-width:1px}.tv-button .tv-ripple{background-color:hsla(0,0%,100%,.25)}.tv-button--default .tv-ripple,.tv-button--default_ghost .tv-ripple{background-color:rgba(117,134,150,.25)}.tv-button.i-disabled .tv-ripple{background-color:transparent}.tv-button.i-disabled,.tv-button.i-disabled:active,.tv-button:disabled,.tv-button:disabled:active{cursor:default;color:#b2b5be;border-color:#e0e3eb;background-color:#e0e3eb}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button.i-disabled:hover,.tv-button:disabled:hover{cursor:default;color:#b2b5be;border-color:#e0e3eb;background-color:#e0e3eb}}html.theme-dark .tv-button.i-disabled,html.theme-dark .tv-button.i-disabled:active,html.theme-dark .tv-button:disabled,html.theme-dark .tv-button:disabled:active{background-color:#363a45}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button.i-disabled:hover,html.theme-dark .tv-button:disabled:hover{background-color:#363a45}}html.theme-dark .tv-button.i-disabled,html.theme-dark .tv-button.i-disabled:active,html.theme-dark .tv-button:disabled,html.theme-dark .tv-button:disabled:active{border-color:#363a45}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button.i-disabled:hover,html.theme-dark .tv-button:disabled:hover{border-color:#363a45}}html.theme-dark .tv-button.i-disabled,html.theme-dark .tv-button.i-disabled:active,html.theme-dark .tv-button:disabled,html.theme-dark .tv-button:disabled:active{color:#50535e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button.i-disabled:hover,html.theme-dark .tv-button:disabled:hover{color:#50535e}}.tv-button.i-disabled:active,.tv-button:disabled:active{transform:translateY(0)}.tv-button--size_xsmall{padding:2px 7px;line-height:15px;border-radius:1px;font-size:11px;font-weight:400}.tv-button--size_xsmall.tv-button--danger_ghost,.tv-button--size_xsmall.tv-button--default,.tv-button--size_xsmall.tv-button--default_ghost,.tv-button--size_xsmall.tv-button--primary_ghost,.tv-button--size_xsmall.tv-button--secondary_ghost,.tv-button--size_xsmall.tv-button--state,.tv-button--size_xsmall.tv-button--success_ghost,.tv-button--size_xsmall.tv-button--warning_ghost{padding:1px 6px}.tv-button--size_xsmall+.tv-button--size_xsmall{margin-right:10px}.tv-button--size_small{padding:1px 12px;line-height:25px;font-size:13px}.tv-button--size_small.tv-button--danger_ghost,.tv-button--size_small.tv-button--default,.tv-button--size_small.tv-button--default_ghost,.tv-button--size_small.tv-button--primary_ghost,.tv-button--size_small.tv-button--secondary_ghost,.tv-button--size_small.tv-button--state,.tv-button--size_small.tv-button--success_ghost,.tv-button--size_small.tv-button--warning_ghost{padding:0 11px}.tv-button--size_small+.tv-button--size_small{margin-right:10px}.tv-button--size_large{padding:1px 30px;font-size:17px;letter-spacing:1px;line-height:44px}.tv-button--size_large.tv-button--danger_ghost,.tv-button--size_large.tv-button--default,.tv-button--size_large.tv-button--default_ghost,.tv-button--size_large.tv-button--primary_ghost,.tv-button--size_large.tv-button--secondary_ghost,.tv-button--size_large.tv-button--state,.tv-button--size_large.tv-button--success_ghost,.tv-button--size_large.tv-button--warning_ghost{padding:0 29px}.tv-button--max-width{max-width:300px}.tv-button--no-padding{padding:1px}.tv-button--no-padding.tv-button--danger_ghost,.tv-button--no-padding.tv-button--default,.tv-button--no-padding.tv-button--default_ghost,.tv-button--no-padding.tv-button--primary_ghost,.tv-button--no-padding.tv-button--secondary_ghost,.tv-button--no-padding.tv-button--state,.tv-button--no-padding.tv-button--success_ghost,.tv-button--no-padding.tv-button--warning_ghost{padding:0}.tv-button--content-center{display:flex;align-items:center;justify-content:center;height:100%;margin:0 auto;max-width:220px}.tv-button--state{text-align:center;border-width:1px;border-style:solid}.tv-button--state,html.theme-dark .tv-button--state{background:transparent}.tv-button--state:after{content:"";display:inline-block}.tv-button--state__checked,.tv-button--state__uncheck-hint,.tv-button--state__unchecked{display:block;height:0;transition:opacity .2625s ease,transform .2625s ease}.tv-button--state__ellipsis-text{display:block;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__checked,.tv-button--state.i-checked:hover .tv-button--state__uncheck-hint,.tv-button--state.i-checked:hover .tv-button--state__unchecked{will-change:opacity,transform}}.tv-button--state.i-checked .tv-button--state__unchecked,.tv-button--state__checked,.tv-button--state__uncheck-hint{opacity:0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__checked{opacity:0}}.tv-button--state.i-checked .tv-button--state__checked,.tv-button--state__unchecked{opacity:1}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__uncheck-hint{opacity:1}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__checked{transform:translateY(-5px)}}.tv-button--state.i-checked .tv-button--state__unchecked,.tv-button--state__checked,.tv-button--state__uncheck-hint{transform:translateY(5px)}.tv-button--state.i-checked .tv-button--state__checked{transform:translateY(0)}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.i-checked:hover .tv-button--state__uncheck-hint{transform:translateY(0)}}.tv-button--state.tv-button--success{color:#009688;background-color:transparent}html.theme-dark .tv-button--state.tv-button--success{background-color:transparent;color:#00796b}.tv-button--state.tv-button--success.i-checked{color:#fff;background-color:#009688}html.theme-dark .tv-button--state.tv-button--success.i-checked{background-color:#00796b;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--success:hover{color:#fff;background-color:#00897b}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--state.tv-button--success:hover{background-color:#00897b;color:#fff}}.tv-button--state.tv-button--success:active{color:#fff;background-color:#00796b}html.theme-dark .tv-button--state.tv-button--success:active{background-color:#009688;color:#fff}.tv-button--state.tv-button--danger{color:#f44336;background-color:transparent}html.theme-dark .tv-button--state.tv-button--danger{background-color:transparent;color:#d32f2f}.tv-button--state.tv-button--danger.i-checked{color:#fff;background-color:#ff4a68}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--danger:hover{color:#fff;background-color:#f24965}}.tv-button--state.tv-button--danger:active{color:#fff;background-color:#ff173e}.tv-button--state.tv-button--primary{color:#2196f3;background-color:transparent}html.theme-dark .tv-button--state.tv-button--primary{background-color:transparent;color:#1976d2}.tv-button--state.tv-button--primary.i-checked{color:#fff;background-color:#2196f3}html.theme-dark .tv-button--state.tv-button--primary.i-checked{background-color:#1976d2;color:#fff}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--primary:hover{color:#fff;background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-button--state.tv-button--primary:hover{background-color:#1e88e5;color:#fff}}.tv-button--state.tv-button--primary:active{color:#fff;background-color:#1e88e5}html.theme-dark .tv-button--state.tv-button--primary:active{background-color:#1e88e5;color:#fff}.tv-button--state.tv-button--secondary{color:#757575;background-color:transparent}.tv-button--state.tv-button--secondary.i-checked{color:#757575;background-color:#e9eff2}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--secondary:hover{color:#757575;background-color:#dce6ea}}.tv-button--state.tv-button--secondary:active{color:#757575;background-color:#cfdce3}.tv-button--state.tv-button--warning{color:#f89e30;background-color:transparent}.tv-button--state.tv-button--warning.i-checked{color:#fff;background-color:#f89e30}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-button--state.tv-button--warning:hover{color:#fff;background-color:#f79217}}.tv-button--state.tv-button--warning:active{color:#fff;background-color:#d47807}.tv-button--icon{display:inline-flex;align-items:center;justify-content:center;padding:0!important;min-width:auto;width:34px;height:34px}.tv-button--icon.tv-button--size_xsmall{width:19px;height:19px}.tv-button--icon.tv-button--size_small{width:27px;height:27px}.tv-button--icon.tv-button--size_large{width:46px;height:46px}.tv-button--loader .tv-button__text{transition:opacity .175s ease,transform .175s ease}.tv-button--loader.i-start-load .tv-button__text{opacity:0;transform:translateY(-5px)}.tv-button--loader.i-loading .tv-button__text{opacity:0;transform:translateY(5px)}.tv-button--loader.i-stop-load .tv-button__text{opacity:1;transform:translateY(0);transition-delay:.175s}.tv-button__loader{position:absolute;top:0;right:0;left:0;bottom:0;height:100%;margin:0 auto;text-align:center;font-size:0;opacity:0;transition:opacity .35s ease}.tv-button__loader:after{content:"";display:inline-block;height:100%;vertical-align:middle}.tv-button--loader.i-loading .tv-button__loader,.tv-button--loader.i-start-load .tv-button__loader{opacity:1}.tv-button--loader.i-stop-load .tv-button__loader{opacity:0}.tv-button__loader-item{margin-left:2px;margin-right:2px;display:inline-block;vertical-align:middle;width:10px;height:10px;opacity:0;border-radius:100%;background-color:#fff;transform:translateY(12px) scale(.6);transition:transform .35s cubic-bezier(.68,-.55,.265,1.55),opacity .35s ease}.tv-button__loader-item:nth-child(2){transition-delay:.11666667s}.tv-button__loader-item:nth-child(3){transition-delay:.23333333s}.tv-button--default .tv-button__loader-item{background-color:#757575}.tv-button--loader.i-loading .tv-button__loader-item,.tv-button--loader.i-start-load .tv-button__loader-item{opacity:1}.tv-button--loader.i-stop-load .tv-button__loader-item{opacity:0}.tv-button--loader.i-loading .tv-button__loader-item,.tv-button--loader.i-start-load .tv-button__loader-item,.tv-button--loader.i-stop-load .tv-button__loader-item{transform:translateY(0) scale(.6)}.tv-button--loader.i-loading .tv-button__loader-item,.tv-button--loader.i-stop-load .tv-button__loader-item{animation:tv-button-loader .96s infinite ease-in-out both}.tv-button--loader.i-loading .tv-button__loader-item:nth-child(2),.tv-button--loader.i-stop-load .tv-button__loader-item:nth-child(2){animation-delay:.151s}.tv-button--loader.i-loading .tv-button__loader-item:nth-child(3),.tv-button--loader.i-stop-load .tv-button__loader-item:nth-child(3){animation-delay:.32s}.tv-button--no-border-radius{border-radius:0}.tv-button--no-border{border:none}.tv-button--connect{border-radius:0}.tv-button--connect_left{border-top-right-radius:0;border-bottom-right-radius:0}.tv-button--connect_right{border-top-left-radius:0;border-bottom-left-radius:0}@keyframes tv-button-loader{0%,to{transform:scale(.6)}50%{transform:scale(.9)}}.tv-control-checkbox{cursor:pointer;-webkit-tap-highlight-color:transparent}.tv-control-checkbox--in-actions{max-width:50%}@media screen and (max-width:479px){.tv-control-checkbox--in-actions{max-width:none}}.tv-control-checkbox,.tv-control-checkbox__label{position:relative;display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tv-control-checkbox--nowrap,.tv-control-checkbox__label--nowrap{white-space:nowrap}.tv-control-checkbox__input{position:absolute;top:0;right:0;width:18px;height:18px;opacity:0}.tv-control-checkbox__box{display:block;width:18px;height:18px;line-height:1;border-radius:2px;box-sizing:border-box;pointer-events:none;transition:background-color .35s ease}.tv-control-checkbox__box:before{top:50%;right:50%;margin-top:-9px;margin-right:-9px;border-radius:2px;background-color:transparent;transform:scale(1);transition:transform .35s ease,background-color .35s ease,border-radius .35s ease}.tv-control-checkbox__box:after,.tv-control-checkbox__box:before{content:"";display:block;position:absolute;width:18px;height:18px}.tv-control-checkbox__box:after{top:0;right:0;border:2px solid #758696;border-radius:2px;box-sizing:border-box;transition:border-color .35s ease}.tv-control-checkbox__box svg{display:block;position:absolute;top:50%;right:50%;margin-top:-6px;margin-right:-6px;width:12px;height:12px;stroke:transparent;transform:scale(0);transition:stroke .35s ease 1ms,transform .35s ease 1ms}.tv-control-checkbox__label{white-space:normal;margin-left:10px}.tv-control-checkbox__label--two-lines{width:155px}.tv-control-checkbox__label--nowrap{white-space:nowrap}.tv-control-checkbox__label--lil-line-height{line-height:16px;min-width:45%;max-width:80%}.tv-control-checkbox__label+.tv-control-checkbox{margin-right:0}.tv-control-checkbox+.tv-control-checkbox__label{margin-left:0;margin-right:10px;max-width:calc(100% - 1ex - 28px)}.tv-control-checkbox:active .tv-control-checkbox__box,.tv-control-checkbox__input:focus+.tv-control-checkbox__box{will-change:background-color}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box{will-change:background-color}}.tv-control-checkbox:active .tv-control-checkbox__box:before,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:before{will-change:transform,border-radius}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box:before{will-change:transform,border-radius}}.tv-control-checkbox:active .tv-control-checkbox__box:after,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{will-change:border-color}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__box:after{will-change:border-color;border-color:#627384}}.tv-control-checkbox:active .tv-control-checkbox__box:after,.tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{border-color:#2196f3}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input:focus+.tv-control-checkbox__box:after{border-color:#1976d2}.tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#2196f3}html.theme-dark .tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#1976d2}.tv-control-checkbox__input:checked+.tv-control-checkbox__box,.tv-control-checkbox__input:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input:checked+.tv-control-checkbox__box:before{transition-timing-function:cubic-bezier(.215,.61,.355,1)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box:before{border-radius:50%;transform:scale(0)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#2196f3}html.theme-dark .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#1976d2}.tv-control-checkbox__input:checked+.tv-control-checkbox__box svg{stroke:#fff;transform:scale(1);transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-delay:.0875s;will-change:stroke,transform}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input:checked+.tv-control-checkbox__box{background-color:#1e88e5}}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after{border-color:#1e88e5}}.tv-control-checkbox:active .tv-control-checkbox__input:checked+.tv-control-checkbox__box,.tv-control-checkbox__input:focus:checked+.tv-control-checkbox__box{background-color:#049ddc}.tv-control-checkbox:active .tv-control-checkbox__input:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input:focus:checked+.tv-control-checkbox__box:after{border-color:#049ddc}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after,.tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#dadde0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#dadde0}}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#363c4e}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){html.theme-dark .tv-control-checkbox:hover .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:after,html.theme-dark .tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:after{border-color:#363c4e}}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:before,.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:before{background-color:#f1f3f6;transition:background-color .35s ease}html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]+.tv-control-checkbox__box:before,html.theme-dark .tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box:before{background-color:#2f3241}.tv-control-checkbox:active .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box{background-color:#dadde0}@media (any-hover:hover),(min--moz-device-pixel-ratio:0),(min-width:0\0){.tv-control-checkbox:hover .tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box{background-color:#dadde0}}.tv-control-checkbox__ripple{display:block;position:absolute;top:0;left:0;width:100%;height:100%;margin:-10px;padding:10px;overflow:hidden;border-radius:50%;-webkit-mask-image:radial-gradient(circle,#fff 100%,#000 0);mask-image:radial-gradient(circle,#fff 100%,#000 0)}.tv-control-checkbox__input:checked+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple{background-color:rgba(33,150,243,.25)}.tv-control-checkbox__input[disabled]+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple,.tv-control-checkbox__input[disabled]:checked+.tv-control-checkbox__box+.tv-control-checkbox__ripple .tv-ripple{background-color:transparent}.tv-control-checkbox.i-error .tv-control-checkbox__box:after{border-color:#ff4a68}.tv-control-checkbox.i-disabled{cursor:default}.sb-inner-shadow{box-shadow:0 0 5px rgba(0,0,0,.15);position:absolute;bottom:-10px;width:100%;height:10px;background:#fff;z-index:5;pointer-events:none;transform:translateY(0);transition:opacity .11666667s ease,transform .11666667s ease}html.theme-dark .sb-inner-shadow{background:#1e222d}.sb-inner-shadow.top{box-shadow:0 0 5px rgba(0,0,0,.15);top:-10px}.sb-inner-shadow.i-invisible{transform:translateY(5px)}.sb-inner-shadow.i-invisible.top{transform:translateY(-5px)}.sb-inner-shadow.i-invisible{opacity:0}.sb-scrollbar{position:absolute!important;opacity:0;width:7px;top:73px;left:1px;z-index:1;transition:opacity .3s}.sb-scrollbar.active,.sb-scrollbar.active-always{opacity:1}.sb-scrollbar__content-wrapper--scroll-inited{position:relative}.sb-scrollbar__content--scroll-inited{position:absolute}.sb-scrollbar-wrap{position:absolute;top:0;left:1px;width:6px;height:100%;z-index:1}.sb-scrollbar-wrap .sb-scrollbar{left:0}.sb-scrollbar-body{width:6px;border:0;background:#d8d8d8}html.theme-dark .sb-scrollbar-body{background:#4f5966}.gray .sb-scrollbar-body{background:#75757a;border-color:#75757a;border-radius:3px}.sb-scrollbar-bottom,.sb-scrollbar-top{display:none}.active-always.gray,.gray{opacity:.5}.i-hidden{display:none!important}.i-invisible{visibility:hidden!important}.i-clearfix:after{clear:both;display:table;content:""}.i-align_left{text-align:right!important}.i-align_right{text-align:left!important}.i-align_center{text-align:center!important}.i-float_left{float:right!important}.i-float_right{float:left!important}.i-float_none{float:none!important}@media screen and (min-width:1020px){.i-device-only{display:none!important}}@media screen and (max-width:1019px){.i-desktop-only{display:none!important}}@media screen and (min-width:479px){.i-phones-only{display:none!important}}@media screen and (max-width:479px){.i-except-phones-only{display:none!important}}.i-no-break{white-space:nowrap}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_{overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:scrollbar}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar{width:5px;height:5px}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar-thumb{border:1px solid;border-color:#f1f3f6;border-radius:3px;background-color:#9598a1}html.theme-dark .wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar-thumb{background-color:#363a45;border-color:#1e222d}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar-track{background-color:transparent;border-radius:3px}.wrapper-2KWBfDVB.touch-E6yQTRo_.wrapper-2KWBfDVB.touch-E6yQTRo_::-webkit-scrollbar-corner{display:none} \ No newline at end of file diff --git a/charting_library/static/bundles/19.aba848e28ec755548668.css b/charting_library/static/bundles/19.aba848e28ec755548668.css deleted file mode 100644 index a5b87a7d..00000000 --- a/charting_library/static/bundles/19.aba848e28ec755548668.css +++ /dev/null @@ -1 +0,0 @@ -.loader-3Pj8ExOX-{position:absolute;top:0;left:0;right:0;bottom:0;height:100%;margin:0 auto;text-align:center;font-size:0;opacity:1;transition:opacity .35s ease}.loader-3Pj8ExOX-:after{content:" ";display:inline-block;height:100%;vertical-align:middle}.loader-3Pj8ExOX- .item-2n55_7om-{margin-right:2px;margin-left:2px;display:inline-block;vertical-align:middle;width:10px;height:10px;opacity:1;border-radius:100%;transform:translateY(0) scale(.6);transition:transform .35s cubic-bezier(.68,-.55,.265,1.55);animation:tv-button-loader-SKpJjjYw- .96s infinite ease-in-out both}.loader-3Pj8ExOX- .item-2n55_7om-:nth-child(2){transition-delay:.11666667s;animation-delay:.151s}.loader-3Pj8ExOX- .item-2n55_7om-:nth-child(3){transition-delay:.23333333s;animation-delay:.32s}.loader-3Pj8ExOX- .item-2n55_7om-.black-eFIQWyf4-{background-color:#757575}.loader-3Pj8ExOX- .item-2n55_7om-.white-2Ma0ajvT-{background-color:#fff}.loader-3Pj8ExOX- .item-2n55_7om-.gray-24fvVR0S-{background-color:#8797a5}.loader-3Pj8ExOX-.loader-initial{opacity:.1}.loader-3Pj8ExOX-.loader-initial .item-2n55_7om-{animation:none;transform:translateY(12px) scale(.6)}.loader-3Pj8ExOX-.loader-appear{opacity:1;transition:opacity .7s ease}.loader-3Pj8ExOX-.loader-appear .item-2n55_7om-{animation:none;transform:translateY(0) scale(.6)}@keyframes tv-button-loader-SKpJjjYw-{0%,to{transform:scale(.6)}50%{transform:scale(.9)}} \ No newline at end of file diff --git a/charting_library/static/bundles/19.aba848e28ec755548668.rtl.css b/charting_library/static/bundles/19.aba848e28ec755548668.rtl.css deleted file mode 100644 index 069a2e61..00000000 --- a/charting_library/static/bundles/19.aba848e28ec755548668.rtl.css +++ /dev/null @@ -1 +0,0 @@ -.loader-3Pj8ExOX-{position:absolute;top:0;right:0;left:0;bottom:0;height:100%;margin:0 auto;text-align:center;font-size:0;opacity:1;transition:opacity .35s ease}.loader-3Pj8ExOX-:after{content:" ";display:inline-block;height:100%;vertical-align:middle}.loader-3Pj8ExOX- .item-2n55_7om-{margin-left:2px;margin-right:2px;display:inline-block;vertical-align:middle;width:10px;height:10px;opacity:1;border-radius:100%;transform:translateY(0) scale(.6);transition:transform .35s cubic-bezier(.68,-.55,.265,1.55);animation:tv-button-loader-SKpJjjYw- .96s infinite ease-in-out both}.loader-3Pj8ExOX- .item-2n55_7om-:nth-child(2){transition-delay:.11666667s;animation-delay:.151s}.loader-3Pj8ExOX- .item-2n55_7om-:nth-child(3){transition-delay:.23333333s;animation-delay:.32s}.loader-3Pj8ExOX- .item-2n55_7om-.black-eFIQWyf4-{background-color:#757575}.loader-3Pj8ExOX- .item-2n55_7om-.white-2Ma0ajvT-{background-color:#fff}.loader-3Pj8ExOX- .item-2n55_7om-.gray-24fvVR0S-{background-color:#8797a5}.loader-3Pj8ExOX-.loader-initial{opacity:.1}.loader-3Pj8ExOX-.loader-initial .item-2n55_7om-{animation:none;transform:translateY(12px) scale(.6)}.loader-3Pj8ExOX-.loader-appear{opacity:1;transition:opacity .7s ease}.loader-3Pj8ExOX-.loader-appear .item-2n55_7om-{animation:none;transform:translateY(0) scale(.6)}@keyframes tv-button-loader-SKpJjjYw-{0%,to{transform:scale(.6)}50%{transform:scale(.9)}} \ No newline at end of file diff --git a/charting_library/static/bundles/19.c5542d290eefbb001433.js b/charting_library/static/bundles/19.c5542d290eefbb001433.js deleted file mode 100644 index eded22f4..00000000 --- a/charting_library/static/bundles/19.c5542d290eefbb001433.js +++ /dev/null @@ -1 +0,0 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[19],[]]); \ No newline at end of file diff --git a/charting_library/static/bundles/19.d7a8fc9a0bf1ed016b85.js b/charting_library/static/bundles/19.d7a8fc9a0bf1ed016b85.js new file mode 100644 index 00000000..2691cc22 --- /dev/null +++ b/charting_library/static/bundles/19.d7a8fc9a0bf1ed016b85.js @@ -0,0 +1,4 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[19],{"56W2":function(e,t,s){(function(t){var s;s=void 0!==t?t:this,e.exports=function(e){if(e.CSS&&e.CSS.escape)return e.CSS.escape;var t=function(e){var t,s,n,i,o,l;if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");for(t=String(e),s=t.length,n=-1,o="",l=t.charCodeAt(0);++n=1&&i<=31||127==i||0==n&&i>=48&&i<=57||1==n&&i>=48&&i<=57&&45==l?"\\"+i.toString(16)+" ":0==n&&1==s&&45==i||!(i>=128||45==i||95==i||i>=48&&i<=57||i>=65&&i<=90||i>=97&&i<=122)?"\\"+t.charAt(n):t.charAt(n):o+="�";return o};return e.CSS||(e.CSS={}),e.CSS.escape=t,t}(s)}).call(this,s("yLpj"))},Gs9W:function(e,t,s){},jAh7:function(e,t,s){"use strict";function n(e){var t,s,n;return void 0===e&&(e=document),null!==(t=e.getElementById("overlap-manager-root"))?Object(i.ensureDefined)(a.get(t)):(s=new l(e),n=function(e){var t=e.createElement("div");return t.style.position="absolute",t.style.zIndex=150..toString(),t.style.top="0px",t.style.left="0px",t.id="overlap-manager-root",t}(e),a.set(n,s),s.setContainer(n),e.body.appendChild(n),s)}var i,o,l,a;s.r(t),s.d(t,"OverlapManager",function(){return l}),s.d(t,"getRootOverlapManager",function(){return n}),i=s("Eyy1"),o=function(){function e(){this._storage=[]}return e.prototype.add=function(e){this._storage.push(e)},e.prototype.remove=function(e){this._storage=this._storage.filter(function(t){return e!==t})},e.prototype.has=function(e){return this._storage.includes(e)},e.prototype.getItems=function(){return this._storage},e}(),l=function(){function e(e){void 0===e&&(e=document),this._storage=new o,this._windows=new Map,this._index=0,this._document=e,this._container=e.createDocumentFragment()}return e.prototype.setContainer=function(e){var t=this._container,s=null===e?this._document.createDocumentFragment():e;!function(e,t){Array.from(e.childNodes).forEach(function(e){e.nodeType===Node.ELEMENT_NODE&&t.appendChild(e)})}(t,s),this._container=s},e.prototype.registerWindow=function(e){this._storage.has(e)||this._storage.add(e)},e.prototype.ensureWindow=function(e,t){var s,n;return void 0===t&&(t={position:"fixed"}),void 0!==(s=this._windows.get(e))?s:(this.registerWindow(e),(n=this._document.createElement("div")).style.position=t.position,n.style.zIndex=this._index.toString(),n.dataset.id=e,this._container.appendChild(n),this._windows.set(e,n),++this._index,n)},e.prototype.unregisterWindow=function(e){this._storage.remove(e);var t=this._windows.get(e);void 0!==t&&(null!==t.parentElement&&t.parentElement.removeChild(t),this._windows.delete(e))},e.prototype.getZindex=function(e){var t=this.ensureWindow(e);return parseInt(t.style.zIndex||"0")},e.prototype.moveToTop=function(e){this.getZindex(e)!==this._index&&(this.ensureWindow(e).style.zIndex=(++this._index).toString())},e.prototype.removeWindow=function(e){this.unregisterWindow(e)},e}(),a=new WeakMap},jgM0:function(e,t,s){"use strict";var n=s("56W2");s("Gs9W"),function(e,t){function s(){this._state=[],this._defaults={classHolder:"sbHolder", +classHolderDisabled:"sbHolderDisabled",classHolderOpen:"sbHolderOpen",classSelector:"sbSelector",classOptions:"sbOptions",classGroup:"sbGroup",classSub:"sbSub",classDisabled:"sbDisabled",classToggleOpen:"sbToggleOpen",classToggle:"sbToggle",classSeparator:"sbSeparator",useCustomPrependWithSelector:"",customPrependSelectorClass:"",speed:200,slidesUp:!1,effect:"slide",onChange:null,beforeOpen:null,onOpen:null,onClose:null}}function i(t,s,n,i){function o(){s.removeClass(t.settings.customPrependSelectorClass),t._lastSelectorPrepend&&(t._lastSelectorPrepend.remove(),delete t._lastSelectorPrepend),n.data("custom-option-prepend")&&(t.settings.customPrependSelectorClass&&s.addClass(t.settings.customPrependSelectorClass),t._lastSelectorPrepend=e(n.data("custom-option-prepend")).clone(),s[t.settings.useCustomPrependWithSelector](t._lastSelectorPrepend))}t.settings.useCustomPrependWithSelector&&(i?t._onAttachCallback=o:o())}e.extend(s.prototype,{_refreshSelectbox:function(e,t){if(!e)return!1;var s=this._getInst(e);return null!=s&&(this._fillList(e,s,t),!0)},_isOpenSelectbox:function(e){return!!e&&this._getInst(e).isOpen},_isDisabledSelectbox:function(e){return!!e&&this._getInst(e).isDisabled},_attachSelectbox:function(t,s){function i(){var t,s=this.attr("id").split("_")[1];for(t in a._state)t!==s&&a._state.hasOwnProperty(t)&&e(":input[sb='"+t+"']")[0]&&a._closeSelectbox(e(":input[sb='"+t+"']")[0])}function o(s){l.children().each(function(n){var i;if(e(this).is(":selected")){if(38==s&&n>0)return i=e(l.children()[n-1]),a._changeSelectbox(t,i.val(),i.text()),!1;if(40==s&&n",{id:"sbHolder_"+r.uid,class:r.settings.classHolder}),(h=l.data("selectbox-css"))&&c.css(h),d=e("",{id:"sbSelector_"+r.uid,href:"#",class:r.settings.classSelector,click:function(s){s.preventDefault(),s.stopPropagation(),i.apply(e(this),[]);var n=e(this).attr("id").split("_")[1];a._state[n]?a._closeSelectbox(t):(a._openSelectbox(t),p.focus())},keyup:function(e){o(e.keyCode)}}),p=e("",{id:"sbToggle_"+r.uid,href:"#",class:r.settings.classToggle,click:function(s){s.preventDefault(),s.stopPropagation(),i.apply(e(this),[]);var n=e(this).attr("id").split("_")[1];a._state[n]?a._closeSelectbox(t):(a._openSelectbox(t),p.focus())},keyup:function(e){o(e.keyCode)}}),e('
').appendTo(p),p.appendTo(c),u=e("