oziko-ui-kit 0.0.139 → 0.0.140

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 (37) hide show
  1. package/dist/assets/DMSans-Italic-VariableFont_opsz,wght.ttf +0 -0
  2. package/dist/assets/DMSans-VariableFont_opsz,wght.ttf +0 -0
  3. package/dist/assets/JetBrainsMono-Italic-VariableFont_wght.ttf +0 -0
  4. package/dist/assets/JetBrainsMono-VariableFont_wght.ttf +0 -0
  5. package/dist/assets/fonts/inter/DMSans-Italic-VariableFont_opsz,wght.ttf +0 -0
  6. package/dist/assets/fonts/inter/DMSans-VariableFont_opsz,wght.ttf +0 -0
  7. package/dist/assets/fonts/inter/JetBrainsMono-Italic-VariableFont_wght.ttf +0 -0
  8. package/dist/assets/fonts/inter/JetBrainsMono-VariableFont_wght.ttf +0 -0
  9. package/dist/assets/inter/DMSans-Italic-VariableFont_opsz,wght.ttf +0 -0
  10. package/dist/assets/inter/DMSans-VariableFont_opsz,wght.ttf +0 -0
  11. package/dist/assets/inter/JetBrainsMono-Italic-VariableFont_wght.ttf +0 -0
  12. package/dist/assets/inter/JetBrainsMono-VariableFont_wght.ttf +0 -0
  13. package/dist/components/atoms/button/Button.d.ts +1 -1
  14. package/dist/components/atoms/divider/Divider.d.ts +6 -0
  15. package/dist/components/atoms/icon/Icon.d.ts +1 -0
  16. package/dist/components/atoms/inputs/minimized/boolean/Boolean.d.ts +0 -2
  17. package/dist/components/atoms/inputs/normal/boolean/Boolean.d.ts +6 -11
  18. package/dist/components/atoms/inputs/normal/location/Location.d.ts +2 -5
  19. package/dist/components/atoms/inputs/normal/object/ObjectInput.d.ts +6 -4
  20. package/dist/components/atoms/inputs/normal/rich-text/RichText.d.ts +0 -4
  21. package/dist/components/atoms/inputs/normal/storage/Storage.d.ts +0 -16
  22. package/dist/components/atoms/inputs/normal/text-area/TextArea.d.ts +0 -7
  23. package/dist/components/atoms/select-option/SelectOption.d.ts +1 -0
  24. package/dist/components/molecules/accordion/Accordion.d.ts +2 -22
  25. package/dist/components/molecules/accordion/Accordion.types.d.ts +59 -0
  26. package/dist/components/molecules/accordion/AccordionElement.d.ts +4 -17
  27. package/dist/components/molecules/navigator-item/NavigatorItem.d.ts +1 -0
  28. package/dist/components/molecules/select/Select.d.ts +15 -4
  29. package/dist/components/organisms/table/Table.d.ts +14 -6
  30. package/dist/custom-hooks/useInputRepresenter.d.ts +2 -1
  31. package/dist/index.css +2504 -940
  32. package/dist/index.export.d.ts +3 -0
  33. package/dist/index.mjs +16 -16
  34. package/dist/index.mjs.map +1 -1
  35. package/dist/utils/iconList.d.ts +1 -1
  36. package/dist/utils/spicaSvgIcons.d.ts +75 -0
  37. package/package.json +1 -1
