@algorithm-shift/design-system 1.2.995 → 1.2.996
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/dist/index.css +56 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +267 -145
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +277 -155
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -8
package/dist/index.d.mts
CHANGED
|
@@ -156,7 +156,7 @@ interface TabsProps extends ElementProps {
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
interface StagesProps extends ElementProps {
|
|
159
|
-
stages?:
|
|
159
|
+
stages?: any[];
|
|
160
160
|
isShowBtn?: boolean;
|
|
161
161
|
buttonText?: string;
|
|
162
162
|
onStageChange?: (stageId: string) => void;
|
|
@@ -383,8 +383,8 @@ declare const DateRange: ({ className, style, ...props }: DateRangeInputProps) =
|
|
|
383
383
|
declare const TextInputGroup: ({ className, style, prepend, append, ...props }: TextInputGroupProps) => react_jsx_runtime.JSX.Element;
|
|
384
384
|
|
|
385
385
|
interface Option {
|
|
386
|
-
|
|
387
|
-
|
|
386
|
+
value: string;
|
|
387
|
+
label: string;
|
|
388
388
|
}
|
|
389
389
|
interface LazyMultiSelectDropdownProps extends Omit<any, 'lazyLoad'> {
|
|
390
390
|
options?: Option[];
|
package/dist/index.d.ts
CHANGED
|
@@ -156,7 +156,7 @@ interface TabsProps extends ElementProps {
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
interface StagesProps extends ElementProps {
|
|
159
|
-
stages?:
|
|
159
|
+
stages?: any[];
|
|
160
160
|
isShowBtn?: boolean;
|
|
161
161
|
buttonText?: string;
|
|
162
162
|
onStageChange?: (stageId: string) => void;
|
|
@@ -383,8 +383,8 @@ declare const DateRange: ({ className, style, ...props }: DateRangeInputProps) =
|
|
|
383
383
|
declare const TextInputGroup: ({ className, style, prepend, append, ...props }: TextInputGroupProps) => react_jsx_runtime.JSX.Element;
|
|
384
384
|
|
|
385
385
|
interface Option {
|
|
386
|
-
|
|
387
|
-
|
|
386
|
+
value: string;
|
|
387
|
+
label: string;
|
|
388
388
|
}
|
|
389
389
|
interface LazyMultiSelectDropdownProps extends Omit<any, 'lazyLoad'> {
|
|
390
390
|
options?: Option[];
|