@progress/kendo-themes-html 6.4.1-dev.1 → 6.5.0-dev.1

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 (85) hide show
  1. package/dist/cjs/breadcrumb/breadcrumb.spec.js +46 -2
  2. package/dist/cjs/breadcrumb/tests/breadcrumb-adaptive.js +4450 -0
  3. package/dist/cjs/breadcrumb/tests/breadcrumb-rtl.js +12 -14
  4. package/dist/cjs/breadcrumb/tests/breadcrumb-size.js +4468 -0
  5. package/dist/cjs/breadcrumb/tests/breadcrumb.js +12 -14
  6. package/dist/cjs/button/tests/button-clear.js +5 -77
  7. package/dist/cjs/button/tests/button-flat.js +5 -77
  8. package/dist/cjs/button/tests/button-link.js +5 -77
  9. package/dist/cjs/button/tests/button-outline.js +5 -77
  10. package/dist/cjs/button/tests/button-rtl.js +39 -36
  11. package/dist/cjs/button/tests/button-size.js +8 -80
  12. package/dist/cjs/button/tests/button-solid.js +5 -77
  13. package/dist/cjs/button/tests/button.js +39 -36
  14. package/dist/cjs/filemanager/tests/filemanager-contextmenu.js +9 -2
  15. package/dist/cjs/filemanager/tests/filemanager-drag-hint.js +9 -2
  16. package/dist/cjs/filemanager/tests/filemanager-gridview.js +9 -2
  17. package/dist/cjs/filemanager/tests/filemanager-listview.js +9 -2
  18. package/dist/cjs/filemanager/tests/filemanager-preview.js +9 -2
  19. package/dist/cjs/gantt/tests/gantt-react.js +47 -47
  20. package/dist/cjs/gantt/tests/gantt-row-reordering.js +58 -58
  21. package/dist/cjs/gantt/tests/gantt.js +59 -59
  22. package/dist/cjs/index.js +9 -2
  23. package/dist/cjs/treelist/tests/treelist-aggregate-react.js +20 -20
  24. package/dist/cjs/treelist/tests/treelist-aggregates.js +34 -34
  25. package/dist/cjs/treelist/tests/treelist-react.js +15 -15
  26. package/dist/cjs/treelist/tests/treelist-row-reordering.js +15 -15
  27. package/dist/cjs/treelist/tests/treelist.js +16 -16
  28. package/dist/esm/breadcrumb/breadcrumb.spec.js +46 -2
  29. package/dist/esm/breadcrumb/tests/breadcrumb-adaptive.js +4434 -0
  30. package/dist/esm/breadcrumb/tests/breadcrumb-rtl.js +12 -14
  31. package/dist/esm/breadcrumb/tests/breadcrumb-size.js +4452 -0
  32. package/dist/esm/breadcrumb/tests/breadcrumb.js +12 -14
  33. package/dist/esm/button/tests/button-clear.js +5 -77
  34. package/dist/esm/button/tests/button-flat.js +5 -77
  35. package/dist/esm/button/tests/button-link.js +5 -77
  36. package/dist/esm/button/tests/button-outline.js +5 -77
  37. package/dist/esm/button/tests/button-rtl.js +39 -36
  38. package/dist/esm/button/tests/button-size.js +8 -80
  39. package/dist/esm/button/tests/button-solid.js +5 -77
  40. package/dist/esm/button/tests/button.js +39 -36
  41. package/dist/esm/filemanager/tests/filemanager-contextmenu.js +9 -2
  42. package/dist/esm/filemanager/tests/filemanager-drag-hint.js +9 -2
  43. package/dist/esm/filemanager/tests/filemanager-gridview.js +9 -2
  44. package/dist/esm/filemanager/tests/filemanager-listview.js +9 -2
  45. package/dist/esm/filemanager/tests/filemanager-preview.js +9 -2
  46. package/dist/esm/gantt/tests/gantt-react.js +47 -47
  47. package/dist/esm/gantt/tests/gantt-row-reordering.js +58 -58
  48. package/dist/esm/gantt/tests/gantt.js +59 -59
  49. package/dist/esm/index.js +9 -2
  50. package/dist/esm/treelist/tests/treelist-aggregate-react.js +20 -20
  51. package/dist/esm/treelist/tests/treelist-aggregates.js +34 -34
  52. package/dist/esm/treelist/tests/treelist-react.js +15 -15
  53. package/dist/esm/treelist/tests/treelist-row-reordering.js +15 -15
  54. package/dist/esm/treelist/tests/treelist.js +16 -16
  55. package/dist/types/breadcrumb/breadcrumb.spec.d.ts +8 -1
  56. package/dist/types/breadcrumb/tests/breadcrumb-adaptive.d.ts +2 -0
  57. package/dist/types/breadcrumb/tests/breadcrumb-size.d.ts +2 -0
  58. package/dist/types/button/templates/icon-button.d.ts +1 -2
  59. package/dist/types/button/templates/icon-text-button.d.ts +1 -2
  60. package/dist/types/button/templates/text-button.d.ts +1 -2
  61. package/package.json +2 -2
  62. package/src/breadcrumb/breadcrumb.spec.tsx +11 -3
  63. package/src/breadcrumb/tests/breadcrumb-adaptive.tsx +82 -0
  64. package/src/breadcrumb/tests/breadcrumb-rtl.tsx +0 -3
  65. package/src/breadcrumb/tests/breadcrumb-size.tsx +91 -0
  66. package/src/breadcrumb/tests/breadcrumb.tsx +0 -3
  67. package/src/button/templates/icon-button.tsx +2 -2
  68. package/src/button/templates/icon-text-button.tsx +2 -2
  69. package/src/button/templates/text-button.tsx +2 -2
  70. package/src/button/tests/button-clear.tsx +13 -92
  71. package/src/button/tests/button-flat.tsx +13 -92
  72. package/src/button/tests/button-link.tsx +13 -92
  73. package/src/button/tests/button-outline.tsx +13 -92
  74. package/src/button/tests/button-rtl.tsx +37 -38
  75. package/src/button/tests/button-size.tsx +13 -86
  76. package/src/button/tests/button-solid.tsx +13 -91
  77. package/src/button/tests/button.tsx +37 -40
  78. package/src/gantt/tests/gantt-react.tsx +54 -46
  79. package/src/gantt/tests/gantt-row-reordering.tsx +23 -23
  80. package/src/gantt/tests/gantt.tsx +45 -23
  81. package/src/treelist/tests/treelist-aggregate-react.tsx +31 -10
  82. package/src/treelist/tests/treelist-aggregates.tsx +41 -20
  83. package/src/treelist/tests/treelist-react.tsx +15 -15
  84. package/src/treelist/tests/treelist-row-reordering.tsx +5 -5
  85. package/src/treelist/tests/treelist.tsx +32 -6
