sodtrack-web-ui 0.109.19 → 0.109.21
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/chunk-4LTLOLAM.js +1 -0
- package/dist/{chunk-YN6VYUCM.js → chunk-6QOM3R5H.js} +1 -1
- package/dist/{chunk-Y62GJUE5.js → chunk-E3WJNVAZ.js} +1 -1
- package/dist/chunk-GXP4CPRH.js +1 -0
- package/dist/chunk-H2W4DMI2.js +1 -0
- package/dist/chunk-ORVJ7EFO.js +1 -0
- package/dist/chunk-TQ6DGZQE.js +1 -0
- package/dist/{chunk-UBSXAQMD.js → chunk-UH2U3OJH.js} +1 -1
- package/dist/chunk-USAH5LKL.js +1 -0
- package/dist/chunk-USHOFETH.js +1 -0
- package/dist/chunk-WKPHDQE7.js +1 -0
- package/dist/chunk-WXXXUETS.js +1 -0
- package/dist/components/badge-expandable.d.ts +1 -1
- package/dist/components/button-active.js +1 -1
- package/dist/components/button-menu.js +1 -1
- package/dist/components/card-basic.d.ts +2 -1
- package/dist/components/card-basic.js +1 -1
- package/dist/components/card-expandable.d.ts +1 -0
- package/dist/components/card-expandable.js +1 -1
- package/dist/components/checkbox.d.ts +46 -1
- package/dist/components/checkbox.js +1 -1
- package/dist/components/chip-input.d.ts +2 -2
- package/dist/components/data-table.d.ts +1 -0
- package/dist/components/data-table.js +1 -1
- package/dist/components/date-picker_old.js +1 -1
- package/dist/components/drawer-bar.js +1 -1
- package/dist/components/index.d.ts +12 -8
- package/dist/components/index.js +1 -1
- package/dist/components/list-item-arrow.d.ts +19 -0
- package/dist/components/list-item-arrow.js +1 -1
- package/dist/components/list-item-button.d.ts +19 -0
- package/dist/components/list-item-button.js +1 -1
- package/dist/components/list-item-checkbox-left.d.ts +21 -1
- package/dist/components/list-item-checkbox-left.js +1 -1
- package/dist/components/list-item-checkbox.d.ts +22 -0
- package/dist/components/list-item-checkbox.js +1 -1
- package/dist/components/list-item.d.ts +80 -0
- package/dist/components/list-item.js +1 -0
- package/dist/components/list-item_old.d.ts +19 -0
- package/dist/components/list-item_old.js +1 -1
- package/dist/components/menu.d.ts +35 -0
- package/dist/components/menu.js +1 -0
- package/dist/components/number-field.d.ts +24 -11
- package/dist/components/number-field.js +1 -1
- package/dist/components/radio.d.ts +40 -1
- package/dist/components/radio.js +1 -1
- package/dist/components/signature-pad.d.ts +1 -1
- package/dist/components/table.d.ts +2 -1
- package/dist/components/time-picker.d.ts +1 -1
- package/dist/components/tracker-item.js +1 -1
- package/dist/styles/index.css +1 -1
- package/package.json +1 -1
- package/dist/chunk-5CWMGBAA.js +0 -1
- package/dist/chunk-JILFS566.js +0 -1
- package/dist/chunk-VFJJSNTF.js +0 -1
- package/dist/chunk-X5YTKIUR.js +0 -1
- /package/dist/{chunk-7ERWQ3FH.js → chunk-CMW3RKDM.js} +0 -0
- /package/dist/{chunk-QFDJQTZN.js → chunk-URNDTXH2.js} +0 -0
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
import * as tailwind_variants from 'tailwind-variants';
|
|
3
|
+
import * as tailwind_merge from 'tailwind-merge';
|
|
2
4
|
import { RadioGroupRootProps, RadioGroupItemProps as RadioGroupItemProps$1 } from '@ark-ui/react/radio-group';
|
|
3
5
|
|
|
4
6
|
declare const RadioGroupOrientation: readonly ["horizontal", "vertical"];
|
|
@@ -15,6 +17,43 @@ type RadioGroupProps = Omit<RadioGroupRootProps, "onValueChange"> & {
|
|
|
15
17
|
type RadioGroupItemProps = RadioGroupItemProps$1 & {
|
|
16
18
|
label?: string;
|
|
17
19
|
};
|
|
20
|
+
declare const radioStyles: tailwind_variants.TVReturnType<{
|
|
21
|
+
[key: string]: {
|
|
22
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
23
|
+
text?: tailwind_merge.ClassNameValue;
|
|
24
|
+
control?: tailwind_merge.ClassNameValue;
|
|
25
|
+
item?: tailwind_merge.ClassNameValue;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
} | {
|
|
29
|
+
[x: string]: {
|
|
30
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
31
|
+
text?: tailwind_merge.ClassNameValue;
|
|
32
|
+
control?: tailwind_merge.ClassNameValue;
|
|
33
|
+
item?: tailwind_merge.ClassNameValue;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
} | {}, {
|
|
37
|
+
item: string[];
|
|
38
|
+
control: string[];
|
|
39
|
+
text: string[];
|
|
40
|
+
}, undefined, {
|
|
41
|
+
[key: string]: {
|
|
42
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
43
|
+
text?: tailwind_merge.ClassNameValue;
|
|
44
|
+
control?: tailwind_merge.ClassNameValue;
|
|
45
|
+
item?: tailwind_merge.ClassNameValue;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
} | {}, {
|
|
49
|
+
item: string[];
|
|
50
|
+
control: string[];
|
|
51
|
+
text: string[];
|
|
52
|
+
}, tailwind_variants.TVReturnType<unknown, {
|
|
53
|
+
item: string[];
|
|
54
|
+
control: string[];
|
|
55
|
+
text: string[];
|
|
56
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
18
57
|
declare const RadioGroup: React.ForwardRefExoticComponent<Omit<RadioGroupRootProps, "onValueChange"> & {
|
|
19
58
|
onValueChange?: (value: string | null) => void;
|
|
20
59
|
error?: boolean;
|
|
@@ -28,4 +67,4 @@ declare const RadioGroupItem: React.ForwardRefExoticComponent<RadioGroupItemProp
|
|
|
28
67
|
label?: string;
|
|
29
68
|
} & React.RefAttributes<HTMLLabelElement>>;
|
|
30
69
|
|
|
31
|
-
export { RadioGroup, RadioGroupItem, type RadioGroupItemProps, RadioGroupOrientation, type RadioGroupProps };
|
|
70
|
+
export { RadioGroup, RadioGroupItem, type RadioGroupItemProps, RadioGroupOrientation, type RadioGroupProps, radioStyles };
|
package/dist/components/radio.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{c as RadioGroup,d as RadioGroupItem,a as RadioGroupOrientation,b as radioStyles}from'../chunk-6QOM3R5H.js';import'../chunk-6MK7NLF5.js';import'../chunk-HIULYFIC.js';import'../chunk-Q4CWL65C.js';import'../chunk-ICF6RQIW.js';import'../chunk-OBZIYJO7.js';
|
|
@@ -11,7 +11,7 @@ type SignaturePadProps = Omit<SignaturePadRootProps, "onDrawEnd" | "value" | "de
|
|
|
11
11
|
onChange?: (file: File | null) => void;
|
|
12
12
|
rootClassName?: string;
|
|
13
13
|
};
|
|
14
|
-
declare const SignaturePad: React.ForwardRefExoticComponent<Omit<SignaturePad$1.RootProps, "
|
|
14
|
+
declare const SignaturePad: React.ForwardRefExoticComponent<Omit<SignaturePad$1.RootProps, "onChange" | "value" | "defaultValue" | "onDrawEnd"> & {
|
|
15
15
|
label?: string;
|
|
16
16
|
required?: boolean;
|
|
17
17
|
tooltip?: string;
|
|
@@ -24,6 +24,6 @@ declare const TimePicker: React.ForwardRefExoticComponent<{
|
|
|
24
24
|
placeholder?: string;
|
|
25
25
|
value?: string | null;
|
|
26
26
|
defaultValue?: string | null;
|
|
27
|
-
} & Omit<Select.RootProps<string>, "
|
|
27
|
+
} & Omit<Select.RootProps<string>, "value" | "defaultValue" | "onValueChange" | "collection"> & React.RefAttributes<HTMLDivElement>>;
|
|
28
28
|
|
|
29
29
|
export { TimePicker, type TimePickerProps };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{e as TrackerItem,c as TrackerItemExpandableContent,d as TrackerItemFooter,b as TrackerItemHeader,a as useTrackerItem}from'../chunk-TQ6DGZQE.js';import'../chunk-FM2XHJR6.js';import'../chunk-WXXXUETS.js';import'../chunk-H2W4DMI2.js';import'../chunk-4LTLOLAM.js';import'../chunk-ORVJ7EFO.js';import'../chunk-6QOM3R5H.js';import'../chunk-E3WJNVAZ.js';import'../chunk-UIZFLYFP.js';import'../chunk-PI7DECIN.js';import'../chunk-ZMMNEYEQ.js';import'../chunk-QJOYOR4B.js';import'../chunk-VIMWKUML.js';import'../chunk-6MK7NLF5.js';import'../chunk-HIULYFIC.js';import'../chunk-AWRP67K4.js';import'../chunk-Q4CWL65C.js';import'../chunk-ICF6RQIW.js';import'../chunk-6V4ZY7YY.js';import'../chunk-C7TLKKPT.js';import'../chunk-CQI4KDR4.js';import'../chunk-P6B33GL6.js';import'../chunk-OBZIYJO7.js';
|