/
vshmidt
/
streamlit
Обзор
Документация
Войти
/
vshmidt
/
streamlit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
frontend/lib/src/components/widgets/DataFrame/columns/index.ts
94 строки
3 KB
Lukas Masuch
Allow selecting text of pills in the `MultiselectColumn` and `ListColumn` (#13663)
22 янв 2026, 21:34
Не верифицирован
22 янв 2026, 21:34
1bf047d
Код
Авторство
О чём код?
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import JsonCellRenderer from "./cells/JsonCell" import MultiSelectCellRenderer from "./cells/MultiSelectCell" import { AreaChartColumn, BarChartColumn, LineChartColumn, } from "./ChartColumn" import CheckboxColumn from "./CheckboxColumn" import DateTimeColumn, { DateColumn, TimeColumn } from "./DateTimeColumn" import ImageColumn from "./ImageColumn" import JsonColumn from "./JsonColumn" import LinkColumn from "./LinkColumn" import ListColumn from "./ListColumn" import MultiselectColumn from "./MultiselectColumn" import NumberColumn from "./NumberColumn" import ObjectColumn from "./ObjectColumn" import ProgressColumn from "./ProgressColumn" import SelectboxColumn from "./SelectboxColumn" import TextColumn from "./TextColumn" import { ColumnCreator } from "./utils" export { ImageCellEditor } from "./cells/ImageCellEditor" export type { JsonCell } from "./cells/JsonCell" export type { MultiSelectCell } from "./cells/MultiSelectCell" export type { DateTimeColumnParams } from "./DateTimeColumn" export type { LinkColumnParams } from "./LinkColumn" export type { NumberColumnParams } from "./NumberColumn" export * from "./utils" /** * All available column types need to be registered here. * * These names must match the column names used in the backend. */ export const ColumnTypes = new Map<string, ColumnCreator>( Object.entries({ object: ObjectColumn, text: TextColumn, checkbox: CheckboxColumn, selectbox: SelectboxColumn, list: ListColumn, multiselect: MultiselectColumn, number: NumberColumn, link: LinkColumn, datetime: DateTimeColumn, date: DateColumn, time: TimeColumn, line_chart: LineChartColumn, bar_chart: BarChartColumn, area_chart: AreaChartColumn, image: ImageColumn, progress: ProgressColumn, json: JsonColumn, }) ) export const CustomCells = [JsonCellRenderer, MultiSelectCellRenderer] export { AreaChartColumn, BarChartColumn, CheckboxColumn, DateColumn, DateTimeColumn, ImageColumn, JsonColumn, LineChartColumn, LinkColumn, ListColumn, MultiselectColumn, NumberColumn, ObjectColumn, ProgressColumn, SelectboxColumn, TextColumn, TimeColumn, }