@@ -4335,12 +4335,15 @@ Button.defaultProps = defaultProps4;
4335
4335
 
4336
4336
  // src/button/templates/icon-button.tsx
4337
4337
  var import_jsx_runtime5 = require("react/jsx-runtime");
4338
+ var IconButton = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Button, { icon: "folder", ...props, children: void 0 });
4338
4339
 
4339
4340
  // src/button/templates/icon-text-button.tsx
4340
4341
  var import_jsx_runtime6 = require("react/jsx-runtime");
4342
+ var IconTextButton = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Button, { icon: "folder", children: "Button", ...props });
4341
4343
 
4342
4344
  // src/button/templates/text-button.tsx
4343
4345
  var import_jsx_runtime7 = require("react/jsx-runtime");
4346
+ var TextButton = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Button, { children: "Button", ...props });
4344
4347
 
4345
4348
  // src/button/tests/button-rtl.tsx
4346
4349
  var import_jsx_runtime8 = require("react/jsx-runtime");
@@ -4360,46 +4363,46 @@ var button_rtl_default = () => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(imp
4360
4363
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "Selected" }),
4361
4364
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "Disabled" }),
4362
4365
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "base" }),
4363
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { children: "Normal" }) }),
4364
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { hover: true, children: "Hover" }) }),
4365
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { focus: true, children: "Focus" }) }),
4366
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { active: true, children: "Active" }) }),
4367
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { selected: true, children: "Selected" }) }),
4368
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { disabled: true, children: "Disabled" }) }),
4366
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { children: "Normal" }) }),
4367
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { hover: true, children: "Hover" }) }),
4368
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { focus: true, children: "Focus" }) }),
4369
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { active: true, children: "Active" }) }),
4370
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { selected: true, children: "Selected" }) }),
4371
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { disabled: true, children: "Disabled" }) }),
4369
4372
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "^ text + icon" }),
4370
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", children: "Normal" }) }),
4371
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", hover: true, children: "Hover" }) }),
4372
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", focus: true, children: "Focus" }) }),
4373
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", active: true, children: "Active" }) }),
4374
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", selected: true, children: "Selected" }) }),
4375
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", disabled: true, children: "Disabled" }) }),
4373
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { children: "Normal" }) }),
4374
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { hover: true, children: "Hover" }) }),
4375
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { focus: true, children: "Focus" }) }),
4376
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { active: true, children: "Active" }) }),
4377
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { selected: true, children: "Selected" }) }),
4378
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { disabled: true, children: "Disabled" }) }),
4376
4379
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "^ icon" }),
4377
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder" }) }),
4378
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", hover: true }) }),
4379
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", focus: true }) }),
4380
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", active: true }) }),
4381
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", selected: true }) }),
4382
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", disabled: true }) }),
4380
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, {}) }),
4381
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { hover: true }) }),
4382
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { focus: true }) }),
4383
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { active: true }) }),
4384
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { selected: true }) }),
4385
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { disabled: true }) }),
4383
4386
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "primary" }),
4384
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", children: "Normal" }) }),
4385
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", hover: true, children: "Hover" }) }),
4386
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", focus: true, children: "Focus" }) }),
4387
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", active: true, children: "Active" }) }),
4388
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", selected: true, children: "Selected" }) }),
4389
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", disabled: true, children: "Disabled" }) }),
4387
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", children: "Normal" }) }),
4388
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", hover: true, children: "Hover" }) }),
4389
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", focus: true, children: "Focus" }) }),
4390
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", active: true, children: "Active" }) }),
4391
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", selected: true, children: "Selected" }) }),
4392
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", disabled: true, children: "Disabled" }) }),
4390
4393
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "^ text + icon" }),
4391
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", children: "Normal" }) }),
4392
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", hover: true, children: "Hover" }) }),
4393
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", focus: true, children: "Focus" }) }),
4394
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", active: true, children: "Active" }) }),
4395
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", selected: true, children: "Selected" }) }),
4396
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", disabled: true, children: "Disabled" }) }),
4394
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", children: "Normal" }) }),
4395
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", hover: true, children: "Hover" }) }),
4396
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", focus: true, children: "Focus" }) }),
4397
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", active: true, children: "Active" }) }),
4398
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", selected: true, children: "Selected" }) }),
4399
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", disabled: true, children: "Disabled" }) }),
4397
4400
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "^ icon" }),
4398
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder" }) }),
4399
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", hover: true }) }),
4400
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", focus: true }) }),
4401
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", active: true }) }),
4402
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", selected: true }) }),
4403
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", disabled: true }) })
4401
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary" }) }),
4402
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", hover: true }) }),
4403
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", focus: true }) }),
4404
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", active: true }) }),
4405
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", selected: true }) }),
4406
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", disabled: true }) })
4404
4407
  ] })
