Skip to content

Commit

Permalink
Merge pull request smeup#2334 from smeup/feat/adapter-fix/fix-celldata
Browse files Browse the repository at this point in the history
feat/fix-cell data
  • Loading branch information
lucafoscili authored Dec 24, 2024
2 parents 0a9400a + 6e1a576 commit ef69ba8
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 92 deletions.
24 changes: 12 additions & 12 deletions packages/ketchup/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export namespace Components {
*/
"disabled": boolean;
/**
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
* @default ItemsDisplayMode.DESCRIPTION
*/
"displayMode": ItemsDisplayMode;
Expand Down Expand Up @@ -311,7 +311,7 @@ export namespace Components {
*/
"refresh": () => Promise<void>;
/**
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
* @default ItemsDisplayMode.CODE
*/
"selectMode": ItemsDisplayMode;
Expand Down Expand Up @@ -1309,7 +1309,7 @@ export namespace Components {
*/
"disabled": boolean;
/**
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
*/
"displayMode": ItemsDisplayMode;
/**
Expand Down Expand Up @@ -1370,7 +1370,7 @@ export namespace Components {
*/
"refresh": () => Promise<void>;
/**
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
*/
"selectMode": ItemsDisplayMode;
/**
Expand Down Expand Up @@ -2037,7 +2037,7 @@ export namespace Components {
*/
"disabled": boolean;
/**
* Sets how to show the selected item value. Suported values: "code", "description", "both".
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
* @default ItemsDisplayMode.DESCRIPTION
*/
"displayMode": ItemsDisplayMode;
Expand Down Expand Up @@ -2081,7 +2081,7 @@ export namespace Components {
*/
"refresh": () => Promise<void>;
/**
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
* @default ItemsDisplayMode.CODE
*/
"selectMode": ItemsDisplayMode;
Expand Down Expand Up @@ -6219,7 +6219,7 @@ declare namespace LocalJSX {
*/
"disabled"?: boolean;
/**
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
* @default ItemsDisplayMode.DESCRIPTION
*/
"displayMode"?: ItemsDisplayMode;
Expand Down Expand Up @@ -6285,7 +6285,7 @@ declare namespace LocalJSX {
*/
"readOnly"?: boolean;
/**
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
* @default ItemsDisplayMode.CODE
*/
"selectMode"?: ItemsDisplayMode;
Expand Down Expand Up @@ -7167,7 +7167,7 @@ declare namespace LocalJSX {
*/
"disabled"?: boolean;
/**
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
*/
"displayMode"?: ItemsDisplayMode;
/**
Expand Down Expand Up @@ -7220,7 +7220,7 @@ declare namespace LocalJSX {
*/
"readOnly"?: boolean;
/**
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
*/
"selectMode"?: ItemsDisplayMode;
/**
Expand Down Expand Up @@ -7776,7 +7776,7 @@ declare namespace LocalJSX {
*/
"disabled"?: boolean;
/**
* Sets how to show the selected item value. Suported values: "code", "description", "both".
* Sets how to show the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
* @default ItemsDisplayMode.DESCRIPTION
*/
"displayMode"?: ItemsDisplayMode;
Expand Down Expand Up @@ -7826,7 +7826,7 @@ declare namespace LocalJSX {
*/
"placeholderIcon"?: string;
/**
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both".
* Sets how to return the selected item value. Suported values: "CodeOnly", "DescOnly", "Both" or "CodeAndDesc" and "DescAndCode".
* @default ItemsDisplayMode.CODE
*/
"selectMode"?: ItemsDisplayMode;
Expand Down
Loading

0 comments on commit ef69ba8

Please sign in to comment.