oziko-ui-kit 0.0.59 → 0.0.61

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.
@@ -3,7 +3,7 @@ import { ReactNode } from "react";
3
3
  import { utils } from "../utils";
4
4
  import { TypeChipInput } from "../components/molecules/chip/ChipInput";
5
5
  import { RelationType } from "../components/atoms/relation-input/RelationInput";
6
- import { TypeLabeledValue, TypeSwitch } from "../index.export";
6
+ import { IconName, TypeLabeledValue, TypeSwitch } from "../index.export";
7
7
  export type TypeProperties = {
8
8
  [key: string]: {
9
9
  type: keyof typeof types;
@@ -34,6 +34,8 @@ export type TypeProperties = {
34
34
  error?: TypeInputRepresenterError | string;
35
35
  id?: string;
36
36
  relationType?: RelationType;
37
+ icon?: IconName;
38
+ placeholder?: string;
37
39
  };
38
40
  };
39
41
  export type TypeValueType = string | number | boolean | string[] | number[] | boolean[] | TypeRepresenterValue | TypeRepresenterValue[];
@@ -63,6 +65,8 @@ export type TypeInputProps<T> = {
63
65
  className?: string;
64
66
  onChange?: ({ key, value }: TypeChangeEvent<T>) => void;
65
67
  size?: TypeSwitch["size"];
68
+ icon?: IconName;
69
+ placeholder?: string;
66
70
  };
67
71
  export type TypeInputRepresenterError = {
68
72
  [key: string]: string | TypeInputRepresenterError;
package/dist/index.css CHANGED
@@ -2624,6 +2624,9 @@ input:checked + .Switch-module_slider__sHGGR::before {
2624
2624
  -webkit-line-clamp: 2 !important;
2625
2625
  padding: 0 var(--oziko-padding-md);
2626
2626
  }
2627
+ .TextArea-module_container__VXi9C .TextArea-module_icon__iVGeQ {
2628
+ color: var(--oziko-color-font-primary);
2629
+ }
2627
2630
  .Boolean-module_container__RN4yt {
2628
2631
  background-color: var(--oziko-color-input-background);
2629
2632
  border-radius: var(--oziko-border-radius-md);