@krosoft/react 0.0.278 → 0.0.279

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,13 +1,4 @@
1
- export interface FilterPillOption<T extends string | number> {
2
- value: T;
3
- label: string;
4
- count?: number;
5
- /** Icône affichée devant le libellé. */
6
- icon?: React.ElementType;
7
- /** Style coloré de la pastille (bordure/fond/texte) ; remplace le style par défaut, l'état actif étant marqué en gras. */
8
- className?: string;
9
- }
10
- export type FilterPillsVariant = "solid" | "outline";
1
+ import { type FilterPillOption, type FilterPillsVariant } from "./FilterPillsGroup";
11
2
  export interface FilterPillsProps<T extends string | number> {
12
3
  options: FilterPillOption<T>[];
13
4
  value: T;
@@ -20,6 +11,7 @@ export interface FilterPillsProps<T extends string | number> {
20
11
  *
21
12
  * Complémentaire de `SearchableFilterPill` (multi-sélection en popover) : ici toutes les
22
13
  * options sont visibles en ligne et une seule est active à la fois, comme un segmented control.
14
+ * Pour la multi-sélection inline, voir `FilterPillsGroup`.
23
15
  */
24
16
  export declare function FilterPills<T extends string | number>({ options, value, onChange, variant }: FilterPillsProps<T>): React.ReactElement;
25
17
  //# sourceMappingURL=FilterPills.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FilterPills.d.ts","sourceRoot":"","sources":["../../../../src/components/core/filters/FilterPills.tsx"],"names":[],"mappings":"AAEA,MAAM,WAAW,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM;IACzD,KAAK,EAAE,CAAC,CAAC;IACT,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,wCAAwC;IACxC,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACzB,0HAA0H;IAC1H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,MAAM,kBAAkB,GAAG,OAAO,GAAG,SAAS,CAAC;AAErD,MAAM,WAAW,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM;IACzD,OAAO,EAAE,gBAAgB,CAAC,CAAC,CAAC,EAAE,CAAC;IAC/B,KAAK,EAAE,CAAC,CAAC;IACT,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;IAC7B,sGAAsG;IACtG,OAAO,CAAC,EAAE,kBAAkB,CAAC;CAC9B;AAgBD;;;;;GAKG;AACH,wBAAgB,WAAW,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAiB,EAAE,EAAE,gBAAgB,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,YAAY,CAqB/I"}
1
+ {"version":3,"file":"FilterPills.d.ts","sourceRoot":"","sources":["../../../../src/components/core/filters/FilterPills.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAoB,KAAK,gBAAgB,EAAE,KAAK,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAEtG,MAAM,WAAW,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM;IACzD,OAAO,EAAE,gBAAgB,CAAC,CAAC,CAAC,EAAE,CAAC;IAC/B,KAAK,EAAE,CAAC,CAAC;IACT,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;IAC7B,sGAAsG;IACtG,OAAO,CAAC,EAAE,kBAAkB,CAAC;CAC9B;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAiB,EAAE,EAAE,gBAAgB,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,YAAY,CAE/I"}
@@ -0,0 +1,26 @@
1
+ export interface FilterPillOption<T extends string | number> {
2
+ value: T;
3
+ label: string;
4
+ count?: number;
5
+ /** Icône affichée devant le libellé. */
6
+ icon?: React.ElementType;
7
+ /** Style coloré de la pastille (bordure/fond/texte) ; remplace le style par défaut, l'état actif étant marqué en gras. */
8
+ className?: string;
9
+ }
10
+ export type FilterPillsVariant = "solid" | "outline";
11
+ export interface FilterPillsGroupProps<T extends string | number> {
12
+ options: FilterPillOption<T>[];
13
+ /** Valeurs actives ; plusieurs pastilles peuvent l'être à la fois. */
14
+ values: T[];
15
+ onToggle: (value: T) => void;
16
+ /** Style des options actives : fond plein (`solid`, défaut) ou bordure/texte `primary` (`outline`). */
17
+ variant?: FilterPillsVariant;
18
+ }
19
+ /**
20
+ * Groupe de pastilles de filtre à sélection multiple, avec compteur optionnel par option.
21
+ *
22
+ * Version multi-sélection de `FilterPills` (qui en est le cas particulier à sélection
23
+ * unique) : chaque clic bascule la valeur via `onToggle`.
24
+ */
25
+ export declare function FilterPillsGroup<T extends string | number>({ options, values, onToggle, variant }: FilterPillsGroupProps<T>): React.ReactElement;
26
+ //# sourceMappingURL=FilterPillsGroup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FilterPillsGroup.d.ts","sourceRoot":"","sources":["../../../../src/components/core/filters/FilterPillsGroup.tsx"],"names":[],"mappings":"AAEA,MAAM,WAAW,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM;IACzD,KAAK,EAAE,CAAC,CAAC;IACT,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,wCAAwC;IACxC,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACzB,0HAA0H;IAC1H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,MAAM,kBAAkB,GAAG,OAAO,GAAG,SAAS,CAAC;AAErD,MAAM,WAAW,qBAAqB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM;IAC9D,OAAO,EAAE,gBAAgB,CAAC,CAAC,CAAC,EAAE,CAAC;IAC/B,sEAAsE;IACtE,MAAM,EAAE,CAAC,EAAE,CAAC;IACZ,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;IAC7B,uGAAuG;IACvG,OAAO,CAAC,EAAE,kBAAkB,CAAC;CAC9B;AAgBD;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAiB,EAAE,EAAE,qBAAqB,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,YAAY,CAqB1J"}
@@ -2,6 +2,7 @@ export * from "./ActiveFilters";
2
2
  export * from "./AdvancedFilters";
3
3
  export * from "./FilterField";
4
4
  export * from "./FilterPills";
5
+ export * from "./FilterPillsGroup";
5
6
  export * from "./SearchableFilterPill";
6
7
  export * from "./TableFilter";
7
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/core/filters/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/core/filters/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC"}
@@ -228,7 +228,7 @@ function V({ sections: e, filters: r, onFiltersChange: i, buttonText: a, sheetTi
228
228
  });
229
229
  }
230
230
  //#endregion
231
- //#region src/components/core/filters/FilterPills.tsx
231
+ //#region src/components/core/filters/FilterPillsGroup.tsx
232
232
  var H = {
233
233
  solid: "border-foreground bg-foreground text-background",
234
234
  outline: "border-primary bg-primary/10 text-primary font-medium"
@@ -236,11 +236,11 @@ var H = {
236
236
  function U(t, n, r) {
237
237
  return r === void 0 ? t ? H[n] : "border-border bg-background text-muted-foreground hover:text-foreground hover:border-foreground/40" : e(r, t ? "font-semibold" : "opacity-60 hover:opacity-100");
238
238
  }
239
- function W({ options: t, value: n, onChange: r, variant: i = "solid" }) {
239
+ function W({ options: t, values: n, onToggle: r, variant: i = "solid" }) {
240
240
  return /* @__PURE__ */ A("div", {
241
241
  className: "flex flex-wrap gap-1.5",
242
242
  children: t.map(({ value: t, label: a, count: o, icon: s, className: c }) => {
243
- let l = U(n === t, i, c);
243
+ let l = U(n.includes(t), i, c);
244
244
  return /* @__PURE__ */ j("button", {
245
245
  onClick: () => {
246
246
  r(t);
@@ -264,8 +264,18 @@ function W({ options: t, value: n, onChange: r, variant: i = "solid" }) {
264
264
  });
265
265
  }
266
266
  //#endregion
267
+ //#region src/components/core/filters/FilterPills.tsx
268
+ function G({ options: e, value: t, onChange: n, variant: r = "solid" }) {
269
+ return /* @__PURE__ */ A(W, {
270
+ options: e,
271
+ values: [t],
272
+ onToggle: n,
273
+ variant: r
274
+ });
275
+ }
276
+ //#endregion
267
277
  //#region src/components/core/filters/SearchableFilterPill.tsx
268
- function G({ labelKey: n, options: r, selected: o, onToggle: s, onClear: c, onSelectAll: u, searchable: f = !1, searchPlaceholder: m }) {
278
+ function K({ labelKey: n, options: r, selected: o, onToggle: s, onClear: c, onSelectAll: u, searchable: f = !1, searchPlaceholder: m }) {
269
279
  let { t: h } = t(), [g, _] = k(""), v = o.length > 0, y = O(() => g === "" ? r : r.filter((e) => e.label.toLowerCase().includes(g.toLowerCase())), [r, g]), b = O(() => y.length !== 0 && y.every((e) => o.includes(e.value)), [y, o]);
270
280
  return /* @__PURE__ */ j(p, {
271
281
  onOpenChange: () => {
@@ -369,7 +379,7 @@ function G({ labelKey: n, options: r, selected: o, onToggle: s, onClear: c, onSe
369
379
  }
370
380
  //#endregion
371
381
  //#region src/components/core/filters/TableFilter.tsx
372
- function K({ searchQuery: e, onSearchChange: n, searchPlaceholder: r, filters: i, onFiltersChange: a, sections: o, advancedButtonText: s, sheetTitle: c }) {
382
+ function q({ searchQuery: e, onSearchChange: n, searchPlaceholder: r, filters: i, onFiltersChange: a, sections: o, advancedButtonText: s, sheetTitle: c }) {
373
383
  let { t: l } = t(), u = (e, t) => {
374
384
  let n = i[e], r = Array.isArray(n) ? n : [], o = r.includes(t) ? r.filter((e) => e !== t) : [...r, t], s = { ...i };
375
385
  o.length === 0 ? delete s[e] : s[e] = o, a(s);
@@ -424,7 +434,7 @@ function K({ searchQuery: e, onSearchChange: n, searchPlaceholder: r, filters: i
424
434
  n("");
425
435
  },
426
436
  placeholder: r ?? l("search.placeholder")
427
- }), m.map((e) => /* @__PURE__ */ A(G, {
437
+ }), m.map((e) => /* @__PURE__ */ A(K, {
428
438
  labelKey: e.labelKey,
429
439
  options: e.options,
430
440
  selected: Array.isArray(i[e.key]) ? i[e.key] : [],
@@ -460,4 +470,4 @@ function K({ searchQuery: e, onSearchChange: n, searchPlaceholder: r, filters: i
460
470
  });
461
471
  }
462
472
  //#endregion
463
- export { R as ActiveFilters, V as AdvancedFilters, z as FilterField, W as FilterPills, G as SearchableFilterPill, K as TableFilter };
473
+ export { R as ActiveFilters, V as AdvancedFilters, z as FilterField, G as FilterPills, W as FilterPillsGroup, K as SearchableFilterPill, q as TableFilter };
@@ -10,15 +10,15 @@ import { t as j } from "../../MultiSelect-LZHOrlJ0.js";
10
10
  import { t as M } from "../../GenericForm-CapENiix.js";
11
11
  import { t as N } from "../../ErrorAlert-BiyjpXW1.js";
12
12
  import { i as P, n as F, r as I, t as L } from "../../SearchInput-DZJwoADO.js";
13
- import { ActiveFilters as R, AdvancedFilters as z, FilterField as B, FilterPills as V, SearchableFilterPill as H, TableFilter as U } from "./filters/index.js";
13
+ import { ActiveFilters as R, AdvancedFilters as z, FilterField as B, FilterPills as V, FilterPillsGroup as H, SearchableFilterPill as U, TableFilter as W } from "./filters/index.js";
14
14
  import "./forms/index.js";
15
- import { t as W } from "../../inputs-BJOt0CO4.js";
16
- import { t as G } from "../../language-wGKLt6oh.js";
17
- import { t as K } from "../../AppTitle-B1wOSQGM.js";
18
- import { n as q, t as J } from "../../states-DGjgfPuG.js";
19
- import { AppPageHeader as Y, KpiCardsLayout as X } from "./layouts/index.js";
20
- import { a as Z, i as Q, n as $, o as ee, r as te, t as ne } from "../../navbar-Dv4ymBap.js";
21
- import { DataTable as re, JsonTableOutput as ie, TableActions as ae, TableBody as oe, TableBulkActions as se, TableHeader as ce, TablePagination as le, TableSettings as ue } from "./table/index.js";
22
- import { AppTabContainer as de, AppTabHeader as fe, AppTabs as pe, AppVerticalTabs as me } from "./tabs/index.js";
23
- import { t as he } from "../../theme-DedDA2ib.js";
24
- export { R as ActiveFilters, z as AdvancedFilters, k as AppActions, E as AppDialog, Y as AppPageHeader, A as AppSubTitle, de as AppTabContainer, fe as AppTabHeader, pe as AppTabs, K as AppTitle, me as AppVerticalTabs, v as BarChartHorizontal, C as BarChartVertical, _ as CHART_COLORS, y as ChartCard, S as CircularGauge, D as ConfirmationDialog, r as DashboardCard, re as DataTable, P as DatePicker, I as DateRangePicker, l as Dialog, c as DialogClose, p as DialogContent, g as DialogDescription, s as DialogFooter, h as DialogHeader, d as DialogOverlay, f as DialogPortal, m as DialogTitle, u as DialogTrigger, N as ErrorAlert, q as ErrorState, B as FilterField, V as FilterPills, T as FormDialog, M as GenericForm, ee as GlobalSearch, O as ImageInput, ie as JsonTableOutput, e as KpiCard, t as KpiCards, X as KpiCardsLayout, G as LanguageSelector, b as LineChart, J as LoadingState, i as MetricCard, j as MultiSelect, Z as NotificationsBell, w as PieChart, o as Progress, W as RatingInput, L as SearchInput, H as SearchableFilterPill, F as SearchableSelect, te as Sidebar, $ as SidebarHeader, Q as SidebarNavItem, n as SkeletonCard, a as SkeletonCards, ae as TableActions, oe as TableBody, se as TableBulkActions, U as TableFilter, ce as TableHeader, le as TablePagination, ue as TableSettings, he as ThemeSelector, ne as Topbar, x as getChartColor };
15
+ import { t as G } from "../../inputs-BJOt0CO4.js";
16
+ import { t as K } from "../../language-wGKLt6oh.js";
17
+ import { t as q } from "../../AppTitle-B1wOSQGM.js";
18
+ import { n as J, t as Y } from "../../states-DGjgfPuG.js";
19
+ import { AppPageHeader as X, KpiCardsLayout as Z } from "./layouts/index.js";
20
+ import { a as Q, i as $, n as ee, o as te, r as ne, t as re } from "../../navbar-Dv4ymBap.js";
21
+ import { DataTable as ie, JsonTableOutput as ae, TableActions as oe, TableBody as se, TableBulkActions as ce, TableHeader as le, TablePagination as ue, TableSettings as de } from "./table/index.js";
22
+ import { AppTabContainer as fe, AppTabHeader as pe, AppTabs as me, AppVerticalTabs as he } from "./tabs/index.js";
23
+ import { t as ge } from "../../theme-DedDA2ib.js";
24
+ export { R as ActiveFilters, z as AdvancedFilters, k as AppActions, E as AppDialog, X as AppPageHeader, A as AppSubTitle, fe as AppTabContainer, pe as AppTabHeader, me as AppTabs, q as AppTitle, he as AppVerticalTabs, v as BarChartHorizontal, C as BarChartVertical, _ as CHART_COLORS, y as ChartCard, S as CircularGauge, D as ConfirmationDialog, r as DashboardCard, ie as DataTable, P as DatePicker, I as DateRangePicker, l as Dialog, c as DialogClose, p as DialogContent, g as DialogDescription, s as DialogFooter, h as DialogHeader, d as DialogOverlay, f as DialogPortal, m as DialogTitle, u as DialogTrigger, N as ErrorAlert, J as ErrorState, B as FilterField, V as FilterPills, H as FilterPillsGroup, T as FormDialog, M as GenericForm, te as GlobalSearch, O as ImageInput, ae as JsonTableOutput, e as KpiCard, t as KpiCards, Z as KpiCardsLayout, K as LanguageSelector, b as LineChart, Y as LoadingState, i as MetricCard, j as MultiSelect, Q as NotificationsBell, w as PieChart, o as Progress, G as RatingInput, L as SearchInput, U as SearchableFilterPill, F as SearchableSelect, ne as Sidebar, ee as SidebarHeader, $ as SidebarNavItem, n as SkeletonCard, a as SkeletonCards, oe as TableActions, se as TableBody, ce as TableBulkActions, W as TableFilter, le as TableHeader, ue as TablePagination, de as TableSettings, ge as ThemeSelector, re as Topbar, x as getChartColor };
@@ -15,15 +15,15 @@ import { t as Pr } from "../MultiSelect-LZHOrlJ0.js";
15
15
  import { t as Fr } from "../GenericForm-CapENiix.js";
16
16
  import { t as Ir } from "../ErrorAlert-BiyjpXW1.js";
17
17
  import { i as Lr, n as Rr, r as zr, t as Br } from "../SearchInput-DZJwoADO.js";
18
- import { ActiveFilters as Vr, AdvancedFilters as Hr, FilterField as Ur, FilterPills as Wr, SearchableFilterPill as Gr, TableFilter as Kr } from "./core/filters/index.js";
19
- import { t as qr } from "../inputs-BJOt0CO4.js";
20
- import { t as Jr } from "../language-wGKLt6oh.js";
21
- import { t as Yr } from "../AppTitle-B1wOSQGM.js";
22
- import { n as Xr, t as Zr } from "../states-DGjgfPuG.js";
23
- import { AppPageHeader as Qr, KpiCardsLayout as $r } from "./core/layouts/index.js";
24
- import { a as ei, i as ti, n as ni, o as ri, r as ii, t as ai } from "../navbar-Dv4ymBap.js";
25
- import { DataTable as oi, JsonTableOutput as si, TableActions as ci, TableBody as li, TableBulkActions as ui, TableHeader as di, TablePagination as fi, TableSettings as pi } from "./core/table/index.js";
26
- import { AppTabContainer as mi, AppTabHeader as hi, AppTabs as gi, AppVerticalTabs as _i } from "./core/tabs/index.js";
27
- import { t as vi } from "../theme-DedDA2ib.js";
18
+ import { ActiveFilters as Vr, AdvancedFilters as Hr, FilterField as Ur, FilterPills as Wr, FilterPillsGroup as Gr, SearchableFilterPill as Kr, TableFilter as qr } from "./core/filters/index.js";
19
+ import { t as Jr } from "../inputs-BJOt0CO4.js";
20
+ import { t as Yr } from "../language-wGKLt6oh.js";
21
+ import { t as Xr } from "../AppTitle-B1wOSQGM.js";
22
+ import { n as Zr, t as Qr } from "../states-DGjgfPuG.js";
23
+ import { AppPageHeader as $r, KpiCardsLayout as ei } from "./core/layouts/index.js";
24
+ import { a as ti, i as ni, n as ri, o as ii, r as ai, t as oi } from "../navbar-Dv4ymBap.js";
25
+ import { DataTable as si, JsonTableOutput as ci, TableActions as li, TableBody as ui, TableBulkActions as di, TableHeader as fi, TablePagination as pi, TableSettings as mi } from "./core/table/index.js";
26
+ import { AppTabContainer as hi, AppTabHeader as gi, AppTabs as _i, AppVerticalTabs as vi } from "./core/tabs/index.js";
27
+ import { t as yi } from "../theme-DedDA2ib.js";
28
28
  import "./core/index.js";
29
- export { ze as Accordion, Ie as AccordionContent, He as AccordionItem, he as AccordionTrigger, Vr as ActiveFilters, Hr as AdvancedFilters, yn as Alert, _n as AlertDescription, w as AlertDialog, Ae as AlertDialogAction, H as AlertDialogCancel, De as AlertDialogContent, Ne as AlertDialogDescription, z as AlertDialogFooter, Z as AlertDialogHeader, Vt as AlertDialogTitle, J as AlertDialogTrigger, vn as AlertTitle, Mr as AppActions, kr as AppDialog, Qr as AppPageHeader, Nr as AppSubTitle, mi as AppTabContainer, hi as AppTabHeader, gi as AppTabs, Yr as AppTitle, _i as AppVerticalTabs, hn as AspectRatio, G as Avatar, ee as AvatarFallback, ve as AvatarImage, fe as Badge, xr as BarChartHorizontal, Er as BarChartVertical, A as Breadcrumb, le as BreadcrumbEllipsis, Ct as BreadcrumbItem, x as BreadcrumbLink, bt as BreadcrumbList, re as BreadcrumbPage, oe as BreadcrumbSeparator, En as Button, br as CHART_COLORS, N as Calendar, l as Card, t as CardContent, a as CardDescription, d as CardFooter, n as CardHeader, r as CardTitle, ln as Carousel, xe as CarouselContent, D as CarouselItem, on as CarouselNext, we as CarouselPrevious, Sr as ChartCard, u as ChartContainer, o as ChartLegend, c as ChartLegendContent, i as ChartStyle, e as ChartTooltip, s as ChartTooltipContent, Ze as Checkbox, Tr as CircularGauge, Ge as Collapsible, nn as CollapsibleContent, fn as CollapsibleTrigger, zn as Command, ar as CommandDialog, cr as CommandEmpty, Vn as CommandGroup, sr as CommandInput, Ln as CommandItem, kn as CommandList, or as CommandSeparator, Rn as CommandShortcut, Ar as ConfirmationDialog, Mt as ContextMenu, Wt as ContextMenuCheckboxItem, _t as ContextMenuContent, Je as ContextMenuGroup, Ft as ContextMenuItem, qt as ContextMenuLabel, et as ContextMenuPortal, Et as ContextMenuRadioGroup, $t as ContextMenuRadioItem, rt as ContextMenuSeparator, ct as ContextMenuShortcut, Rt as ContextMenuSub, kt as ContextMenuSubContent, mt as ContextMenuSubTrigger, dt as ContextMenuTrigger, h as DashboardCard, oi as DataTable, Lr as DatePicker, zr as DateRangePicker, jn as Dialog, An as DialogClose, Fn as DialogContent, Yn as DialogDescription, On as DialogFooter, Jn as DialogHeader, Nn as DialogOverlay, Pn as DialogPortal, In as DialogTitle, Mn as DialogTrigger, Q as Drawer, Ht as DrawerClose, Y as DrawerContent, Be as DrawerDescription, Le as DrawerFooter, Ue as DrawerHeader, ge as DrawerOverlay, y as DrawerPortal, at as DrawerTitle, Xt as DrawerTrigger, xt as DropdownMenu, ie as DropdownMenuCheckboxItem, se as DropdownMenuContent, pe as DropdownMenuGroup, L as DropdownMenuItem, K as DropdownMenuLabel, te as DropdownMenuPortal, ye as DropdownMenuRadioGroup, gn as DropdownMenuRadioItem, T as DropdownMenuSeparator, je as DropdownMenuShortcut, U as DropdownMenuSub, Oe as DropdownMenuSubContent, Pe as DropdownMenuSubTrigger, B as DropdownMenuTrigger, Ir as ErrorAlert, Xr as ErrorState, Ur as FilterField, Wr as FilterPills, Se as Form, O as FormControl, sn as FormDescription, Or as FormDialog, Te as FormField, P as FormItem, j as FormLabel, ue as FormMessage, Fr as GenericForm, ri as GlobalSearch, pn as HoverCard, Qe as HoverCardContent, un as HoverCardTrigger, jr as ImageInput, Gn as Input, ht as InputOTP, ft as InputOTPGroup, Ke as InputOTPSeparator, rn as InputOTPSlot, si as JsonTableOutput, f as KpiCard, p as KpiCards, $r as KpiCardsLayout, S as Label, Jr as LanguageSelector, Cr as LineChart, Zr as LoadingState, v as Menubar, ot as MenubarCheckboxItem, Zt as MenubarContent, Nt as MenubarGroup, Gt as MenubarItem, vt as MenubarLabel, Ye as MenubarMenu, It as MenubarPortal, Jt as MenubarRadioGroup, tt as MenubarRadioItem, Dt as MenubarSeparator, en as MenubarShortcut, it as MenubarSub, lt as MenubarSubContent, zt as MenubarSubTrigger, At as MenubarTrigger, g as MetricCard, Pr as MultiSelect, Me as NavigationMenu, R as NavigationMenuContent, X as NavigationMenuIndicator, Bt as NavigationMenuItem, q as NavigationMenuLink, Re as NavigationMenuList, Fe as NavigationMenuTrigger, Ve as NavigationMenuViewport, ei as NotificationsBell, $ as Pagination, _e as PaginationContent, mn as PaginationEllipsis, C as PaginationItem, ke as PaginationLink, V as PaginationNext, Ee as PaginationPrevious, Dr as PieChart, er as Popover, Zn as PopoverContent, Kn as PopoverTrigger, W as Progress, de as RadioGroup, F as RadioGroupItem, qr as RatingInput, yt as ResizableHandle, ne as ResizablePanel, ae as ResizablePanelGroup, Un as ScrollArea, Wn as ScrollBar, Br as SearchInput, Gr as SearchableFilterPill, Rr as SearchableSelect, _r as Select, pr as SelectContent, hr as SelectGroup, dr as SelectItem, lr as SelectLabel, mr as SelectScrollDownButton, gr as SelectScrollUpButton, ur as SelectSeparator, fr as SelectTrigger, vr as SelectValue, b as Separator, rr as Sheet, Qn as SheetClose, tr as SheetContent, qn as SheetDescription, Bn as SheetFooter, $n as SheetHeader, nr as SheetOverlay, Hn as SheetPortal, Xn as SheetTitle, ir as SheetTrigger, ii as Sidebar, ni as SidebarHeader, ti as SidebarNavItem, be as SimpleTable, E as SimpleTableBody, an as SimpleTableCaption, Ce as SimpleTableCell, M as SimpleTableFooter, k as SimpleTableHead, ce as SimpleTableHeader, St as SimpleTableRow, yr as Skeleton, m as SkeletonCard, _ as SkeletonCards, cn as Slider, dn as Sonner, tn as Switch, ci as TableActions, li as TableBody, ui as TableBulkActions, Kr as TableFilter, di as TableHeader, fi as TablePagination, pi as TableSettings, Ot as Tabs, pt as TabsContent, ut as TabsList, We as TabsTrigger, Lt as Textarea, vi as ThemeSelector, Pt as Toast, Kt as ToastAction, $e as ToastClose, Tt as ToastDescription, Qt as ToastProvider, nt as ToastTitle, st as ToastViewport, qe as Toaster, Ut as Toggle, Yt as ToggleGroup, jt as ToggleGroupItem, Dn as Tooltip, Cn as TooltipContent, Tn as TooltipProvider, Sn as TooltipTrigger, ai as Topbar, I as badgeVariants, xn as buttonVariants, bn as controlBaseClass, wn as controlTriggerClass, wr as getChartColor, me as navigationMenuTriggerStyle, Xe as toast, gt as toggleVariants, wt as useFormField };
29
+ export { ze as Accordion, Ie as AccordionContent, He as AccordionItem, he as AccordionTrigger, Vr as ActiveFilters, Hr as AdvancedFilters, yn as Alert, _n as AlertDescription, w as AlertDialog, Ae as AlertDialogAction, H as AlertDialogCancel, De as AlertDialogContent, Ne as AlertDialogDescription, z as AlertDialogFooter, Z as AlertDialogHeader, Vt as AlertDialogTitle, J as AlertDialogTrigger, vn as AlertTitle, Mr as AppActions, kr as AppDialog, $r as AppPageHeader, Nr as AppSubTitle, hi as AppTabContainer, gi as AppTabHeader, _i as AppTabs, Xr as AppTitle, vi as AppVerticalTabs, hn as AspectRatio, G as Avatar, ee as AvatarFallback, ve as AvatarImage, fe as Badge, xr as BarChartHorizontal, Er as BarChartVertical, A as Breadcrumb, le as BreadcrumbEllipsis, Ct as BreadcrumbItem, x as BreadcrumbLink, bt as BreadcrumbList, re as BreadcrumbPage, oe as BreadcrumbSeparator, En as Button, br as CHART_COLORS, N as Calendar, l as Card, t as CardContent, a as CardDescription, d as CardFooter, n as CardHeader, r as CardTitle, ln as Carousel, xe as CarouselContent, D as CarouselItem, on as CarouselNext, we as CarouselPrevious, Sr as ChartCard, u as ChartContainer, o as ChartLegend, c as ChartLegendContent, i as ChartStyle, e as ChartTooltip, s as ChartTooltipContent, Ze as Checkbox, Tr as CircularGauge, Ge as Collapsible, nn as CollapsibleContent, fn as CollapsibleTrigger, zn as Command, ar as CommandDialog, cr as CommandEmpty, Vn as CommandGroup, sr as CommandInput, Ln as CommandItem, kn as CommandList, or as CommandSeparator, Rn as CommandShortcut, Ar as ConfirmationDialog, Mt as ContextMenu, Wt as ContextMenuCheckboxItem, _t as ContextMenuContent, Je as ContextMenuGroup, Ft as ContextMenuItem, qt as ContextMenuLabel, et as ContextMenuPortal, Et as ContextMenuRadioGroup, $t as ContextMenuRadioItem, rt as ContextMenuSeparator, ct as ContextMenuShortcut, Rt as ContextMenuSub, kt as ContextMenuSubContent, mt as ContextMenuSubTrigger, dt as ContextMenuTrigger, h as DashboardCard, si as DataTable, Lr as DatePicker, zr as DateRangePicker, jn as Dialog, An as DialogClose, Fn as DialogContent, Yn as DialogDescription, On as DialogFooter, Jn as DialogHeader, Nn as DialogOverlay, Pn as DialogPortal, In as DialogTitle, Mn as DialogTrigger, Q as Drawer, Ht as DrawerClose, Y as DrawerContent, Be as DrawerDescription, Le as DrawerFooter, Ue as DrawerHeader, ge as DrawerOverlay, y as DrawerPortal, at as DrawerTitle, Xt as DrawerTrigger, xt as DropdownMenu, ie as DropdownMenuCheckboxItem, se as DropdownMenuContent, pe as DropdownMenuGroup, L as DropdownMenuItem, K as DropdownMenuLabel, te as DropdownMenuPortal, ye as DropdownMenuRadioGroup, gn as DropdownMenuRadioItem, T as DropdownMenuSeparator, je as DropdownMenuShortcut, U as DropdownMenuSub, Oe as DropdownMenuSubContent, Pe as DropdownMenuSubTrigger, B as DropdownMenuTrigger, Ir as ErrorAlert, Zr as ErrorState, Ur as FilterField, Wr as FilterPills, Gr as FilterPillsGroup, Se as Form, O as FormControl, sn as FormDescription, Or as FormDialog, Te as FormField, P as FormItem, j as FormLabel, ue as FormMessage, Fr as GenericForm, ii as GlobalSearch, pn as HoverCard, Qe as HoverCardContent, un as HoverCardTrigger, jr as ImageInput, Gn as Input, ht as InputOTP, ft as InputOTPGroup, Ke as InputOTPSeparator, rn as InputOTPSlot, ci as JsonTableOutput, f as KpiCard, p as KpiCards, ei as KpiCardsLayout, S as Label, Yr as LanguageSelector, Cr as LineChart, Qr as LoadingState, v as Menubar, ot as MenubarCheckboxItem, Zt as MenubarContent, Nt as MenubarGroup, Gt as MenubarItem, vt as MenubarLabel, Ye as MenubarMenu, It as MenubarPortal, Jt as MenubarRadioGroup, tt as MenubarRadioItem, Dt as MenubarSeparator, en as MenubarShortcut, it as MenubarSub, lt as MenubarSubContent, zt as MenubarSubTrigger, At as MenubarTrigger, g as MetricCard, Pr as MultiSelect, Me as NavigationMenu, R as NavigationMenuContent, X as NavigationMenuIndicator, Bt as NavigationMenuItem, q as NavigationMenuLink, Re as NavigationMenuList, Fe as NavigationMenuTrigger, Ve as NavigationMenuViewport, ti as NotificationsBell, $ as Pagination, _e as PaginationContent, mn as PaginationEllipsis, C as PaginationItem, ke as PaginationLink, V as PaginationNext, Ee as PaginationPrevious, Dr as PieChart, er as Popover, Zn as PopoverContent, Kn as PopoverTrigger, W as Progress, de as RadioGroup, F as RadioGroupItem, Jr as RatingInput, yt as ResizableHandle, ne as ResizablePanel, ae as ResizablePanelGroup, Un as ScrollArea, Wn as ScrollBar, Br as SearchInput, Kr as SearchableFilterPill, Rr as SearchableSelect, _r as Select, pr as SelectContent, hr as SelectGroup, dr as SelectItem, lr as SelectLabel, mr as SelectScrollDownButton, gr as SelectScrollUpButton, ur as SelectSeparator, fr as SelectTrigger, vr as SelectValue, b as Separator, rr as Sheet, Qn as SheetClose, tr as SheetContent, qn as SheetDescription, Bn as SheetFooter, $n as SheetHeader, nr as SheetOverlay, Hn as SheetPortal, Xn as SheetTitle, ir as SheetTrigger, ai as Sidebar, ri as SidebarHeader, ni as SidebarNavItem, be as SimpleTable, E as SimpleTableBody, an as SimpleTableCaption, Ce as SimpleTableCell, M as SimpleTableFooter, k as SimpleTableHead, ce as SimpleTableHeader, St as SimpleTableRow, yr as Skeleton, m as SkeletonCard, _ as SkeletonCards, cn as Slider, dn as Sonner, tn as Switch, li as TableActions, ui as TableBody, di as TableBulkActions, qr as TableFilter, fi as TableHeader, pi as TablePagination, mi as TableSettings, Ot as Tabs, pt as TabsContent, ut as TabsList, We as TabsTrigger, Lt as Textarea, yi as ThemeSelector, Pt as Toast, Kt as ToastAction, $e as ToastClose, Tt as ToastDescription, Qt as ToastProvider, nt as ToastTitle, st as ToastViewport, qe as Toaster, Ut as Toggle, Yt as ToggleGroup, jt as ToggleGroupItem, Dn as Tooltip, Cn as TooltipContent, Tn as TooltipProvider, Sn as TooltipTrigger, oi as Topbar, I as badgeVariants, xn as buttonVariants, bn as controlBaseClass, wn as controlTriggerClass, wr as getChartColor, me as navigationMenuTriggerStyle, Xe as toast, gt as toggleVariants, wt as useFormField };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krosoft/react",
3
- "version": "0.0.278",
3
+ "version": "0.0.279",
4
4
  "description": "Krosoft shared React package",
5
5
  "type": "module",
6
6
  "scripts": {