4405
4408
  ] });
@@ -4364,85 +4364,13 @@ var button_size_default = () => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(im
4364
4364
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "small" }),
4365
4365
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "medium" }),
4366
4366
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "large" }),
4367
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "null" }),
4368
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4369
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "small", rounded: null }),
4370
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "small", rounded: null }),
4371
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "small", rounded: null })
4372
- ] }),
4373
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4374
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "medium", rounded: null }),
4375
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "medium", rounded: null }),
4376
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "medium", rounded: null })
4377
- ] }),
4378
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4379
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "large", rounded: null }),
4380
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "large", rounded: null }),
4381
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "large", rounded: null })
4382
- ] }),
4383
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "small" }),
4384
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4385
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "small", rounded: "small" }),
4386
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "small", rounded: "small" }),
4387
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "small", rounded: "small" })
4388
- ] }),
4389
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4390
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "medium", rounded: "small" }),
4391
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "medium", rounded: "small" }),
4392
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "medium", rounded: "small" })
4393
- ] }),
4394
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4395
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "large", rounded: "small" }),
4396
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "large", rounded: "small" }),
4397
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "large", rounded: "small" })
4398
- ] }),
4399
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "medium" }),
4400
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4401
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "small", rounded: "medium" }),
4402
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "small", rounded: "medium" }),
4403
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "small", rounded: "medium" })
4404
- ] }),
4405
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4406
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "medium", rounded: "medium" }),
4407
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "medium", rounded: "medium" }),
4408
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "medium", rounded: "medium" })
4409
- ] }),
4410
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4411
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "large", rounded: "medium" }),
4412
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "large", rounded: "medium" }),
4413
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "large", rounded: "medium" })
4414
- ] }),
4415
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "large" }),
4416
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4417
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "small", rounded: "large" }),
4418
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "small", rounded: "large" }),
4419
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "small", rounded: "large" })
4420
- ] }),
4421
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4422
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "medium", rounded: "large" }),
4423
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "medium", rounded: "large" }),
4424
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "medium", rounded: "large" })
4425
- ] }),
4426
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4427
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "large", rounded: "large" }),
4428
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "large", rounded: "large" }),
4429
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "large", rounded: "large" })
4430
- ] }),
4431
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "full" }),
4432
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4433
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "small", rounded: "full" }),
4434
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "small", rounded: "full" }),
4435
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "small", rounded: "full" })
4436
- ] }),
4437
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4438
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "medium", rounded: "full" }),
4439
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "medium", rounded: "full" }),
4440
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "medium", rounded: "full" })
4441
- ] }),
4442
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4443
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size: "large", rounded: "full" }),
4444
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size: "large", rounded: "full" }),
4445
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size: "large", rounded: "full" })
4446
- ] })
4367
+ [null, ...Button.options.rounded].map((roundness) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(import_jsx_runtime8.Fragment, { children: [
4368
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: roundness || "null" }),
4369
+ Button.options.size.map((size) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
4370
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { size, rounded: roundness }),
4371
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { size, rounded: roundness }),
4372
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { size, rounded: roundness })
4373
+ ] }))
4374
+ ] }))
4447
4375
  ] })
