sodtrack-web-ui 0.74.4 → 0.74.6

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.
Files changed (43) hide show
  1. package/dist/chunk-2AVFL232.mjs +1 -0
  2. package/dist/chunk-GBBE3RHT.mjs +1 -0
  3. package/dist/chunk-TIQUQGJW.mjs +1 -0
  4. package/dist/components/chip-expandable.d.mts +66 -5
  5. package/dist/components/chip-expandable.d.ts +66 -5
  6. package/dist/components/chip-expandable.js +1 -1
  7. package/dist/components/chip-expandable.mjs +1 -1
  8. package/dist/components/chip-form-complementary.d.mts +3 -3
  9. package/dist/components/chip-form-complementary.d.ts +3 -3
  10. package/dist/components/chip-form.d.mts +6 -6
  11. package/dist/components/chip-form.d.ts +6 -6
  12. package/dist/components/chip-status-complementary.d.mts +1 -1
  13. package/dist/components/chip-status-complementary.d.ts +1 -1
  14. package/dist/components/chip-status-table.d.mts +1 -1
  15. package/dist/components/chip-status-table.d.ts +1 -1
  16. package/dist/components/expandable-card.d.mts +2 -0
  17. package/dist/components/expandable-card.d.ts +2 -0
  18. package/dist/components/expandable-card.js +2 -2
  19. package/dist/components/expandable-card.mjs +1 -1
  20. package/dist/components/index.d.mts +2 -3
  21. package/dist/components/index.d.ts +2 -3
  22. package/dist/components/index.js +2 -2
  23. package/dist/components/index.mjs +1 -1
  24. package/dist/components/list-item-arrow.mjs +1 -1
  25. package/dist/components/list-item-button.mjs +1 -1
  26. package/dist/components/list-item-checkbox-left.d.mts +4 -2
  27. package/dist/components/list-item-checkbox-left.d.ts +4 -2
  28. package/dist/components/list-item-checkbox-left.js +2 -2
  29. package/dist/components/list-item-checkbox-left.mjs +1 -1
  30. package/dist/components/list-item-checkbox.mjs +1 -1
  31. package/dist/components/list-item.mjs +1 -1
  32. package/dist/components/tab.d.mts +2 -2
  33. package/dist/components/tab.d.ts +2 -2
  34. package/dist/styles/index.css +1 -1
  35. package/package.json +1 -1
  36. package/dist/chunk-JYOVMPGT.mjs +0 -1
  37. package/dist/chunk-KRU7R6C4.mjs +0 -1
  38. package/dist/chunk-QIFSEHMC.mjs +0 -1
  39. package/dist/chunk-ZZPJYT6F.mjs +0 -1
  40. package/dist/components/chip-status-expandable.d.mts +0 -70
  41. package/dist/components/chip-status-expandable.d.ts +0 -70
  42. package/dist/components/chip-status-expandable.js +0 -1
  43. package/dist/components/chip-status-expandable.mjs +0 -1
