@progress/kendo-themes-html 7.1.0-dev.3 → 7.1.0-dev.4

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 (62) hide show
  1. package/dist/cjs/index.js +1269 -1247
  2. package/dist/cjs/prompt/prompt-content.js +3 -4813
  3. package/dist/cjs/prompt/prompt-view.js +4862 -0
  4. package/dist/cjs/prompt/templates/prompt-more-actions.js +92 -72
  5. package/dist/cjs/prompt/templates/prompt-normal.js +89 -69
  6. package/dist/cjs/prompt/templates/prompt-output.js +120 -100
  7. package/dist/cjs/prompt/templates/prompt-popup.js +91 -71
  8. package/dist/cjs/prompt/templates/prompt-settings.js +86 -66
  9. package/dist/cjs/prompt/templates/prompt-suggestions.js +96 -76
  10. package/dist/cjs/prompt/tests/prompt-more-actions.js +98 -78
  11. package/dist/cjs/prompt/tests/prompt-normal.js +136 -116
  12. package/dist/cjs/prompt/tests/prompt-output.js +126 -106
  13. package/dist/cjs/timeline/horizontal-timeline-event.spec.js +1 -2
  14. package/dist/cjs/timeline/templates/timeline-horizontal.js +1 -2
  15. package/dist/cjs/timeline/templates/timeline-normal-alternating.js +1 -2
  16. package/dist/cjs/timeline/templates/timeline-normal-collapsible.js +1 -2
  17. package/dist/cjs/timeline/templates/timeline-normal.js +1 -2
  18. package/dist/cjs/timeline/tests/timeline-horizontal.js +1 -2
  19. package/dist/cjs/timeline/tests/timeline-vertical-alternating.js +1 -2
  20. package/dist/cjs/timeline/tests/timeline-vertical.js +1 -2
  21. package/dist/cjs/timeline/timeline-card-title.js +8 -165
  22. package/dist/cjs/timeline/timeline-card.spec.js +1 -2
  23. package/dist/cjs/timeline/timeline-track-wrap.spec.js +1 -2
  24. package/dist/cjs/timeline/vertical-timeline-event.spec.js +1 -2
  25. package/dist/esm/index.js +1095 -1073
  26. package/dist/esm/prompt/prompt-content.js +4 -4820
  27. package/dist/esm/prompt/prompt-view.js +4846 -0
  28. package/dist/esm/prompt/templates/prompt-more-actions.js +84 -64
  29. package/dist/esm/prompt/templates/prompt-normal.js +83 -63
  30. package/dist/esm/prompt/templates/prompt-output.js +108 -88
  31. package/dist/esm/prompt/templates/prompt-popup.js +86 -66
  32. package/dist/esm/prompt/templates/prompt-settings.js +77 -57
  33. package/dist/esm/prompt/templates/prompt-suggestions.js +90 -70
  34. package/dist/esm/prompt/tests/prompt-more-actions.js +89 -69
  35. package/dist/esm/prompt/tests/prompt-normal.js +123 -103
  36. package/dist/esm/prompt/tests/prompt-output.js +113 -93
  37. package/dist/esm/timeline/horizontal-timeline-event.spec.js +1 -2
  38. package/dist/esm/timeline/templates/timeline-horizontal.js +1 -2
  39. package/dist/esm/timeline/templates/timeline-normal-alternating.js +1 -2
  40. package/dist/esm/timeline/templates/timeline-normal-collapsible.js +1 -2
  41. package/dist/esm/timeline/templates/timeline-normal.js +1 -2
  42. package/dist/esm/timeline/tests/timeline-horizontal.js +1 -2
  43. package/dist/esm/timeline/tests/timeline-vertical-alternating.js +1 -2
  44. package/dist/esm/timeline/tests/timeline-vertical.js +1 -2
  45. package/dist/esm/timeline/timeline-card-title.js +8 -165
  46. package/dist/esm/timeline/timeline-card.spec.js +1 -2
  47. package/dist/esm/timeline/timeline-track-wrap.spec.js +1 -2
  48. package/dist/esm/timeline/vertical-timeline-event.spec.js +1 -2
  49. package/dist/types/prompt/index.d.ts +1 -0
  50. package/dist/types/prompt/prompt-content.d.ts +1 -7
  51. package/dist/types/prompt/prompt-view.d.ts +8 -0
  52. package/package.json +2 -2
  53. package/src/prompt/index.ts +1 -0
  54. package/src/prompt/prompt-content.tsx +1 -30
  55. package/src/prompt/prompt-view.tsx +51 -0
  56. package/src/prompt/templates/prompt-more-actions.tsx +11 -9
  57. package/src/prompt/templates/prompt-normal.tsx +4 -2
  58. package/src/prompt/templates/prompt-output.tsx +33 -31
  59. package/src/prompt/templates/prompt-popup.tsx +4 -2
  60. package/src/prompt/templates/prompt-settings.tsx +25 -23
  61. package/src/prompt/templates/prompt-suggestions.tsx +12 -10
  62. package/src/timeline/timeline-card-title.tsx +2 -2