4448
4376
  ] });
@@ -4341,6 +4341,7 @@ var import_jsx_runtime6 = require("react/jsx-runtime");
4341
4341
 
4342
4342
  // src/button/templates/text-button.tsx
4343
4343
  var import_jsx_runtime7 = require("react/jsx-runtime");
4344
+ var TextButton = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Button, { children: "Button", ...props });
4344
4345
 
4345
4346
  // src/button/tests/button-solid.tsx
4346
4347
  var import_jsx_runtime8 = require("react/jsx-runtime");
@@ -4359,82 +4360,9 @@ var button_solid_default = () => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(i
4359
4360
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "Active" }),
4360
4361
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "Selected" }),
4361
4362
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "Disabled" }),
4362
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "base" }),
4363
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { children: "Normal" }) }),
4364
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { hover: true, children: "Hover" }) }),
4365
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { focus: true, children: "Focus" }) }),
4366
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { active: true, children: "Active" }) }),
4367
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { selected: true, children: "Selected" }) }),
4368
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { disabled: true, children: "Disabled" }) }),
4369
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "primary" }),
4370
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", children: "Normal" }) }),
4371
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", hover: true, children: "Hover" }) }),
4372
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", focus: true, children: "Focus" }) }),
4373
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", active: true, children: "Active" }) }),
4374
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", selected: true, children: "Selected" }) }),
4375
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", disabled: true, children: "Disabled" }) }),
4376
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "secondary" }),
4377
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "secondary", children: "Normal" }) }),
4378
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "secondary", hover: true, children: "Hover" }) }),
4379
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "secondary", focus: true, children: "Focus" }) }),
4380
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "secondary", active: true, children: "Active" }) }),
4381
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "secondary", selected: true, children: "Selected" }) }),
4382
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "secondary", disabled: true, children: "Disabled" }) }),
4383
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "tertiary" }),
4384
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "tertiary", children: "Normal" }) }),
4385
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "tertiary", hover: true, children: "Hover" }) }),
4386
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "tertiary", focus: true, children: "Focus" }) }),
4387
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "tertiary", active: true, children: "Active" }) }),
4388
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "tertiary", selected: true, children: "Selected" }) }),
4389
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "tertiary", disabled: true, children: "Disabled" }) }),
4390
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "info" }),
4391
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "info", children: "Normal" }) }),
4392
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "info", hover: true, children: "Hover" }) }),
4393
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "info", focus: true, children: "Focus" }) }),
4394
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "info", active: true, children: "Active" }) }),
4395
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "info", selected: true, children: "Selected" }) }),
4396
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "info", disabled: true, children: "Disabled" }) }),
4397
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "success" }),
4398
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "success", children: "Normal" }) }),
4399
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "success", hover: true, children: "Hover" }) }),
4400
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "success", focus: true, children: "Focus" }) }),
4401
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "success", active: true, children: "Active" }) }),
4402
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "success", selected: true, children: "Selected" }) }),
4403
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "success", disabled: true, children: "Disabled" }) }),
4404
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "warning" }),
4405
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "warning", children: "Normal" }) }),
4406
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "warning", hover: true, children: "Hover" }) }),
4407
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "warning", focus: true, children: "Focus" }) }),
4408
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "warning", active: true, children: "Active" }) }),
4409
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "warning", selected: true, children: "Selected" }) }),
4410
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "warning", disabled: true, children: "Disabled" }) }),
4411
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "error" }),
4412
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "error", children: "Normal" }) }),
4413
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "error", hover: true, children: "Hover" }) }),
4414
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "error", focus: true, children: "Focus" }) }),
4415
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "error", active: true, children: "Active" }) }),
4416
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "error", selected: true, children: "Selected" }) }),
4417
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "error", disabled: true, children: "Disabled" }) }),
4418
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "dark" }),
4419
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "dark", children: "Normal" }) }),
4420
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "dark", hover: true, children: "Hover" }) }),
4421
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "dark", focus: true, children: "Focus" }) }),
4422
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "dark", active: true, children: "Active" }) }),
4423
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "dark", selected: true, children: "Selected" }) }),
4424
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "dark", disabled: true, children: "Disabled" }) }),
4425
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "light" }),
4426
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "light", children: "Normal" }) }),
4427
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "light", hover: true, children: "Hover" }) }),
4428
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "light", focus: true, children: "Focus" }) }),
4429
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "light", active: true, children: "Active" }) }),
4430
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "light", selected: true, children: "Selected" }) }),
4431
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "light", disabled: true, children: "Disabled" }) }),
4432
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "inverse" }),
4433
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "inverse", children: "Normal" }) }),
4434
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "inverse", hover: true, children: "Hover" }) }),
4435
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "inverse", focus: true, children: "Focus" }) }),
4436
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "inverse", active: true, children: "Active" }) }),
4437
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "inverse", selected: true, children: "Selected" }) }),
4438
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "inverse", disabled: true, children: "Disabled" }) })
4363
+ [...Button.options.themeColor].map((themeColor) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(import_jsx_runtime8.Fragment, { children: [
4364
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: themeColor }),
4365
+ ["normal", ...Button.states].map((state) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_jsx_runtime8.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { fillMode: "solid", themeColor, ...{ [state]: true }, children: state }) }) }))
4366
+ ] }))
4439
4367
  ] })