@@ -1,70 +0,0 @@
1
- import * as tailwind_variants from 'tailwind-variants';
2
- import { VariantProps } from 'tailwind-variants';
3
- import { LucideIcon } from 'lucide-react';
4
- import { FC } from 'react';
5
-
6
- declare const ChipStatusExpandableVariants: readonly ["success", "info", "warning", "error", "generic", "neutral"];
7
- declare const ChipStatusExpandableTypes: readonly ["light", "full"];
8
- type ChipStatusExpandableVariantType = (typeof ChipStatusExpandableVariants)[number];
9
- type ChipStatusExpandableTypeType = (typeof ChipStatusExpandableTypes)[number];
10
- declare const chipStatusExpandable: tailwind_variants.TVReturnType<{
11
- variant: {
12
- success: string;
13
- info: string;
14
- warning: string;
15
- error: string;
16
- generic: string;
17
- neutral: string;
18
- };
19
- type: {
20
- light: string;
21
- full: string;
22
- };
23
- }, {
24
- container: string;
25
- icon: string;
26
- text: string;
27
- }, undefined, {
28
- variant: {
29
- success: string;
30
- info: string;
31
- warning: string;
32
- error: string;
33
- generic: string;
34
- neutral: string;
35
- };
36
- type: {
37
- light: string;
38
- full: string;
39
- };
40
- }, {
41
- container: string;
42
- icon: string;
43
- text: string;
44
- }, tailwind_variants.TVReturnType<{
45
- variant: {
46
- success: string;
47
- info: string;
48
- warning: string;
49
- error: string;
50
- generic: string;
51
- neutral: string;
52
- };
53
- type: {
54
- light: string;
55
- full: string;
56
- };
57
- }, {
58
- container: string;
59
- icon: string;
60
- text: string;
61
- }, undefined, unknown, unknown, undefined>>;
62
- type ChipStatusExpandableProps = {
63
- label: string;
64
- variant: ChipStatusExpandableVariantType;
65
- type: ChipStatusExpandableTypeType;
66
- StartIcon?: LucideIcon;
67
- } & Omit<VariantProps<typeof chipStatusExpandable>, "size"> & Required<Pick<VariantProps<typeof chipStatusExpandable>, "variant">> & Required<Pick<VariantProps<typeof chipStatusExpandable>, "type">>;
68
- declare const ChipStatusExpandable: FC<ChipStatusExpandableProps>;
69
-
70
- export { ChipStatusExpandable, type ChipStatusExpandableProps, type ChipStatusExpandableTypeType, ChipStatusExpandableTypes, type ChipStatusExpandableVariantType, ChipStatusExpandableVariants };
@@ -1,70 +0,0 @@
1
- import * as tailwind_variants from 'tailwind-variants';
2
- import { VariantProps } from 'tailwind-variants';
3
- import { LucideIcon } from 'lucide-react';
4
- import { FC } from 'react';
5
-
6
- declare const ChipStatusExpandableVariants: readonly ["success", "info", "warning", "error", "generic", "neutral"];
7
- declare const ChipStatusExpandableTypes: readonly ["light", "full"];
8
- type ChipStatusExpandableVariantType = (typeof ChipStatusExpandableVariants)[number];
9
- type ChipStatusExpandableTypeType = (typeof ChipStatusExpandableTypes)[number];
10
- declare const chipStatusExpandable: tailwind_variants.TVReturnType<{
11
- variant: {
12
- success: string;
13
- info: string;
14
- warning: string;
15
- error: string;
16
- generic: string;
17
- neutral: string;
18
- };
19
- type: {
20
- light: string;
21
- full: string;
22
- };
23
- }, {
24
- container: string;
25
- icon: string;
26
- text: string;
27
- }, undefined, {
28
- variant: {
29
- success: string;
30
- info: string;
31
- warning: string;
32
- error: string;
33
- generic: string;
34
- neutral: string;
35
- };
36
- type: {
37
- light: string;
38
- full: string;
39
- };
40
- }, {
41
- container: string;
42
- icon: string;
43
- text: string;
44
- }, tailwind_variants.TVReturnType<{
45
- variant: {
46
- success: string;
47
- info: string;
48
- warning: string;
49
- error: string;
50
- generic: string;
51
- neutral: string;
52
- };
53
- type: {
54
- light: string;
55
- full: string;
56
- };
57
- }, {
58
- container: string;
59
- icon: string;
60
- text: string;
61
- }, undefined, unknown, unknown, undefined>>;
62
- type ChipStatusExpandableProps = {
63
- label: string;
64
- variant: ChipStatusExpandableVariantType;
65
- type: ChipStatusExpandableTypeType;
66
- StartIcon?: LucideIcon;
67
- } & Omit<VariantProps<typeof chipStatusExpandable>, "size"> & Required<Pick<VariantProps<typeof chipStatusExpandable>, "variant">> & Required<Pick<VariantProps<typeof chipStatusExpandable>, "type">>;
68
- declare const ChipStatusExpandable: FC<ChipStatusExpandableProps>;
69
-
70
- export { ChipStatusExpandable, type ChipStatusExpandableProps, type ChipStatusExpandableTypeType, ChipStatusExpandableTypes, type ChipStatusExpandableVariantType, ChipStatusExpandableVariants };
@@ -1 +0,0 @@
1
- 'use strict';var tailwindVariants=require('tailwind-variants'),jsxRuntime=require('react/jsx-runtime');var g=["success","info","warning","error","generic","neutral"],y=["light","full"],l=tailwindVariants.tv({slots:{container:"group ml-auto flex h-4.5 w-8 min-w-8 origin-right items-center justify-center overflow-hidden rounded-full px-2 py-0.25 transition-all duration-300 group-hover:justify-start hover:w-fit",icon:"h-3.5 w-3.5 shrink-0 transition-all duration-300",text:"w-0 overflow-hidden text-xs leading-[130%] whitespace-nowrap opacity-0 transition-all duration-300 group-hover:ml-2 group-hover:w-auto group-hover:opacity-100"},variants:{variant:{success:"",info:"",warning:"",error:"",generic:"",neutral:""},type:{light:"",full:""}},compoundVariants:[{variant:"success",type:"light",className:{container:"bg-success-100 text-success-700",icon:"text-success-700",text:"text-success-700"}},{variant:"success",type:"full",className:{container:"bg-success-300",icon:"text-neutral-50",text:"text-neutral-50"}},{variant:"info",type:"light",className:{container:"bg-info-100",icon:"text-info-700",text:"text-info-700"}},{variant:"info",type:"full",className:{container:"bg-info-300",icon:"text-neutral-50",text:"text-neutral-50"}},{variant:"warning",type:"light",className:{container:"bg-warning-100",icon:"text-warning-700",text:"text-warning-700"}},{variant:"warning",type:"full",className:{container:"bg-warning-500",icon:"text-warning-900",text:"text-warning-900"}},{variant:"error",type:"light",className:{container:"bg-error-100",icon:"text-error-700",text:"text-error-700"}},{variant:"error",type:"full",className:{container:"bg-error-500",icon:"text-neutral-50",text:"text-neutral-50"}},{variant:"generic",type:"light",className:{container:"bg-primary-200",icon:"text-primary-600",text:"text-primary-600"}},{variant:"generic",type:"full",className:{container:"bg-primary-500",icon:"text-neutral-50",text:"text-neutral-50"}},{variant:"neutral",type:"light",className:{container:"bg-neutral-100",icon:"text-neutral-700",text:"text-neutral-700"}},{variant:"neutral",type:"full",className:{container:"bg-neutral-300",icon:"text-neutral-100",text:"text-neutral-100"}}]}),h=({label:e,variant:n,type:r,StartIcon:t})=>{let{container:i,icon:s,text:o}=l({variant:n,type:r});return jsxRuntime.jsxs("div",{className:i(),children:[t&&jsxRuntime.jsx(t,{className:s()}),jsxRuntime.jsx("span",{className:o(),children:e})]})};exports.ChipStatusExpandable=h;exports.ChipStatusExpandableTypes=y;exports.ChipStatusExpandableVariants=g;
@@ -1 +0,0 @@
1
- export{c as ChipStatusExpandable,b as ChipStatusExpandableTypes,a as ChipStatusExpandableVariants}from'../chunk-QIFSEHMC.mjs';