@@ -5,7 +5,7 @@ import { TypeFlexDimension } from "../../../utils/interface";
5
5
  export type TypeButton = {
6
6
  fullWidth?: boolean;
7
7
  containerProps?: TypeFluidContainer;
8
- shape?: "default" | "circle" | "round";
8
+ shape?: "default" | "circle" | "round" | "chip";
9
9
  variant?: "solid" | "outlined" | "dashed" | "filled" | "text" | "link" | "icon";
10
10
  color?: "primary" | "default" | "success" | "danger" | "soft" | "transparent";
11
11
  loading?: boolean;
@@ -0,0 +1,6 @@
1
+ import { HTMLAttributes } from "react";
2
+ export type TypeDivider = {
3
+ label?: string;
4
+ } & HTMLAttributes<HTMLDivElement>;
5
+ declare const _default: import("react").NamedExoticComponent<TypeDivider>;
6
+ export default _default;
@@ -4,6 +4,7 @@ export type TypeIcon = {
4
4
  name: IconName;
5
5
  className?: string;
6
6
  size?: IconSize;
7
+ color?: string;
7
8
  };
8
9
  declare const _default: React.NamedExoticComponent<TypeIcon>;
9
10
  export default _default;
@@ -1,8 +1,6 @@
1
- import { TypeFlexElement } from "../../../flex-element/FlexElement";
2
1
  export type TypeInputBooleanMinimized = {
3
2
  checked: boolean;
4
3
  disabled?: boolean;
5
- containerProps?: TypeFlexElement;
6
4
  onChange?: (checked: boolean) => void;
7
5
  };
8
6
  declare const _default: import("react").NamedExoticComponent<TypeInputBooleanMinimized>;
@@ -1,20 +1,15 @@
1
- import { TypeText } from "../../../text/Text";
2
- import { TypeFluidContainer } from "../../../fluid-container/FluidContainer";
3
- import { TypeSwitch } from "../../../switch/Switch";
4
- import { TypeFlexElement } from "../../../flex-element/FlexElement";
1
+ import { IconName } from "../../../../../utils/iconList";
5
2
  export type TypeBooleanInput = {
6
3
  checked?: boolean;
7
4
  label?: string;
5
+ hideLabel?: boolean;
8
6
  disabled?: boolean;
9
- containerProps?: TypeFluidContainer;
10
- switchContainerProps?: TypeFlexElement;
11
- suffixProps?: TypeFlexElement;
12
- rootProps?: TypeFlexElement;
13
- labelProps?: TypeText;
14
7
  description?: string;
15
8
  onChange?: (checked: boolean) => void;
16
- size?: TypeSwitch["size"];
9
+ iconName?: IconName;
17
10
  className?: string;
18
11
  };
19
- declare const _default: import("react").NamedExoticComponent<TypeBooleanInput>;
12
+ declare const _default: import("react").NamedExoticComponent<TypeBooleanInput & {
13
+ ref?: import("react").RefObject<HTMLDivElement | null>;
14
+ } & import("../../../../../index.export").TypeFlexContainer & import("../../../../../index.export").TypeFlexDimension & Omit<import("react").HTMLAttributes<HTMLDivElement>, "prefix" | "onChange">>;
20
15
  export default _default;
@@ -1,13 +1,10 @@
1
1
  import React from "react";
2
- import "../../../../../../node_modules/leaflet/dist/leaflet.css";
3
2
  import { TypeCoordinates } from "../../../map/Map";
4
3
  export type TypeLocationInput = {
5
4
  coordinates?: TypeCoordinates;
6
5
  title?: string;
7
6
  onChange?: (coordinates: TypeCoordinates) => void;
8
- description?: string;
7
+ className?: string;
9
8
  };
10
- declare const _default: React.NamedExoticComponent<TypeLocationInput & {
11
- ref?: React.RefObject<HTMLDivElement | null>;
12
- } & import("../../../../../index.export").TypeFlexContainer & import("../../../../../index.export").TypeFlexDimension & Omit<React.HTMLAttributes<HTMLDivElement>, "prefix" | "onChange">>;
9
+ declare const _default: React.NamedExoticComponent<TypeLocationInput>;
13
10
  export default _default;
@@ -1,6 +1,7 @@
1
- import { TypeText } from "../../../text/Text";
2
- import { TypeFlexElement } from "../../../flex-element/FlexElement";
1
+ import React from "react";
3
2
  import { TypeInputRepresenterError, TypeProperties, TypeRepresenterValue } from "../../../../../custom-hooks/useInputRepresenter";
3
+ import { TypeFlexElement } from "../../../flex-element/FlexElement";
4
+ import { TypeText } from "../../../text/Text";
4
5
  export type TypeObjectInput = {
5
6
  value?: TypeRepresenterValue;
6
7
  properties: TypeProperties;
@@ -11,6 +12,7 @@ export type TypeObjectInput = {
11
12
  helperTextProps?: TypeText;
12
13
  onChange?: (value: any) => void;
13
14
  errors?: TypeInputRepresenterError;
14
- } & TypeFlexElement;
15
- declare const _default: import("react").NamedExoticComponent<TypeObjectInput>;
15
+ className?: string;
16
+ };
17
+ declare const _default: React.NamedExoticComponent<TypeObjectInput>;
16
18
  export default _default;
@@ -1,14 +1,10 @@
1
1
  import { JSX } from "react";
2
2
  import { TypeFlexElement } from "../../../flex-element/FlexElement";
3
3
  import { IconName } from "../../../../../utils/iconList";
4
- import { TypeFluidContainer } from "../../../fluid-container/FluidContainer";
5
4
  export type TypeRichTextInput = {
6
5
  headerProps?: {
7
6
  icon?: IconName;
8
7
  label?: string;
9
- iconProps?: TypeFlexElement;
10
- labelProps?: TypeFlexElement;
11
- container?: TypeFluidContainer;
12
8
  };
13
9
  value?: string;
14
10
  className?: string;
@@ -1,6 +1,5 @@
1
1
  import { ReactNode } from "react";
2
2
  import { TypeFlexElement } from "../../../flex-element/FlexElement";
3
- import { TypeFluidContainer } from "../../../fluid-container/FluidContainer";
4
3
  import { TypeText } from "../../../text/Text";
5
4
  import { IconName } from "../../../../../utils/iconList";
6
5
  import { TypeFile } from "../../../../../utils/interface";
@@ -8,30 +7,15 @@ export type TypeStorageInput = {
8
7
  label?: string;
9
8
  file?: TypeFile;
10
9
  containerProps?: TypeFlexElement;
11
- topContainerProps?: {
12
- container?: TypeFluidContainer;
13
- root?: TypeFlexElement;
14
- rootChildren?: TypeText;
15
- suffix?: TypeFlexElement;
16
- suffixChildren?: TypeFlexElement;
17
- editIcon?: IconName;
18
- deleteIcon?: IconName;
19
- hideActions?: boolean;
20
- disableEditIcon?: boolean;
21
- disableDeleteIcon?: boolean;
22
- };
23
10
  dropzoneContainerProps?: {
24
- container?: TypeFlexElement;
25
11
  uploadIcon?: IconName;
26
12
  previewIcon?: IconName;
27
13
  description?: ReactNode;
28
14
  };
29
15
  description?: string;
30
16
  errorMessage?: string;
31
- helperTextContainerProps?: TypeFlexElement;
32
17
  helperTextProps?: TypeText;
33
18
  onUpload?: (file: File) => void;
34
- onDelete?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
35
19
  onPreview?: () => void;
36
20
  onClickShowFileSelect?: () => void;
37
21
  };
@@ -1,20 +1,13 @@
1
1
  import { ChangeEventHandler } from "react";
2
2
  import { TypeFlexElement } from "../../../flex-element/FlexElement";
3
- import { TypeFluidContainer } from "../../../fluid-container/FluidContainer";
4
3
  import { IconName } from "../../../../../utils/iconList";
5
4
  export type TypeTextArea = {
6
5
  value?: string;
7
6
  textAreaProps?: React.TextareaHTMLAttributes<HTMLTextAreaElement> & {
8
7
  rows?: number;
9
8
  cols?: number;
10
- ref?: React.RefObject<HTMLTextAreaElement>;
11
9
  };
12
- textAreaContainerProps?: TypeFlexElement;
13
10
  containerProps?: TypeFlexElement;
14
- titlePrefixProps?: TypeFlexElement;
15
- titleRootProps?: TypeFlexElement;
16
- titleSuffixProps?: TypeFlexElement;
17
- titleContainerProps?: TypeFluidContainer;
18
11
  title?: string;
19
12
  icon?: IconName;
20
13
  description?: string;
@@ -1,6 +1,7 @@
1
1
  export type TypeLabeledValue = {
2
2
  value: string | number;
3
3
  label: string;
4
+ description?: string;
4
5
  };
5
6
  export type TypeSelectOption = {
6
7
  option: string | number | TypeLabeledValue;
@@ -1,25 +1,5 @@
1
1
  import React from "react";
2
- import { TypeFluidContainer } from "../../atoms/fluid-container/FluidContainer";
3
- import { TypeFlexElement } from "../../atoms/flex-element/FlexElement";
4
- export type TypeAccordionItem = {
5
- title: React.ReactNode;
6
- content: React.ReactNode;
7
- icon?: React.ReactNode;
8
- className?: string;
9
- };
10
- export type TypeAccordionGroup = TypeFlexElement & {
11
- items: TypeAccordionItem[];
12
- defaultActiveIndex?: number;
13
- icon?: React.ReactNode;
14
- bordered?: boolean;
15
- header?: TypeFluidContainer;
16
- openClassName?: string;
17
- itemClassName?: string;
18
- contentClassName?: string;
19
- headerClassName?: string;
20
- suffixOnHover?: boolean;
21
- noBackgroundOnFocus?: boolean;
22
- disableSuffixIcon?: boolean;
23
- };
2
+ import { TypeAccordionGroup, TypeAccordionItem } from "./Accordion.types";
3
+ export type { TypeAccordionItem, TypeAccordionGroup };
24
4
  declare const _default: React.NamedExoticComponent<TypeAccordionGroup>;
25
5
  export default _default;
@@ -0,0 +1,59 @@
1
+ import { TypeFluidContainer } from "../../atoms/fluid-container/FluidContainer";
2
+ import { TypeFlexElement } from "../../atoms/flex-element/FlexElement";
3
+ export type TypeAccordionItem = {
4
+ title: React.ReactNode;
5
+ content: React.ReactNode;
6
+ icon?: React.ReactNode;
7
+ className?: string;
8
+ headingPadding?: string;
9
+ bodyPadding?: string;
10
+ borderBottom?: boolean;
11
+ defaultOpen?: boolean;
12
+ disabled?: boolean;
13
+ };
14
+ export type TypeAccordionElement = {
15
+ title: React.ReactNode;
16
+ children: React.ReactNode;
17
+ isOpen: boolean;
18
+ onClick: () => void;
19
+ icon?: React.ReactNode;
20
+ bordered?: boolean;
21
+ openClassName?: string;
22
+ itemClassName?: string;
23
+ contentClassName?: string;
24
+ headerClassName?: string;
25
+ suffixOnHover?: boolean;
26
+ noBackgroundOnFocus?: boolean;
27
+ disableSuffixIcon?: boolean;
28
+ disabled?: boolean;
29
+ borderBottom?: boolean;
30
+ headingPadding?: string;
31
+ bodyPadding?: string;
32
+ titleSize?: string;
33
+ titleWeight?: number | string;
34
+ chevronSize?: number;
35
+ mountContent?: "always" | "lazy";
36
+ };
37
+ export type TypeAccordionGroup = TypeFlexElement & {
38
+ items: TypeAccordionItem[];
39
+ defaultActiveIndex?: number;
40
+ icon?: React.ReactNode;
41
+ bordered?: boolean;
42
+ header?: TypeFluidContainer;
43
+ openClassName?: string;
44
+ itemClassName?: string;
45
+ contentClassName?: string;
46
+ headerClassName?: string;
47
+ suffixOnHover?: boolean;
48
+ noBackgroundOnFocus?: boolean;
49
+ disableSuffixIcon?: boolean;
50
+ multiOpen?: boolean;
51
+ borderBottom?: boolean;
52
+ headingPadding?: string;
53
+ bodyPadding?: string;
54
+ titleSize?: string;
55
+ titleWeight?: number | string;
56
+ chevronSize?: number;
57
+ mountContent?: "always" | "lazy";
58
+ gap?: number;
59
+ };
@@ -1,18 +1,5 @@
1
- import { IconName } from "../../../utils/iconList";
2
- export type TypeAccordionElement = {
3
- title: React.ReactNode;
4
- children: React.ReactNode;
5
- icon?: React.ReactNode | IconName;
6
- isOpen: boolean;
7
- bordered?: boolean;
8
- openClassName?: string;
9
- itemClassName?: string;
10
- contentClassName?: string;
11
- headerClassName?: string;
12
- suffixOnHover?: boolean;
13
- noBackgroundOnFocus?: boolean;
14
- onClick: () => void;
15
- disableSuffixIcon?: boolean;
16
- };
17
- declare const _default: import("react").NamedExoticComponent<TypeAccordionElement>;
1
+ import React from "react";
2
+ import { TypeAccordionElement } from "./Accordion.types";
3
+ export type { TypeAccordionElement };
4
+ declare const _default: React.NamedExoticComponent<TypeAccordionElement>;
18
5
  export default _default;
@@ -9,6 +9,7 @@ export type TypeNavigatorItem = {
9
9
  label: string;
10
10
  prefixIcon?: IconName;
11
11
  suffixIcons?: SuffixIcon[];
12
+ isActive?: boolean;
12
13
  } & TypeFluidContainer;
13
14
  declare const _default: React.NamedExoticComponent<TypeNavigatorItem>;
14
15
  export default _default;
@@ -1,19 +1,30 @@
1
- import { Ref, RefObject } from "react";
1
+ import React, { Ref, RefObject } from "react";
2
2
  import { TypeFluidContainer } from "../../atoms/fluid-container/FluidContainer";
3
3
  import { TypeLabeledValue } from "../../atoms/select-option/SelectOption";
4
+ import { IconName } from "../../../utils/iconList";
4
5
  export type TypeValue = string | number | (string | number)[];
5
6
  export type TypeSelectRef = {
6
7
  toggleDropdown: (toggleValue?: boolean) => void;
7
8
  clear: () => void;
8
9
  };
10
+ export type TypeOptionGroup = {
11
+ label: string;
12
+ items: (string | number | TypeLabeledValue)[];
13
+ };
9
14
  export type TypeSelect = {
10
15
  value?: TypeValue;
11
- options: (string | number | TypeLabeledValue)[];
16
+ options?: (string | number | TypeLabeledValue)[];
17
+ groups?: TypeOptionGroup[];
12
18
  placeholder?: string;
13
19
  placement?: "bottom" | "top";
14
20
  multiple?: boolean;
15
21
  maxCount?: number;
16
22
  disabled?: boolean;
23
+ clearable?: boolean;
24
+ searchable?: boolean;
25
+ showFooter?: boolean;
26
+ allowFreeform?: boolean;
27
+ prefixIcon?: IconName;
17
28
  popupClassName?: string;
18
29
  optionProps?: TypeFluidContainer;
19
30
  selectRef?: Ref<TypeSelectRef>;
@@ -21,12 +32,12 @@ export type TypeSelect = {
21
32
  onChange?: (value: TypeValue) => void;
22
33
  externalDropdownRef?: RefObject<HTMLDivElement | null>;
23
34
  };
24
- declare const _default: import("react").NamedExoticComponent<TypeSelect & {
35
+ declare const _default: React.NamedExoticComponent<TypeSelect & {
25
36
  prefix?: import("../../atoms/flex-element/FlexElement").TypeFlexElement;
26
37
  root?: import("../../atoms/flex-element/FlexElement").TypeFlexElement;
27
38
  suffix?: import("../../atoms/flex-element/FlexElement").TypeFlexElement;
28
39
  mode?: "hug" | "fill" | "middle";
29
40
  } & {
30
41
  ref?: RefObject<HTMLDivElement | null>;
31
- } & import("../../../index.export").TypeFlexContainer & import("../../../index.export").TypeFlexDimension & Omit<import("react").HTMLAttributes<HTMLDivElement>, "prefix" | "onChange">>;
42
+ } & import("../../../index.export").TypeFlexContainer & import("../../../index.export").TypeFlexDimension & Omit<React.HTMLAttributes<HTMLDivElement>, "prefix" | "onChange">>;
32
43
  export default _default;
@@ -1,8 +1,8 @@
1
1
  import React from "react";
2
- import Column from "./Column";
3
2
  export type TableColumnRenderCellParams<TRow = any> = {
4
3
  row: TRow;
5
4
  rowIndex: number;
5
+ /** @deprecated Always false — cell focus has been removed. Kept for API compatibility. */
6
6
  isFocused: boolean;
7
7
  columnKey: string;
8
8
  };
@@ -22,6 +22,7 @@ export type TableSaveToLocalStorage = {
22
22
  id: string;
23
23
  save?: boolean;
24
24
  };
25
+ /** @deprecated Cell-level keyboard navigation has been removed. */
25
26
  export type TableCellKeyDownParams = {
26
27
  columnKey: string;
27
28
  rowIndex: number;
@@ -30,12 +31,17 @@ export type TableCellKeyDownParams = {
30
31
  export type TableRowClickParams<TRow = any> = {
31
32
  row: TRow;
32
33
  rowIndex: number;
33
- event: React.MouseEvent<HTMLDivElement>;
34
+ event: React.MouseEvent<HTMLTableRowElement>;
34
35
  };
35
36
  export type TableSkeletonCellParams<TRow = any> = {
36
37
  column: TableColumn<TRow>;
37
38
  rowIndex: number;
38
39
  };
40
+ export type TableEmptyStateProps = {
41
+ title?: React.ReactNode;
42
+ description?: React.ReactNode;
43
+ actions?: React.ReactNode;
44
+ };
39
45
  export type TableProps<TRow = any> = {
40
46
  columns: TableColumn<TRow>[];
41
47
  data: TRow[];
@@ -45,13 +51,17 @@ export type TableProps<TRow = any> = {
45
51
  saveToLocalStorage?: TableSaveToLocalStorage;
46
52
  fixedColumns?: string[];
47
53
  noResizeableColumns?: string[];
48
- isCellFocusable?: (params: TableCellParams<TRow>) => boolean;
49
- onCellKeyDown?: (params: TableCellKeyDownParams) => void;
50
54
  onRowClick?: (params: TableRowClickParams<TRow>) => void;
51
55
  tableClassName?: string;
56
+ /** @deprecated No-op — columns are now <th>/<td> elements. */
52
57
  columnClassName?: string;
53
58
  headerClassName?: string;
54
59
  cellClassName?: string;
60
+ /** @deprecated Cell focus has been removed. Use onRowClick instead. */
61
+ isCellFocusable?: (params: TableCellParams<TRow>) => boolean;
62
+ /** @deprecated Cell-level keyboard navigation has been removed. */
63
+ onCellKeyDown?: (params: TableCellKeyDownParams) => void;
64
+ emptyState?: TableEmptyStateProps;
55
65
  };
56
66
  export type { TableColumnContainerProps, TableHeaderCellProps, TableCellProps, } from "./Column";
57
67
  /** @deprecated Use TableProps instead */
@@ -62,7 +72,5 @@ export type { TableColumnContainerProps as TypeColumn } from "./Column";
62
72
  export type { TableHeaderCellProps as TypeHeaderCell } from "./Column";
63
73
  /** @deprecated Use TableCellProps instead */
64
74
  export type { TableCellProps as TypeCell } from "./Column";
65
- /** @deprecated Internal type; no replacement needed */
66
- export type TypeColumnComponent = typeof Column;
67
75
  declare const Table: <TRow = any>(props: TableProps<TRow>) => React.ReactElement;
68
76
  export default Table;
@@ -43,7 +43,7 @@ export type TypeValueType = string | number | boolean | string[] | number[] | bo
43
43
  export type TypeRepresenterValue = {
44
44
  [key: string]: TypeValueType | TypeRepresenterValue;
45
45
  };
46
- export type TypeInputType = "string" | "number" | "textarea" | "date" | "boolean" | "color" | "storage" | "multiselect" | "location" | "richtext" | "object" | "array" | "chip" | "relation" | "select";
46
+ export type TypeInputType = "string" | "number" | "textarea" | "date" | "boolean" | "color" | "storage" | "multiselect" | "location" | "richtext" | "object" | "array" | "chip" | "relation" | "select" | "json";
47
47
  type TypeOptions = {
48
48
  position?: "top" | "bottom" | "left" | "right";
49
49
  index?: boolean;
@@ -119,6 +119,7 @@ export type TypeInputTypeMap = {
119
119
  chip: (props: TypeChipInputProps<string[] | number[]>) => ReactNode;
120
120
  relation: (props: TypeRelationInputProps<TypeLabeledValue[] | TypeLabeledValue>) => ReactNode;
121
121
  select: (props: TypeSelectInputProps<string>) => ReactNode;
122
+ json: (props: TypeInputProps<any>) => ReactNode;
122
123
  };
123
124
  declare const types: TypeInputTypeMap;
124
125
  type TypeUseInputRepresenter = {