4440
4368
  ] });
@@ -4335,12 +4335,15 @@ Button.defaultProps = defaultProps4;
4335
4335
 
4336
4336
  // src/button/templates/icon-button.tsx
4337
4337
  var import_jsx_runtime5 = require("react/jsx-runtime");
4338
+ var IconButton = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Button, { icon: "folder", ...props, children: void 0 });
4338
4339
 
4339
4340
  // src/button/templates/icon-text-button.tsx
4340
4341
  var import_jsx_runtime6 = require("react/jsx-runtime");
4342
+ var IconTextButton = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Button, { icon: "folder", children: "Button", ...props });
4341
4343
 
4342
4344
  // src/button/templates/text-button.tsx
4343
4345
  var import_jsx_runtime7 = require("react/jsx-runtime");
4346
+ var TextButton = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Button, { children: "Button", ...props });
4344
4347
 
4345
4348
  // src/button/tests/button.tsx
4346
4349
  var import_jsx_runtime8 = require("react/jsx-runtime");
@@ -4360,46 +4363,46 @@ var button_default = () => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(import_
4360
4363
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "Selected" }),
4361
4364
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "Disabled" }),
4362
4365
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "base" }),
4363
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { children: "Normal" }) }),
4364
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { hover: true, children: "Hover" }) }),
4365
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { focus: true, children: "Focus" }) }),
4366
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { active: true, children: "Active" }) }),
4367
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { selected: true, children: "Selected" }) }),
4368
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { disabled: true, children: "Disabled" }) }),
4366
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { children: "Normal" }) }),
4367
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { hover: true, children: "Hover" }) }),
4368
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { focus: true, children: "Focus" }) }),
4369
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { active: true, children: "Active" }) }),
4370
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { selected: true, children: "Selected" }) }),
4371
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { disabled: true, children: "Disabled" }) }),
4369
4372
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "^ text + icon" }),
4370
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", children: "Normal" }) }),
4371
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", hover: true, children: "Hover" }) }),
4372
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", focus: true, children: "Focus" }) }),
4373
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", active: true, children: "Active" }) }),
4374
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", selected: true, children: "Selected" }) }),
4375
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", disabled: true, children: "Disabled" }) }),
4373
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { children: "Normal" }) }),
4374
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { hover: true, children: "Hover" }) }),
4375
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { focus: true, children: "Focus" }) }),
4376
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { active: true, children: "Active" }) }),
4377
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { selected: true, children: "Selected" }) }),
4378
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { disabled: true, children: "Disabled" }) }),
4376
4379
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "^ icon" }),
4377
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder" }) }),
4378
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", hover: true }) }),
4379
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", focus: true }) }),
4380
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", active: true }) }),
4381
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", selected: true }) }),
4382
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { icon: "folder", disabled: true }) }),
4380
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, {}) }),
4381
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { hover: true }) }),
4382
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { focus: true }) }),
4383
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { active: true }) }),
4384
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { selected: true }) }),
4385
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { disabled: true }) }),
4383
4386
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "primary" }),
4384
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", children: "Normal" }) }),
4385
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", hover: true, children: "Hover" }) }),
4386
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", focus: true, children: "Focus" }) }),
4387
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", active: true, children: "Active" }) }),
4388
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", selected: true, children: "Selected" }) }),
4389
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", disabled: true, children: "Disabled" }) }),
4387
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", children: "Normal" }) }),
4388
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", hover: true, children: "Hover" }) }),
4389
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", focus: true, children: "Focus" }) }),
4390
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", active: true, children: "Active" }) }),
4391
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", selected: true, children: "Selected" }) }),
4392
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(TextButton, { themeColor: "primary", disabled: true, children: "Disabled" }) }),
4390
4393
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "^ text + icon" }),
4391
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", children: "Normal" }) }),
4392
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", hover: true, children: "Hover" }) }),
4393
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", focus: true, children: "Focus" }) }),
4394
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", active: true, children: "Active" }) }),
4395
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", selected: true, children: "Selected" }) }),
4396
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", disabled: true, children: "Disabled" }) }),
4394
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", children: "Normal" }) }),
4395
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", hover: true, children: "Hover" }) }),
4396
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", focus: true, children: "Focus" }) }),
4397
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", active: true, children: "Active" }) }),
4398
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", selected: true, children: "Selected" }) }),
4399
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconTextButton, { themeColor: "primary", disabled: true, children: "Disabled" }) }),
4397
4400
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: "^ icon" }),
4398
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder" }) }),
4399
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", hover: true }) }),
4400
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", focus: true }) }),
4401
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", active: true }) }),
4402
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", selected: true }) }),
4403
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { themeColor: "primary", icon: "folder", disabled: true }) })
4401
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary" }) }),
4402
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", hover: true }) }),
4403
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", focus: true }) }),
4404
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", active: true }) }),
4405
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", selected: true }) }),
4406
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { themeColor: "primary", disabled: true }) })
4404
4407
  ] })
