@inkeep/cxkit-styled 0.5.91 → 0.5.93

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.d.cts CHANGED
@@ -21,9 +21,9 @@ import { RefAttributes } from 'react';
21
21
  import { ScrollAreaCornerProps } from '@radix-ui/react-scroll-area';
22
22
  import { ScrollAreaViewportProps } from '@radix-ui/react-scroll-area';
23
23
  import { SearchBarPrimitive } from '@inkeep/cxkit-primitives';
24
- import { SelectItemTextProps } from '@radix-ui/react-select';
25
- import { SelectProps } from '@radix-ui/react-select';
26
- import { SelectValueProps } from '@radix-ui/react-select';
24
+ import { SelectItemTextProps } from '@inkeep/cxkit-primitives/src/atoms/select';
25
+ import { SelectSharedProps } from '@inkeep/cxkit-primitives/src/atoms/select';
26
+ import { SelectValueProps } from '@inkeep/cxkit-primitives/src/atoms/select';
27
27
  import { SidebarChatPrimitive } from '@inkeep/cxkit-primitives';
28
28
  import { TextareaAutosizeProps } from 'react-textarea-autosize';
29
29
  import { TextareaHTMLAttributes } from 'react';
@@ -396,7 +396,15 @@ declare const EmbeddedChatFormFieldFile: ({ className, ...props }: React.Compone
396
396
 
397
397
  declare const EmbeddedChatFormFieldLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldLabel>) => JSX.Element;
398
398
 
399
- declare const EmbeddedChatFormFieldSelect: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< SelectProps, "_id"> & Partial<Pick< SelectProps, "_id">>>>) => JSX.Element;
399
+ declare const EmbeddedChatFormFieldSelect: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< SelectSharedProps & {
400
+ value?: string;
401
+ defaultValue?: string;
402
+ onValueChange?(value: string): void;
403
+ }, "_id"> & Partial<Pick< SelectSharedProps & {
404
+ value?: string;
405
+ defaultValue?: string;
406
+ onValueChange?(value: string): void;
407
+ }, "_id">>>>) => JSX.Element;
400
408
 
401
409
  declare const EmbeddedChatFormFieldSelectContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldSelectContent>) => JSX.Element;
402
410
 
@@ -860,7 +868,15 @@ declare const IntelligentFormFieldFile: ({ className, ...props }: React.Componen
860
868
 
861
869
  declare const IntelligentFormFieldLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldLabel>) => JSX.Element;
862
870
 
863
- declare const IntelligentFormFieldSelect: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectProps, "_id"> & Partial<Pick< SelectProps, "_id">>>>) => JSX.Element;
871
+ declare const IntelligentFormFieldSelect: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectSharedProps & {
872
+ value?: string;
873
+ defaultValue?: string;
874
+ onValueChange?(value: string): void;
875
+ }, "_id"> & Partial<Pick< SelectSharedProps & {
876
+ value?: string;
877
+ defaultValue?: string;
878
+ onValueChange?(value: string): void;
879
+ }, "_id">>>>) => JSX.Element;
864
880
 
865
881
  declare const IntelligentFormFieldSelectContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectContent>) => JSX.Element;
866
882
 
package/dist/index.d.ts CHANGED
@@ -21,9 +21,9 @@ import { RefAttributes } from 'react';
21
21
  import { ScrollAreaCornerProps } from '@radix-ui/react-scroll-area';
22
22
  import { ScrollAreaViewportProps } from '@radix-ui/react-scroll-area';
23
23
  import { SearchBarPrimitive } from '@inkeep/cxkit-primitives';
24
- import { SelectItemTextProps } from '@radix-ui/react-select';
25
- import { SelectProps } from '@radix-ui/react-select';
26
- import { SelectValueProps } from '@radix-ui/react-select';
24
+ import { SelectItemTextProps } from '@inkeep/cxkit-primitives/src/atoms/select';
25
+ import { SelectSharedProps } from '@inkeep/cxkit-primitives/src/atoms/select';
26
+ import { SelectValueProps } from '@inkeep/cxkit-primitives/src/atoms/select';
27
27
  import { SidebarChatPrimitive } from '@inkeep/cxkit-primitives';
28
28
  import { TextareaAutosizeProps } from 'react-textarea-autosize';
29
29
  import { TextareaHTMLAttributes } from 'react';
@@ -396,7 +396,15 @@ declare const EmbeddedChatFormFieldFile: ({ className, ...props }: React.Compone
396
396
 
397
397
  declare const EmbeddedChatFormFieldLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldLabel>) => JSX.Element;
398
398
 
399
- declare const EmbeddedChatFormFieldSelect: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< SelectProps, "_id"> & Partial<Pick< SelectProps, "_id">>>>) => JSX.Element;
399
+ declare const EmbeddedChatFormFieldSelect: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< SelectSharedProps & {
400
+ value?: string;
401
+ defaultValue?: string;
402
+ onValueChange?(value: string): void;
403
+ }, "_id"> & Partial<Pick< SelectSharedProps & {
404
+ value?: string;
405
+ defaultValue?: string;
406
+ onValueChange?(value: string): void;
407
+ }, "_id">>>>) => JSX.Element;
400
408
 
401
409
  declare const EmbeddedChatFormFieldSelectContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldSelectContent>) => JSX.Element;
402
410
 
@@ -860,7 +868,15 @@ declare const IntelligentFormFieldFile: ({ className, ...props }: React.Componen
860
868
 
861
869
  declare const IntelligentFormFieldLabel: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldLabel>) => JSX.Element;
862
870
 
863
- declare const IntelligentFormFieldSelect: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectProps, "_id"> & Partial<Pick< SelectProps, "_id">>>>) => JSX.Element;
871
+ declare const IntelligentFormFieldSelect: (props: ComponentPropsWithRef< ForwardRefExoticComponent< PolymorphicProps & Omit< SelectSharedProps & {
872
+ value?: string;
873
+ defaultValue?: string;
874
+ onValueChange?(value: string): void;
875
+ }, "_id"> & Partial<Pick< SelectSharedProps & {
876
+ value?: string;
877
+ defaultValue?: string;
878
+ onValueChange?(value: string): void;
879
+ }, "_id">>>>) => JSX.Element;
864
880
 
865
881
  declare const IntelligentFormFieldSelectContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldSelectContent>) => JSX.Element;
866
882
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/cxkit-styled",
3
- "version": "0.5.91",
3
+ "version": "0.5.93",
4
4
  "description": "",
5
5
  "license": "Inkeep, Inc. Customer License (IICL) v1.1",
6
6
  "homepage": "",
@@ -39,7 +39,7 @@
39
39
  "clsx": "2.1.1",
40
40
  "merge-anything": "5.1.7",
41
41
  "tailwind-merge": "2.6.0",
42
- "@inkeep/cxkit-primitives": "0.5.91"
42
+ "@inkeep/cxkit-primitives": "0.5.93"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@biomejs/biome": "1.9.4",
@@ -59,8 +59,8 @@
59
59
  "typescript": "5.7.3",
60
60
  "vite": "5.4.11",
61
61
  "vite-plugin-dts": "4.4.0",
62
- "@inkeep/cxkit-theme": "0.5.91",
63
- "@inkeep/cxkit-types": "0.5.91"
62
+ "@inkeep/cxkit-theme": "0.5.93",
63
+ "@inkeep/cxkit-types": "0.5.93"
64
64
  },
65
65
  "module": "dist/index.js",
66
66
  "types": "dist/index.d.ts",