@klu_dev/ui-klu-green 1.2.18 → 1.2.19

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 CHANGED
@@ -827,6 +827,10 @@ button,
827
827
  .uiklu-w-full{
828
828
  width: 100%;
829
829
 
830
+ }
831
+ .uiklu-w-px{
832
+ width: 1px;
833
+
830
834
  }
831
835
  .uiklu-min-w-0{
832
836
  min-width: 0px;
@@ -1067,6 +1071,10 @@ button,
1067
1071
  .uiklu-gap-1{
1068
1072
  gap: 0.25rem;
1069
1073
 
1074
+ }
1075
+ .uiklu-gap-1\.5{
1076
+ gap: 0.375rem;
1077
+
1070
1078
  }
1071
1079
  .uiklu-gap-10{
1072
1080
  gap: 2.5rem;
@@ -1307,6 +1315,10 @@ button,
1307
1315
  .uiklu-border-b-\[1px\]{
1308
1316
  border-bottom-width: 1px;
1309
1317
 
1318
+ }
1319
+ .uiklu-border-r{
1320
+ border-right-width: 1px;
1321
+
1310
1322
  }
1311
1323
  .uiklu-border-t{
1312
1324
  border-top-width: 1px;
@@ -1343,6 +1355,10 @@ button,
1343
1355
  --tw-border-opacity: 1;
1344
1356
  border-color: hsl(var(--uiklu-destructive) / var(--tw-border-opacity, 1));
1345
1357
 
1358
+ }
1359
+ .uiklu-border-destructive\/40{
1360
+ border-color: hsl(var(--uiklu-destructive) / 0.4);
1361
+
1346
1362
  }
1347
1363
  .uiklu-border-gray-100{
1348
1364
  --tw-border-opacity: 1;
@@ -1813,6 +1829,11 @@ button,
1813
1829
  padding-left: 48px;
1814
1830
  padding-right: 48px;
1815
1831
 
1832
+ }
1833
+ .uiklu-px-\[8px\]{
1834
+ padding-left: 8px;
1835
+ padding-right: 8px;
1836
+
1816
1837
  }
1817
1838
  .uiklu-py-1{
1818
1839
  padding-top: 0.25rem;
@@ -1867,6 +1888,14 @@ button,
1867
1888
  .uiklu-pl-6{
1868
1889
  padding-left: 1.5rem;
1869
1890
 
1891
+ }
1892
+ .uiklu-pl-8{
1893
+ padding-left: 2rem;
1894
+
1895
+ }
1896
+ .uiklu-pl-\[6px\]{
1897
+ padding-left: 6px;
1898
+
1870
1899
  }
1871
1900
  .uiklu-pr-10{
1872
1901
  padding-right: 2.5rem;
@@ -1887,6 +1916,10 @@ button,
1887
1916
  .uiklu-pr-6{
1888
1917
  padding-right: 1.5rem;
1889
1918
 
1919
+ }
1920
+ .uiklu-pr-\[10px\]{
1921
+ padding-right: 10px;
1922
+
1890
1923
  }
1891
1924
  .uiklu-pt-4{
1892
1925
  padding-top: 1rem;
package/dist/index.d.ts CHANGED
@@ -6,9 +6,9 @@ import * as SelectPrimitive from '@radix-ui/react-select';
6
6
  import * as react_jsx_runtime from 'react/jsx-runtime';
7
7
  import * as ToastPrimitives from '@radix-ui/react-toast';
8
8
 
9
- type InputSize$1 = "sm" | "md" | "lg" | "full";
9
+ type InputSize = "sm" | "md" | "lg" | "full";
10
10
  interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
11
- size?: InputSize$1;
11
+ size?: InputSize;
12
12
  error?: string;
13
13
  isSearchable?: boolean;
14
14
  onSearchClick?: () => void;
@@ -246,21 +246,6 @@ interface CheckboxProps {
246
246
  }
247
247
  declare const Checkbox: React__default.FC<CheckboxProps>;
248
248
 
249
- interface LadaOption {
250
- code: string;
251
- label: string;
252
- }
253
- type InputSize = "sm" | "md" | "lg" | "full";
254
- interface InputPhoneProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange"> {
255
- size?: InputSize;
256
- error?: string;
257
- value?: string;
258
- onChange?: (value: string) => void;
259
- ladas?: LadaOption[];
260
- defaultLadaIndex?: number;
261
- }
262
- declare const InputPhone: React.ForwardRefExoticComponent<InputPhoneProps & React.RefAttributes<HTMLInputElement>>;
263
-
264
249
  type IconBadgeSize = 'sm' | 'md' | 'lg';
265
250
  interface IconBadgeProps {
266
251
  icon: React.ReactElement<{
@@ -341,4 +326,21 @@ interface SearchSelectFieldProps {
341
326
  }
342
327
  declare const SearchSelectField: ({ options, value, onChange, label, placeholder, size, error, required, disabled, className, labelClassName, }: SearchSelectFieldProps) => react_jsx_runtime.JSX.Element;
343
328
 
344
- export { BackButton, BalanceInfo, Button, Checkbox, type CheckboxProps, DetailCard, type DetailCardItem, type DetailCardProps, GridCard, IconBadge, type IconBadgeProps, Icons, Input, InputCode, InputPhone, type InputPhoneProps, type LadaOption, LoadingScreen, MobileMenuDrawer, Modal, PromoBanner, SearchSelect, SearchSelectField, type SearchSelectFieldProps, Select, SelectContent, SelectField, type SelectFieldProps, SelectGroup, SelectItem, SelectValue, SidebarTabs, TextField, type TextFieldProps, ToastAction, Toaster, Typography, useToast };
329
+ type PhoneFieldSize = "sm" | "md" | "lg" | "full";
330
+ interface LadaOption {
331
+ code: string;
332
+ label: string;
333
+ }
334
+ interface PhoneFieldProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange"> {
335
+ label: string;
336
+ size?: PhoneFieldSize;
337
+ error?: string;
338
+ value?: string;
339
+ onChange?: (value: string) => void;
340
+ ladas?: LadaOption[];
341
+ defaultLadaIndex?: number;
342
+ labelClassName?: string;
343
+ }
344
+ declare const PhoneField: React.ForwardRefExoticComponent<PhoneFieldProps & React.RefAttributes<HTMLInputElement>>;
345
+
346
+ export { BackButton, BalanceInfo, Button, Checkbox, type CheckboxProps, DetailCard, type DetailCardItem, type DetailCardProps, GridCard, IconBadge, type IconBadgeProps, Icons, Input, InputCode, type LadaOption, LoadingScreen, MobileMenuDrawer, Modal, PhoneField, type PhoneFieldProps, PromoBanner, SearchSelect, SearchSelectField, type SearchSelectFieldProps, Select, SelectContent, SelectField, type SelectFieldProps, SelectGroup, SelectItem, SelectValue, SidebarTabs, TextField, type TextFieldProps, ToastAction, Toaster, Typography, useToast };