@indxsearch/systm 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +2 -2
- package/dist/components/Chip/Chip.d.ts +8 -0
- package/dist/components/ProgressBar/ProgressBar.d.ts +7 -0
- package/dist/components/Tabs/Tabs.d.ts +11 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.es.js +5360 -2695
- package/dist/index.umd.js +61 -21
- package/dist/systm.css +1 -1
- package/package.json +7 -2
package/LICENSE
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Version 1.0
|
|
4
4
|
|
|
5
|
-
Copyright (c) Indx
|
|
5
|
+
Copyright (c) 2026 Indx Search (Bionic AS)
|
|
6
6
|
|
|
7
7
|
## 1. Grant of License
|
|
8
8
|
|
|
@@ -51,4 +51,4 @@ This license is automatically terminated if you violate its terms.
|
|
|
51
51
|
|
|
52
52
|
---
|
|
53
53
|
|
|
54
|
-
For commercial licensing inquiries, please contact:
|
|
54
|
+
For commercial licensing inquiries, please contact: post@indx.co
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface ChipProps {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
color?: string;
|
|
5
|
+
textColor?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare function Chip({ children, color, textColor, className }: ChipProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface ProgressBarProps {
|
|
2
|
+
value: number;
|
|
3
|
+
showLabel?: boolean;
|
|
4
|
+
fulfilledColor?: boolean;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function ProgressBar({ value, showLabel, fulfilledColor, className }: ProgressBarProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface TabItem {
|
|
2
|
+
label: string;
|
|
3
|
+
value: string;
|
|
4
|
+
}
|
|
5
|
+
export interface TabsProps {
|
|
6
|
+
items: TabItem[];
|
|
7
|
+
value: string;
|
|
8
|
+
onValueChange: (value: string) => void;
|
|
9
|
+
size?: 'micro' | 'default' | 'large';
|
|
10
|
+
}
|
|
11
|
+
export declare function Tabs({ items, value, onValueChange, size }: TabsProps): import("react/jsx-runtime").JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -13,3 +13,6 @@ export { Slider } from './components/Slider/Slider';
|
|
|
13
13
|
export { Select, type SelectOption, type SelectProps } from './components/Select/Select';
|
|
14
14
|
export { Popover, type PopoverProps } from './components/Popover';
|
|
15
15
|
export { Table, TableHeader, TableRow, TableCell, TableValue, TableIcon } from './components/Table';
|
|
16
|
+
export { Tabs, type TabItem, type TabsProps } from './components/Tabs/Tabs';
|
|
17
|
+
export { ProgressBar, type ProgressBarProps } from './components/ProgressBar/ProgressBar';
|
|
18
|
+
export { Chip, type ChipProps } from './components/Chip/Chip';
|