4405
4408
  ] });
@@ -136,12 +136,16 @@ var BREADCRUMB_CLASSNAME = `k-breadcrumb`;
136
136
  var states = [
137
137
  States.focus
138
138
  ];
139
- var options = {};
139
+ var options = {
140
+ size: [Size.small, Size.medium, Size.large]
141
+ };
140
142
  var defaultProps = {
141
- collapsing: "auto"
143
+ collapsing: "auto",
144
+ size: Size.medium
142
145
  };
143
146
  var Breadcrumb = (props) => {
144
147
  const {
148
+ size = defaultProps.size,
145
149
  collapsing = defaultProps.collapsing,
146
150
  focus,
147
151
  ...other
@@ -156,6 +160,9 @@ var Breadcrumb = (props) => {
156
160
  stateClassNames(BREADCRUMB_CLASSNAME, {
157
161
  focus
158
162
  }),
163
+ optionClassNames(BREADCRUMB_CLASSNAME, {
164
+ size
165
+ }),
159
166
  {
160
167
  "k-breadcrumb-wrap": collapsing === "wrap"
161
168
  }
@@ -136,12 +136,16 @@ var BREADCRUMB_CLASSNAME = `k-breadcrumb`;
136
136
  var states = [
137
137
  States.focus
138
138
  ];
139
- var options = {};
139
+ var options = {
140
+ size: [Size.small, Size.medium, Size.large]
141
+ };
140
142
  var defaultProps = {
141
- collapsing: "auto"
143
+ collapsing: "auto",
144
+ size: Size.medium
142
145
  };
143
146
  var Breadcrumb = (props) => {
144
147
  const {
148
+ size = defaultProps.size,
145
149
  collapsing = defaultProps.collapsing,
146
150
  focus,
147
151
  ...other
@@ -156,6 +160,9 @@ var Breadcrumb = (props) => {
156
160
  stateClassNames(BREADCRUMB_CLASSNAME, {
157
161
  focus
158
162
  }),
163
+ optionClassNames(BREADCRUMB_CLASSNAME, {
164
+ size
165
+ }),
159
166
  {
160
167
  "k-breadcrumb-wrap": collapsing === "wrap"
161
168
  }
@@ -136,12 +136,16 @@ var BREADCRUMB_CLASSNAME = `k-breadcrumb`;
136
136
  var states = [
137
137
  States.focus
138
138
  ];
139
- var options = {};
139
+ var options = {
140
+ size: [Size.small, Size.medium, Size.large]
141
+ };
140
142
  var defaultProps = {
141
- collapsing: "auto"
143
+ collapsing: "auto",
144
+ size: Size.medium
142
145
  };
143
146
  var Breadcrumb = (props) => {
144
147
  const {
148
+ size = defaultProps.size,
145
149
  collapsing = defaultProps.collapsing,
146
150
  focus,
147
151
  ...other
@@ -156,6 +160,9 @@ var Breadcrumb = (props) => {
156
160
  stateClassNames(BREADCRUMB_CLASSNAME, {
157
161
  focus
158
162
  }),
163
+ optionClassNames(BREADCRUMB_CLASSNAME, {
164
+ size
165
+ }),
159
166
  {
160
167
  "k-breadcrumb-wrap": collapsing === "wrap"
161
168
  }
@@ -136,12 +136,16 @@ var BREADCRUMB_CLASSNAME = `k-breadcrumb`;
136
136
  var states = [
137
137
  States.focus
138
138
  ];
139
- var options = {};
139
+ var options = {
140
+ size: [Size.small, Size.medium, Size.large]
141
+ };
140
142
  var defaultProps = {
141
- collapsing: "auto"
143
+ collapsing: "auto",
144
+ size: Size.medium
142
145
  };
143
146
  var Breadcrumb = (props) => {
144
147
  const {
148
+ size = defaultProps.size,
145
149
  collapsing = defaultProps.collapsing,
146
150
  focus,
147
151
  ...other
@@ -156,6 +160,9 @@ var Breadcrumb = (props) => {
156
160
  stateClassNames(BREADCRUMB_CLASSNAME, {
157
161
  focus
158
162
  }),
163
+ optionClassNames(BREADCRUMB_CLASSNAME, {
164
+ size
165
+ }),
159
166
  {
160
167
  "k-breadcrumb-wrap": collapsing === "wrap"
161
168
  }
@@ -136,12 +136,16 @@ var BREADCRUMB_CLASSNAME = `k-breadcrumb`;
136
136
  var states = [
137
137
  States.focus
138
138
  ];
139
- var options = {};
139
+ var options = {
140
+ size: [Size.small, Size.medium, Size.large]
141
+ };
140
142
  var defaultProps = {
141
- collapsing: "auto"
143
+ collapsing: "auto",
144
+ size: Size.medium
142
145
  };
143
146
  var Breadcrumb = (props) => {
144
147
  const {
148
+ size = defaultProps.size,
145
149
  collapsing = defaultProps.collapsing,
146
150
  focus,
147
151
  ...other
@@ -156,6 +160,9 @@ var Breadcrumb = (props) => {
156
160
  stateClassNames(BREADCRUMB_CLASSNAME, {
157
161
  focus
158
162
  }),
163
+ optionClassNames(BREADCRUMB_CLASSNAME, {
164
+ size
165
+ }),
159
166
  {
160
167
  "k-breadcrumb-wrap": collapsing === "wrap"
161
168
  }