@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
@@ -8013,8 +8013,28 @@ var PromptHeader = (props) => {
8013
8013
  );
8014
8014
  };
8015
8015
 
8016
- // src/textarea/textarea.spec.tsx
8016
+ // src/prompt/prompt-content.tsx
8017
8017
  var import_jsx_runtime137 = require("react/jsx-runtime");
8018
+ var PROMPTCONTENT_CLASSNAME = `k-prompt-content`;
8019
+ var PromptContent = (props) => {
8020
+ const {
8021
+ ...other
8022
+ } = props;
8023
+ return /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
8024
+ "div",
8025
+ {
8026
+ ...other,
8027
+ className: classNames(
8028
+ props.className,
8029
+ PROMPTCONTENT_CLASSNAME
8030
+ ),
8031
+ children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(import_jsx_runtime137.Fragment, { children: props.children })
8032
+ }
8033
+ );
8034
+ };
8035
+
8036
+ // src/textarea/textarea.spec.tsx
8037
+ var import_jsx_runtime138 = require("react/jsx-runtime");
8018
8038
  var TEXTAREA_CLASSNAME = `k-textarea`;
8019
8039
  var states53 = [
8020
8040
  States.hover,
@@ -8050,7 +8070,7 @@ var Textarea = (props) => {
8050
8070
  disabled,
8051
8071
  ...other
8052
8072
  } = props;
8053
- return /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
8073
+ return /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
8054
8074
  Input,
8055
8075
  {
8056
8076
  ...other,
@@ -8064,7 +8084,7 @@ var Textarea = (props) => {
8064
8084
  required,
8065
8085
  disabled,
8066
8086
  className: classNames(props.className, TEXTAREA_CLASSNAME),
8067
- children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
8087
+ children: /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
8068
8088
  InputInnerTextarea,
8069
8089
  {
8070
8090
  className: classNames(
@@ -8084,50 +8104,50 @@ Textarea.className = TEXTAREA_CLASSNAME;
8084
8104
  Textarea.defaultProps = defaultProps48;
8085
8105
 
8086
8106
  // src/textarea/templates/textarea-normal.tsx
8087
- var import_jsx_runtime138 = require("react/jsx-runtime");
8088
-
8089
- // src/prompt/prompt-content.tsx
8090
8107
  var import_jsx_runtime139 = require("react/jsx-runtime");
8091
- var PROMPTCONTENT_CLASSNAME = `k-prompt-content`;
8092
- var PromptContent = (props) => {
8108
+
8109
+ // src/prompt/prompt-view.tsx
8110
+ var import_jsx_runtime140 = require("react/jsx-runtime");
8111
+ var PROMPTVIEW_CLASSNAME = `k-prompt-view`;
8112
+ var PromptView = (props) => {
8093
8113
  const {
8094
8114
  showSearch,
8095
8115
  suggestions,
8096
8116
  settings,
8097
8117
  ...other
8098
8118
  } = props;
8099
- return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
8119
+ return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
8100
8120
  "div",
8101
8121
  {
8102
8122
  ...other,
8103
8123
  className: classNames(
8104
8124
  props.className,
8105
- PROMPTCONTENT_CLASSNAME
8125
+ PROMPTVIEW_CLASSNAME
8106
8126
  ),
8107
8127
  children: [
8108
- showSearch && /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(Textarea, { rows: 1, placeholder: "Ask or generate content with AI" }),
8109
- suggestions && /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)("div", { className: "k-prompt-expander", children: [
8110
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Prompt Suggestions" }),
8111
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("div", { className: "k-prompt-expander-content", children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(import_jsx_runtime139.Fragment, { children: suggestions }) })
8128
+ showSearch && /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(Textarea, { rows: 1, placeholder: "Ask or generate content with AI" }),
8129
+ suggestions && /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)("div", { className: "k-prompt-expander", children: [
8130
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Prompt Suggestions" }),
8131
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("div", { className: "k-prompt-expander-content", children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(import_jsx_runtime140.Fragment, { children: suggestions }) })
8112
8132
  ] }),
8113
- settings && /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)("div", { className: "k-prompt-expander", children: [
8114
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Settings" }),
8115
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("div", { className: "k-prompt-expander-content", children: settings })
8133
+ settings && /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)("div", { className: "k-prompt-expander", children: [
8134
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Settings" }),
8135
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("div", { className: "k-prompt-expander-content", children: settings })
8116
8136
  ] }),
8117
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(import_jsx_runtime139.Fragment, { children: props.children })
8137
+ props.children
8118
8138
  ]
8119
8139
  }
8120
8140
  );
8121
8141
  };
8122
8142
 
8123
8143
  // src/prompt/prompt-footer.tsx
8124
- var import_jsx_runtime140 = require("react/jsx-runtime");
8144
+ var import_jsx_runtime141 = require("react/jsx-runtime");
8125
8145
  var PROMPTFOOTER_CLASSNAME = `k-prompt-footer`;
8126
8146
  var PromptFooter = (props) => {
8127
8147
  const {
8128
8148
  ...other
8129
8149
  } = props;
8130
- return /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
8150
+ return /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
8131
8151
  "div",
8132
8152
  {
8133
8153
  ...other,
@@ -8141,16 +8161,16 @@ var PromptFooter = (props) => {
8141
8161
  };
8142
8162
 
8143
8163
  // src/prompt/prompt-suggestion.tsx
8144
- var import_jsx_runtime141 = require("react/jsx-runtime");
8164
+ var import_jsx_runtime142 = require("react/jsx-runtime");
8145
8165
 
8146
8166
  // src/prompt/prompt-setting.tsx
8147
- var import_jsx_runtime142 = require("react/jsx-runtime");
8167
+ var import_jsx_runtime143 = require("react/jsx-runtime");
8148
8168
  var PROMPTSETTING_CLASSNAME = `k-prompt-setting`;
8149
8169
  var PromptSetting = (props) => {
8150
8170
  const {
8151
8171
  ...other
8152
8172
  } = props;
8153
- return /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
8173
+ return /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
8154
8174
  "div",
8155
8175
  {
8156
8176
  ...other,
@@ -8164,20 +8184,20 @@ var PromptSetting = (props) => {
8164
8184
  };
8165
8185
 
8166
8186
  // src/prompt/templates/prompt-normal.tsx
8167
- var import_jsx_runtime143 = require("react/jsx-runtime");
8187
+ var import_jsx_runtime144 = require("react/jsx-runtime");
8168
8188
 
8169
8189
  // src/prompt/templates/prompt-suggestions.tsx
8170
- var import_jsx_runtime144 = require("react/jsx-runtime");
8190
+ var import_jsx_runtime145 = require("react/jsx-runtime");
8171
8191
 
8172
8192
  // src/card/card-callout.tsx
8173
- var import_jsx_runtime145 = require("react/jsx-runtime");
8193
+ var import_jsx_runtime146 = require("react/jsx-runtime");
8174
8194
  var CARDCALLOUT_CLASSNAME = `k-card-callout`;
8175
8195
  var CardCallout = (props) => {
8176
8196
  const {
8177
8197
  callout,
8178
8198
  ...other
8179
8199
  } = props;
8180
- return /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
8200
+ return /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8181
8201
  "span",
8182
8202
  {
8183
8203
  ...other,
@@ -8193,7 +8213,7 @@ var CardCallout = (props) => {
8193
8213
  };
8194
8214
 
8195
8215
  // src/card/card.spec.tsx
8196
- var import_jsx_runtime146 = require("react/jsx-runtime");
8216
+ var import_jsx_runtime147 = require("react/jsx-runtime");
8197
8217
  var CARD_CLASSNAME = `k-card`;
8198
8218
  var states54 = [
8199
8219
  States.hover,
@@ -8222,7 +8242,7 @@ var Card = (props) => {
8222
8242
  disabled,
8223
8243
  ...other
8224
8244
  } = props;
8225
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
8245
+ return /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)(
8226
8246
  "div",
8227
8247
  {
8228
8248
  ...other,
@@ -8244,8 +8264,8 @@ var Card = (props) => {
8244
8264
  }
8245
8265
  ),
8246
8266
  children: [
8247
- callout && callout !== "true" && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(CardCallout, { callout }),
8248
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(import_jsx_runtime146.Fragment, { children: props.children })
8267
+ callout && callout !== "true" && /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(CardCallout, { callout }),
8268
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(import_jsx_runtime147.Fragment, { children: props.children })
8249
8269
  ]
8250
8270
  }
8251
8271
  );
@@ -8256,78 +8276,78 @@ Card.className = CARD_CLASSNAME;
8256
8276
  Card.defaultProps = defaultProps49;
8257
8277
 
8258
8278
  // src/card/card-title.tsx
8259
- var import_jsx_runtime147 = require("react/jsx-runtime");
8279
+ var import_jsx_runtime148 = require("react/jsx-runtime");
8260
8280
  var states55 = [
8261
8281
  States.hover,
8262
8282
  States.focus
8263
8283
  ];
8264
8284
 
8265
8285
  // src/card/card-subtitle.tsx
8266
- var import_jsx_runtime148 = require("react/jsx-runtime");
8286
+ var import_jsx_runtime149 = require("react/jsx-runtime");
8267
8287
 
8268
8288
  // src/card/card-media.tsx
8269
- var import_jsx_runtime149 = require("react/jsx-runtime");
8289
+ var import_jsx_runtime150 = require("react/jsx-runtime");
8270
8290
 
8271
8291
  // src/card/card-header.tsx
8272
- var import_jsx_runtime150 = require("react/jsx-runtime");
8292
+ var import_jsx_runtime151 = require("react/jsx-runtime");
8273
8293
 
8274
8294
  // src/card/card-footer.tsx
8275
- var import_jsx_runtime151 = require("react/jsx-runtime");
8295
+ var import_jsx_runtime152 = require("react/jsx-runtime");
8276
8296
 
8277
8297
  // src/card/card-body.tsx
8278
- var import_jsx_runtime152 = require("react/jsx-runtime");
8298
+ var import_jsx_runtime153 = require("react/jsx-runtime");
8279
8299
 
8280
8300
  // src/card/card-deck.tsx
8281
- var import_jsx_runtime153 = require("react/jsx-runtime");
8301
+ var import_jsx_runtime154 = require("react/jsx-runtime");
8282
8302
 
8283
8303
  // src/card/templates/card-normal.tsx
8284
- var import_jsx_runtime154 = require("react/jsx-runtime");
8304
+ var import_jsx_runtime155 = require("react/jsx-runtime");
8285
8305
 
8286
8306
  // src/card/templates/card-horizontal.tsx
8287
- var import_jsx_runtime155 = require("react/jsx-runtime");
8307
+ var import_jsx_runtime156 = require("react/jsx-runtime");
8288
8308
 
8289
8309
  // src/prompt/templates/prompt-output.tsx
8290
- var import_jsx_runtime156 = require("react/jsx-runtime");
8310
+ var import_jsx_runtime157 = require("react/jsx-runtime");
8291
8311
 
8292
8312
  // src/prompt/templates/prompt-more-actions.tsx
8293
- var import_jsx_runtime157 = require("react/jsx-runtime");
8313
+ var import_jsx_runtime158 = require("react/jsx-runtime");
8294
8314
 
8295
8315
  // src/prompt/templates/prompt-popup.tsx
8296
- var import_jsx_runtime158 = require("react/jsx-runtime");
8316
+ var import_jsx_runtime159 = require("react/jsx-runtime");
8297
8317
 
8298
8318
  // src/prompt/templates/prompt-settings.tsx
8299
- var import_jsx_runtime159 = require("react/jsx-runtime");
8300
- var PromptSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime159.jsxs)(Prompt, { ...props, children: [
8301
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(PromptHeader, { children: /* @__PURE__ */ (0, import_jsx_runtime159.jsxs)(Toolbar, { className: "k-toolbar-flat", children: [
8302
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "sparkles", rounded: "full", selected: true, children: "Ask AI" }),
8303
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "comment", rounded: "full", children: "Output" }),
8304
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(IconButton, { fillMode: "flat", themeColor: "primary", icon: "more-horizontal", rounded: "full" })
8319
+ var import_jsx_runtime160 = require("react/jsx-runtime");
8320
+ var PromptSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(Prompt, { ...props, children: [
8321
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(PromptHeader, { children: /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(Toolbar, { className: "k-toolbar-flat", children: [
8322
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "sparkles", rounded: "full", selected: true, children: "Ask AI" }),
8323
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "comment", rounded: "full", children: "Output" }),
8324
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(IconButton, { fillMode: "flat", themeColor: "primary", icon: "more-horizontal", rounded: "full" })
8305
8325
  ] }) }),
8306
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
8307
- PromptContent,
8326
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(PromptContent, { children: /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
8327
+ PromptView,
8308
8328
  {
8309
8329
  showSearch: true,
8310
- settings: /* @__PURE__ */ (0, import_jsx_runtime159.jsxs)(import_jsx_runtime159.Fragment, { children: [
8311
- /* @__PURE__ */ (0, import_jsx_runtime159.jsxs)(PromptSetting, { children: [
8330
+ settings: /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(import_jsx_runtime160.Fragment, { children: [
8331
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(PromptSetting, { children: [
8312
8332
  "Length:",
8313
- /* @__PURE__ */ (0, import_jsx_runtime159.jsxs)(ChipList, { children: [
8314
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(Chip, { text: "Small" }),
8315
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(Chip, { text: "Medium" }),
8316
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(Chip, { text: "Large" })
8333
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(ChipList, { children: [
8334
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Small" }),
8335
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Medium" }),
8336
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Large" })
8317
8337
  ] })
8318
8338
  ] }),
8319
- /* @__PURE__ */ (0, import_jsx_runtime159.jsxs)(PromptSetting, { children: [
8339
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(PromptSetting, { children: [
8320
8340
  "Tone:",
8321
- /* @__PURE__ */ (0, import_jsx_runtime159.jsxs)(ChipList, { children: [
8322
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(Chip, { text: "Professional" }),
8323
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(Chip, { text: "Friendly" }),
8324
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(Chip, { text: "Casual" }),
8325
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(Chip, { text: "Straightforward" }),
8326
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(Chip, { text: "Confident" })
8341
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(ChipList, { children: [
8342
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Professional" }),
8343
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Friendly" }),
8344
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Casual" }),
8345
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Straightforward" }),
8346
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Confident" })
8327
8347
  ] })
8328
8348
  ] })
8329
8349
  ] })
8330
8350
  }
8331
- ),
8332
- /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(PromptFooter, { children: /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(ActionButtons, { className: "k-prompt-actions", alignment: "start", children: /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(IconTextButton, { icon: "sparkles", themeColor: "primary", rounded: "full", children: "Generate" }) }) })
8351
+ ) }),
8352
+ /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(PromptFooter, { children: /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(ActionButtons, { className: "k-prompt-actions", alignment: "start", children: /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(IconTextButton, { icon: "sparkles", themeColor: "primary", rounded: "full", children: "Generate" }) }) })
8333
8353
  ] });