@@ -7783,8 +7783,28 @@ var PromptHeader = (props) => {
7783
7783
  );
7784
7784
  };
7785
7785
 
7786
+ // src/prompt/prompt-content.tsx
7787
+ import { Fragment as Fragment37, jsx as jsx126 } from "react/jsx-runtime";
7788
+ var PROMPTCONTENT_CLASSNAME = `k-prompt-content`;
7789
+ var PromptContent = (props) => {
7790
+ const {
7791
+ ...other
7792
+ } = props;
7793
+ return /* @__PURE__ */ jsx126(
7794
+ "div",
7795
+ {
7796
+ ...other,
7797
+ className: classNames(
7798
+ props.className,
7799
+ PROMPTCONTENT_CLASSNAME
7800
+ ),
7801
+ children: /* @__PURE__ */ jsx126(Fragment37, { children: props.children })
7802
+ }
7803
+ );
7804
+ };
7805
+
7786
7806
  // src/textarea/textarea.spec.tsx
7787
- import { jsx as jsx126 } from "react/jsx-runtime";
7807
+ import { jsx as jsx127 } from "react/jsx-runtime";
7788
7808
  var TEXTAREA_CLASSNAME = `k-textarea`;
7789
7809
  var states50 = [
7790
7810
  States.hover,
@@ -7820,7 +7840,7 @@ var Textarea = (props) => {
7820
7840
  disabled,
7821
7841
  ...other
7822
7842
  } = props;
7823
- return /* @__PURE__ */ jsx126(
7843
+ return /* @__PURE__ */ jsx127(
7824
7844
  Input,
7825
7845
  {
7826
7846
  ...other,
@@ -7834,7 +7854,7 @@ var Textarea = (props) => {
7834
7854
  required,
7835
7855
  disabled,
7836
7856
  className: classNames(props.className, TEXTAREA_CLASSNAME),
7837
- children: /* @__PURE__ */ jsx126(
7857
+ children: /* @__PURE__ */ jsx127(
7838
7858
  InputInnerTextarea,
7839
7859
  {
7840
7860
  className: classNames(
@@ -7854,12 +7874,12 @@ Textarea.className = TEXTAREA_CLASSNAME;
7854
7874
  Textarea.defaultProps = defaultProps45;
7855
7875
 
7856
7876
  // src/textarea/templates/textarea-normal.tsx
7857
- import { jsx as jsx127 } from "react/jsx-runtime";
7877
+ import { jsx as jsx128 } from "react/jsx-runtime";
7858
7878
 
7859
- // src/prompt/prompt-content.tsx
7860
- import { Fragment as Fragment37, jsx as jsx128, jsxs as jsxs55 } from "react/jsx-runtime";
7861
- var PROMPTCONTENT_CLASSNAME = `k-prompt-content`;
7862
- var PromptContent = (props) => {
7879
+ // src/prompt/prompt-view.tsx
7880
+ import { Fragment as Fragment38, jsx as jsx129, jsxs as jsxs55 } from "react/jsx-runtime";
7881
+ var PROMPTVIEW_CLASSNAME = `k-prompt-view`;
7882
+ var PromptView = (props) => {
7863
7883
  const {
7864
7884
  showSearch,
7865
7885
  suggestions,
@@ -7872,32 +7892,32 @@ var PromptContent = (props) => {
7872
7892
  ...other,
7873
7893
  className: classNames(
7874
7894
  props.className,
7875
- PROMPTCONTENT_CLASSNAME
7895
+ PROMPTVIEW_CLASSNAME
7876
7896
  ),
7877
7897
  children: [
7878
- showSearch && /* @__PURE__ */ jsx128(Textarea, { rows: 1, placeholder: "Ask or generate content with AI" }),
7898
+ showSearch && /* @__PURE__ */ jsx129(Textarea, { rows: 1, placeholder: "Ask or generate content with AI" }),
7879
7899
  suggestions && /* @__PURE__ */ jsxs55("div", { className: "k-prompt-expander", children: [
7880
- /* @__PURE__ */ jsx128(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Prompt Suggestions" }),
7881
- /* @__PURE__ */ jsx128("div", { className: "k-prompt-expander-content", children: /* @__PURE__ */ jsx128(Fragment37, { children: suggestions }) })
7900
+ /* @__PURE__ */ jsx129(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Prompt Suggestions" }),
7901
+ /* @__PURE__ */ jsx129("div", { className: "k-prompt-expander-content", children: /* @__PURE__ */ jsx129(Fragment38, { children: suggestions }) })
7882
7902
  ] }),
7883
7903
  settings && /* @__PURE__ */ jsxs55("div", { className: "k-prompt-expander", children: [
7884
- /* @__PURE__ */ jsx128(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Settings" }),
7885
- /* @__PURE__ */ jsx128("div", { className: "k-prompt-expander-content", children: settings })
7904
+ /* @__PURE__ */ jsx129(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Settings" }),
7905
+ /* @__PURE__ */ jsx129("div", { className: "k-prompt-expander-content", children: settings })
7886
7906
  ] }),
7887
- /* @__PURE__ */ jsx128(Fragment37, { children: props.children })
7907
+ props.children
7888
7908
  ]
7889
7909
  }
7890
7910
  );
7891
7911
  };
7892
7912
 
7893
7913
  // src/prompt/prompt-footer.tsx
7894
- import { jsx as jsx129 } from "react/jsx-runtime";
7914
+ import { jsx as jsx130 } from "react/jsx-runtime";
7895
7915
  var PROMPTFOOTER_CLASSNAME = `k-prompt-footer`;
7896
7916
  var PromptFooter = (props) => {
7897
7917
  const {
7898
7918
  ...other
7899
7919
  } = props;
7900
- return /* @__PURE__ */ jsx129(
7920
+ return /* @__PURE__ */ jsx130(
7901
7921
  "div",
7902
7922
  {
7903
7923
  ...other,
@@ -7911,19 +7931,19 @@ var PromptFooter = (props) => {
7911
7931
  };
7912
7932
 
7913
7933
  // src/prompt/prompt-suggestion.tsx
7914
- import { jsx as jsx130 } from "react/jsx-runtime";
7934
+ import { jsx as jsx131 } from "react/jsx-runtime";
7915
7935
 
7916
7936
  // src/prompt/prompt-setting.tsx
7917
- import { jsx as jsx131 } from "react/jsx-runtime";
7937
+ import { jsx as jsx132 } from "react/jsx-runtime";
7918
7938
 
7919
7939
  // src/prompt/templates/prompt-suggestions.tsx
7920
- import { Fragment as Fragment38, jsx as jsx132, jsxs as jsxs56 } from "react/jsx-runtime";
7940
+ import { Fragment as Fragment39, jsx as jsx133, jsxs as jsxs56 } from "react/jsx-runtime";
7921
7941
 
7922
7942
  // src/chip/chip-action.tsx
7923
- import { jsx as jsx133 } from "react/jsx-runtime";
7943
+ import { jsx as jsx134 } from "react/jsx-runtime";
7924
7944
 
7925
7945
  // src/avatar/avatar.spec.tsx
7926
- import { jsx as jsx134 } from "react/jsx-runtime";
7946
+ import { jsx as jsx135 } from "react/jsx-runtime";
7927
7947
  var AVATAR_CLASSNAME = `k-avatar`;
7928
7948
  var states51 = [
7929
7949
  States.hover,
@@ -7968,7 +7988,7 @@ var Avatar = (props) => {
7968
7988
  border = defaultProps46.border,
7969
7989
  ...other
7970
7990
  } = props;
7971
- return /* @__PURE__ */ jsx134(
7991
+ return /* @__PURE__ */ jsx135(
7972
7992
  "div",
7973
7993
  {
7974
7994
  ...other,
@@ -7985,7 +8005,7 @@ var Avatar = (props) => {
7985
8005
  [`${AVATAR_CLASSNAME}-bordered`]: border
7986
8006
  }
7987
8007
  ),
7988
- children: /* @__PURE__ */ jsx134("span", { className: `${AVATAR_CLASSNAME}-${type}`, children: props.children })
8008
+ children: /* @__PURE__ */ jsx135("span", { className: `${AVATAR_CLASSNAME}-${type}`, children: props.children })
7989
8009
  }
7990
8010
  );
7991
8011
  };
@@ -7995,16 +8015,16 @@ Avatar.className = AVATAR_CLASSNAME;
7995
8015
  Avatar.defaultProps = defaultProps46;
7996
8016
 
7997
8017
  // src/avatar/templates/avatar-icon.tsx
7998
- import { jsx as jsx135 } from "react/jsx-runtime";
8018
+ import { jsx as jsx136 } from "react/jsx-runtime";
7999
8019
 
8000
8020
  // src/avatar/templates/avatar-text.tsx
8001
- import { jsx as jsx136 } from "react/jsx-runtime";
8021
+ import { jsx as jsx137 } from "react/jsx-runtime";
8002
8022
 
8003
8023
  // src/avatar/templates/avatar-image.tsx
8004
- import { jsx as jsx137 } from "react/jsx-runtime";
8024
+ import { jsx as jsx138 } from "react/jsx-runtime";
8005
8025
 
8006
8026
  // src/chip/chip.spec.tsx
8007
- import { jsx as jsx138, jsxs as jsxs57 } from "react/jsx-runtime";
8027
+ import { jsx as jsx139, jsxs as jsxs57 } from "react/jsx-runtime";
8008
8028
  var CHIP_CLASSNAME = `k-chip`;
8009
8029
  var states52 = [
8010
8030
  States.hover,
@@ -8070,10 +8090,10 @@ var Chip = (props) => {
8070
8090
  })
8071
8091
  ),
8072
8092
  children: [
8073
- icon && /* @__PURE__ */ jsx138(Icon, { className: "k-chip-icon", icon, size: "small" }),
8074
- showAvatar && /* @__PURE__ */ jsx138(Avatar, { className: "k-chip-avatar", type: "image", children: /* @__PURE__ */ jsx138("img", { src: "/packages/html/assets/avatar.jpg" }) }),
8075
- /* @__PURE__ */ jsx138("span", { className: "k-chip-content", children: props.children ? props.children : text && /* @__PURE__ */ jsx138("span", { className: "k-chip-label k-text-ellipsis", children: text }) }),
8076
- actions && /* @__PURE__ */ jsx138("span", { className: "k-chip-actions", children: actions })
8093
+ icon && /* @__PURE__ */ jsx139(Icon, { className: "k-chip-icon", icon, size: "small" }),
8094
+ showAvatar && /* @__PURE__ */ jsx139(Avatar, { className: "k-chip-avatar", type: "image", children: /* @__PURE__ */ jsx139("img", { src: "/packages/html/assets/avatar.jpg" }) }),
8095
+ /* @__PURE__ */ jsx139("span", { className: "k-chip-content", children: props.children ? props.children : text && /* @__PURE__ */ jsx139("span", { className: "k-chip-label k-text-ellipsis", children: text }) }),
8096
+ actions && /* @__PURE__ */ jsx139("span", { className: "k-chip-actions", children: actions })
8077
8097
  ]
8078
8098
  }
8079
8099
  );
@@ -8084,7 +8104,7 @@ Chip.className = CHIP_CLASSNAME;
8084
8104
  Chip.defaultProps = defaultProps47;
8085
8105
 
8086
8106
  // src/chip/chip-list.spec.tsx
8087
- import { jsx as jsx139 } from "react/jsx-runtime";
8107
+ import { jsx as jsx140 } from "react/jsx-runtime";
8088
8108
  var CHIPLIST_CLASSNAME = `k-chip-list`;
8089
8109
  var states53 = [];
8090
8110
  var options51 = {
@@ -8098,7 +8118,7 @@ var ChipList = (props) => {
8098
8118
  size = defaultProps48.size,
8099
8119
  ...other
8100
8120
  } = props;
8101
- return /* @__PURE__ */ jsx139(
8121
+ return /* @__PURE__ */ jsx140(
8102
8122
  "div",
8103
8123
  {
8104
8124
  ...other,
@@ -8119,29 +8139,29 @@ ChipList.className = CHIPLIST_CLASSNAME;
8119
8139
  ChipList.defaultProps = defaultProps48;
8120
8140
 
8121
8141
  // src/chip/templates/chip-avatar.tsx
8122
- import { jsx as jsx140 } from "react/jsx-runtime";
8142
+ import { jsx as jsx141 } from "react/jsx-runtime";
8123
8143
 
8124
8144
  // src/chip/templates/chip-icon.tsx
8125
- import { jsx as jsx141 } from "react/jsx-runtime";
8145
+ import { jsx as jsx142 } from "react/jsx-runtime";
8126
8146
 
8127
8147
  // src/chip/templates/chip-normal.tsx
8128
- import { jsx as jsx142 } from "react/jsx-runtime";
8148
+ import { jsx as jsx143 } from "react/jsx-runtime";
8129
8149
 
8130
8150
  // src/chip/templates/chip-removable.tsx
8131
- import { jsx as jsx143 } from "react/jsx-runtime";
8151
+ import { jsx as jsx144 } from "react/jsx-runtime";
8132
8152
 
8133
8153
  // src/prompt/templates/prompt-settings.tsx
8134
- import { Fragment as Fragment39, jsx as jsx144, jsxs as jsxs58 } from "react/jsx-runtime";
8154
+ import { Fragment as Fragment40, jsx as jsx145, jsxs as jsxs58 } from "react/jsx-runtime";
8135
8155
 
8136
8156
  // src/card/card-callout.tsx
8137
- import { jsx as jsx145 } from "react/jsx-runtime";
8157
+ import { jsx as jsx146 } from "react/jsx-runtime";
8138
8158
  var CARDCALLOUT_CLASSNAME = `k-card-callout`;
8139
8159
  var CardCallout = (props) => {
8140
8160
  const {
8141
8161
  callout,
8142
8162
  ...other
8143
8163
  } = props;
8144
- return /* @__PURE__ */ jsx145(
8164
+ return /* @__PURE__ */ jsx146(
8145
8165
  "span",
8146
8166
  {
8147
8167
  ...other,
@@ -8157,7 +8177,7 @@ var CardCallout = (props) => {
8157
8177
  };
8158
8178
 
8159
8179
  // src/card/card.spec.tsx
8160
- import { Fragment as Fragment40, jsx as jsx146, jsxs as jsxs59 } from "react/jsx-runtime";
8180
+ import { Fragment as Fragment41, jsx as jsx147, jsxs as jsxs59 } from "react/jsx-runtime";
8161
8181
  var CARD_CLASSNAME = `k-card`;
8162
8182
  var states54 = [
8163
8183
  States.hover,
@@ -8208,8 +8228,8 @@ var Card = (props) => {
8208
8228
  }
8209
8229
  ),
8210
8230
  children: [
8211
- callout && callout !== "true" && /* @__PURE__ */ jsx146(CardCallout, { callout }),
8212
- /* @__PURE__ */ jsx146(Fragment40, { children: props.children })
8231
+ callout && callout !== "true" && /* @__PURE__ */ jsx147(CardCallout, { callout }),
8232
+ /* @__PURE__ */ jsx147(Fragment41, { children: props.children })
8213
8233
  ]
8214
8234
  }
8215
8235
  );
@@ -8220,59 +8240,59 @@ Card.className = CARD_CLASSNAME;
8220
8240
  Card.defaultProps = defaultProps49;
8221
8241
 
8222
8242
  // src/card/card-title.tsx
8223
- import { jsx as jsx147 } from "react/jsx-runtime";
8243
+ import { jsx as jsx148 } from "react/jsx-runtime";
8224
8244
  var states55 = [
8225
8245
  States.hover,
8226
8246
  States.focus
8227
8247
  ];
8228
8248
 
8229
8249
  // src/card/card-subtitle.tsx
8230
- import { jsx as jsx148 } from "react/jsx-runtime";
8250
+ import { jsx as jsx149 } from "react/jsx-runtime";
8231
8251
 
8232
8252
  // src/card/card-media.tsx
8233
- import { Fragment as Fragment41, jsx as jsx149 } from "react/jsx-runtime";
8253
+ import { Fragment as Fragment42, jsx as jsx150 } from "react/jsx-runtime";
8234
8254
 
8235
8255
  // src/card/card-header.tsx
8236
- import { Fragment as Fragment42, jsx as jsx150, jsxs as jsxs60 } from "react/jsx-runtime";
8256
+ import { Fragment as Fragment43, jsx as jsx151, jsxs as jsxs60 } from "react/jsx-runtime";
8237
8257
 
8238
8258
  // src/card/card-footer.tsx
8239
- import { jsx as jsx151 } from "react/jsx-runtime";
8259
+ import { jsx as jsx152 } from "react/jsx-runtime";
8240
8260
 
8241
8261
  // src/card/card-body.tsx
8242
- import { Fragment as Fragment43, jsx as jsx152, jsxs as jsxs61 } from "react/jsx-runtime";
8262
+ import { Fragment as Fragment44, jsx as jsx153, jsxs as jsxs61 } from "react/jsx-runtime";
8243
8263
 
8244
8264
  // src/card/card-deck.tsx
8245
- import { jsx as jsx153 } from "react/jsx-runtime";
8265
+ import { jsx as jsx154 } from "react/jsx-runtime";
8246
8266
 
8247
8267
  // src/card/templates/card-normal.tsx
8248
- import { Fragment as Fragment44, jsx as jsx154, jsxs as jsxs62 } from "react/jsx-runtime";
8268
+ import { Fragment as Fragment45, jsx as jsx155, jsxs as jsxs62 } from "react/jsx-runtime";
8249
8269
 
8250
8270
  // src/card/templates/card-horizontal.tsx
8251
- import { Fragment as Fragment45, jsx as jsx155, jsxs as jsxs63 } from "react/jsx-runtime";
8271
+ import { Fragment as Fragment46, jsx as jsx156, jsxs as jsxs63 } from "react/jsx-runtime";
8252
8272
 
8253
8273
  // src/prompt/templates/prompt-output.tsx
8254
- import { jsx as jsx156, jsxs as jsxs64 } from "react/jsx-runtime";
8274
+ import { jsx as jsx157, jsxs as jsxs64 } from "react/jsx-runtime";
8255
8275
 
8256
8276
  // src/prompt/templates/prompt-more-actions.tsx
8257
- import { jsx as jsx157, jsxs as jsxs65 } from "react/jsx-runtime";
8277
+ import { jsx as jsx158, jsxs as jsxs65 } from "react/jsx-runtime";
8258
8278
 
8259
8279
  // src/prompt/templates/prompt-popup.tsx
8260
- import { jsx as jsx158, jsxs as jsxs66 } from "react/jsx-runtime";
8280
+ import { jsx as jsx159, jsxs as jsxs66 } from "react/jsx-runtime";
8261
8281
 
8262
8282
  // src/prompt/templates/prompt-normal.tsx
8263
- import { jsx as jsx159, jsxs as jsxs67 } from "react/jsx-runtime";
8283
+ import { jsx as jsx160, jsxs as jsxs67 } from "react/jsx-runtime";
8264
8284
  var PromptNormal = (props) => /* @__PURE__ */ jsxs67(
8265
8285
  Prompt,
8266
8286
  {
8267
8287
  ...props,
8268
8288
  children: [
8269
- /* @__PURE__ */ jsx159(PromptHeader, { children: /* @__PURE__ */ jsxs67(Toolbar, { className: "k-toolbar-flat", children: [
8270
- /* @__PURE__ */ jsx159(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "sparkles", rounded: "full", selected: true, children: "Ask AI" }),
8271
- /* @__PURE__ */ jsx159(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "comment", rounded: "full", children: "Output" }),
8272
- /* @__PURE__ */ jsx159(IconButton, { fillMode: "flat", themeColor: "primary", icon: "more-horizontal", rounded: "full" })
8289
+ /* @__PURE__ */ jsx160(PromptHeader, { children: /* @__PURE__ */ jsxs67(Toolbar, { className: "k-toolbar-flat", children: [
8290
+ /* @__PURE__ */ jsx160(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "sparkles", rounded: "full", selected: true, children: "Ask AI" }),
8291
+ /* @__PURE__ */ jsx160(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "comment", rounded: "full", children: "Output" }),
8292
+ /* @__PURE__ */ jsx160(IconButton, { fillMode: "flat", themeColor: "primary", icon: "more-horizontal", rounded: "full" })
8273
8293
  ] }) }),
8274
- /* @__PURE__ */ jsx159(PromptContent, { showSearch: true }),
8275
- /* @__PURE__ */ jsx159(PromptFooter, { children: /* @__PURE__ */ jsx159(ActionButtons, { className: "k-prompt-actions", alignment: "start", children: /* @__PURE__ */ jsx159(IconTextButton, { icon: "sparkles", themeColor: "primary", rounded: "full", children: "Generate" }) }) })
8294
+ /* @__PURE__ */ jsx160(PromptContent, { children: /* @__PURE__ */ jsx160(PromptView, { showSearch: true }) }),
8295
+ /* @__PURE__ */ jsx160(PromptFooter, { children: /* @__PURE__ */ jsx160(ActionButtons, { className: "k-prompt-actions", alignment: "start", children: /* @__PURE__ */ jsx160(IconTextButton, { icon: "sparkles", themeColor: "primary", rounded: "full", children: "Generate" }) }) })
8276
8296
  ]
8277
8297
  }
8278
8298
  );