@progress/kendo-themes-html 7.1.0-dev.0 → 7.1.0-dev.2

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 (136) hide show
  1. package/dist/cjs/gantt/tests/gantt.js +1 -1
  2. package/dist/cjs/index.js +1930 -1409
  3. package/dist/cjs/multiselecttree/multiselecttree.spec.js +4 -2
  4. package/dist/cjs/multiselecttree/templates/multiselecttree-adaptive.js +4 -2
  5. package/dist/cjs/multiselecttree/templates/multiselecttree-arrow-button.js +4 -2
  6. package/dist/cjs/multiselecttree/templates/multiselecttree-filtering.js +4 -2
  7. package/dist/cjs/multiselecttree/templates/multiselecttree-normal.js +4 -2
  8. package/dist/cjs/multiselecttree/templates/multiselecttree-popup.js +4 -2
  9. package/dist/cjs/multiselecttree/templates/multiselecttree-value.js +4 -2
  10. package/dist/cjs/multiselecttree/tests/multiselecttree-adaptive.js +4 -2
  11. package/dist/cjs/multiselecttree/tests/multiselecttree-flat.js +4 -2
  12. package/dist/cjs/multiselecttree/tests/multiselecttree-opened.js +4 -2
  13. package/dist/cjs/multiselecttree/tests/multiselecttree-outline.js +4 -2
  14. package/dist/cjs/multiselecttree/tests/multiselecttree-size-rounded.js +4 -2
  15. package/dist/cjs/multiselecttree/tests/multiselecttree-solid.js +4 -2
  16. package/dist/cjs/notification/tests/{notification-jquery-colors.js → notification-colors.js} +7 -7
  17. package/dist/cjs/notification/tests/{notification-angular.js → notification-group.js} +60 -24
  18. package/dist/cjs/notification/tests/{notification-jquery.js → notification.js} +7 -7
  19. package/dist/cjs/timeline/horizontal-timeline-event.spec.js +5044 -0
  20. package/dist/cjs/timeline/templates/timeline-horizontal.js +5163 -0
  21. package/dist/cjs/timeline/templates/timeline-normal-alternating.js +5056 -0
  22. package/dist/cjs/timeline/templates/timeline-normal-collapsible.js +5054 -0
  23. package/dist/cjs/timeline/templates/timeline-normal.js +5053 -0
  24. package/dist/cjs/timeline/tests/timeline-horizontal.js +653 -264
  25. package/dist/cjs/timeline/tests/timeline-vertical-alternating.js +550 -290
  26. package/dist/cjs/timeline/tests/timeline-vertical.js +563 -287
  27. package/dist/cjs/{notification/tests/notification-custom-angular.js → timeline/timeline-card-callout.js} +341 -152
  28. package/dist/cjs/{notification/tests/notification-angular-colors.js → timeline/timeline-card-title.js} +145 -76
  29. package/dist/cjs/timeline/timeline-card.spec.js +5043 -0
  30. package/dist/cjs/timeline/timeline-circle.spec.js +53 -0
  31. package/dist/cjs/timeline/timeline-date-wrap.spec.js +64 -0
  32. package/dist/cjs/timeline/timeline-event-list.spec.js +54 -0
  33. package/dist/cjs/timeline/timeline-flag-wrap.spec.js +88 -0
  34. package/dist/cjs/timeline/timeline-flag.spec.js +55 -0
  35. package/dist/cjs/timeline/timeline-track-item.spec.js +58 -0
  36. package/dist/cjs/timeline/timeline-track-wrap.spec.js +5082 -0
  37. package/dist/cjs/timeline/timeline-track.spec.js +54 -0
  38. package/dist/cjs/timeline/timeline.spec.js +71 -0
  39. package/dist/cjs/timeline/vertical-timeline-event.spec.js +5044 -0
  40. package/dist/esm/gantt/tests/gantt.js +1 -1
  41. package/dist/esm/index.js +1832 -1311
  42. package/dist/esm/multiselecttree/multiselecttree.spec.js +4 -2
  43. package/dist/esm/multiselecttree/templates/multiselecttree-adaptive.js +4 -2
  44. package/dist/esm/multiselecttree/templates/multiselecttree-arrow-button.js +4 -2
  45. package/dist/esm/multiselecttree/templates/multiselecttree-filtering.js +4 -2
  46. package/dist/esm/multiselecttree/templates/multiselecttree-normal.js +4 -2
  47. package/dist/esm/multiselecttree/templates/multiselecttree-popup.js +4 -2
  48. package/dist/esm/multiselecttree/templates/multiselecttree-value.js +4 -2
  49. package/dist/esm/multiselecttree/tests/multiselecttree-adaptive.js +4 -2
  50. package/dist/esm/multiselecttree/tests/multiselecttree-flat.js +4 -2
  51. package/dist/esm/multiselecttree/tests/multiselecttree-opened.js +4 -2
  52. package/dist/esm/multiselecttree/tests/multiselecttree-outline.js +4 -2
  53. package/dist/esm/multiselecttree/tests/multiselecttree-size-rounded.js +4 -2
  54. package/dist/esm/multiselecttree/tests/multiselecttree-solid.js +4 -2
  55. package/dist/esm/notification/tests/{notification-jquery-colors.js → notification-colors.js} +3 -3
  56. package/dist/esm/notification/tests/{notification-angular.js → notification-group.js} +57 -21
  57. package/dist/esm/notification/tests/{notification-jquery.js → notification.js} +3 -3
  58. package/dist/esm/timeline/horizontal-timeline-event.spec.js +5028 -0
  59. package/dist/esm/timeline/templates/timeline-horizontal.js +5147 -0
  60. package/dist/esm/timeline/templates/timeline-normal-alternating.js +5040 -0
  61. package/dist/esm/timeline/templates/timeline-normal-collapsible.js +5038 -0
  62. package/dist/esm/timeline/templates/timeline-normal.js +5037 -0
  63. package/dist/esm/timeline/tests/timeline-horizontal.js +654 -265
  64. package/dist/esm/timeline/tests/timeline-vertical-alternating.js +551 -291
  65. package/dist/esm/timeline/tests/timeline-vertical.js +564 -288
  66. package/dist/esm/{notification/tests/notification-custom-angular.js → timeline/timeline-card-callout.js} +337 -148
  67. package/dist/esm/{notification/tests/notification-angular-colors.js → timeline/timeline-card-title.js} +142 -73
  68. package/dist/esm/timeline/timeline-card.spec.js +5027 -0
  69. package/dist/esm/timeline/timeline-circle.spec.js +31 -0
  70. package/dist/esm/timeline/timeline-date-wrap.spec.js +42 -0
  71. package/dist/esm/timeline/timeline-event-list.spec.js +32 -0
  72. package/dist/esm/timeline/timeline-flag-wrap.spec.js +66 -0
  73. package/dist/esm/timeline/timeline-flag.spec.js +33 -0
  74. package/dist/esm/timeline/timeline-track-item.spec.js +36 -0
  75. package/dist/esm/timeline/timeline-track-wrap.spec.js +5066 -0
  76. package/dist/esm/timeline/timeline-track.spec.js +32 -0
  77. package/dist/esm/timeline/timeline.spec.js +49 -0
  78. package/dist/esm/timeline/vertical-timeline-event.spec.js +5028 -0
  79. package/dist/types/index.d.ts +1 -0
  80. package/dist/types/timeline/horizontal-timeline-event.spec.d.ts +19 -0
  81. package/dist/types/timeline/index.d.ts +18 -0
  82. package/dist/types/timeline/templates/timeline-horizontal.d.ts +1 -0
  83. package/dist/types/timeline/templates/timeline-normal-alternating.d.ts +1 -0
  84. package/dist/types/timeline/templates/timeline-normal-collapsible.d.ts +1 -0
  85. package/dist/types/timeline/templates/timeline-normal.d.ts +1 -0
  86. package/dist/types/timeline/timeline-card-callout.d.ts +9 -0
  87. package/dist/types/timeline/timeline-card-title.d.ts +11 -0
  88. package/dist/types/timeline/timeline-card.spec.d.ts +7 -0
  89. package/dist/types/timeline/timeline-circle.spec.d.ts +3 -0
  90. package/dist/types/timeline/timeline-date-wrap.spec.d.ts +14 -0
  91. package/dist/types/timeline/timeline-event-list.spec.d.ts +3 -0
  92. package/dist/types/timeline/timeline-flag-wrap.spec.d.ts +14 -0
  93. package/dist/types/timeline/timeline-flag.spec.d.ts +6 -0
  94. package/dist/types/timeline/timeline-track-item.spec.d.ts +8 -0
  95. package/dist/types/timeline/timeline-track-wrap.spec.d.ts +3 -0
  96. package/dist/types/timeline/timeline-track.spec.d.ts +3 -0
  97. package/dist/types/timeline/timeline.spec.d.ts +18 -0
  98. package/dist/types/timeline/vertical-timeline-event.spec.d.ts +25 -0
  99. package/package.json +2 -2
  100. package/src/card/card-title.tsx +1 -1
  101. package/src/gantt/tests/gantt.tsx +1 -1
  102. package/src/index.ts +1 -1
  103. package/src/multiselecttree/multiselecttree.spec.tsx +9 -8
  104. package/src/notification/tests/{notification-jquery-colors.tsx → notification-colors.tsx} +1 -1
  105. package/src/notification/tests/notification-group.tsx +49 -0
  106. package/src/notification/tests/{notification-jquery.tsx → notification.tsx} +1 -1
  107. package/src/timeline/horizontal-timeline-event.spec.tsx +66 -0
  108. package/src/timeline/index.ts +18 -0
  109. package/src/timeline/templates/timeline-horizontal.tsx +35 -0
  110. package/src/timeline/templates/timeline-normal-alternating.tsx +18 -0
  111. package/src/timeline/templates/timeline-normal-collapsible.tsx +16 -0
  112. package/src/timeline/templates/timeline-normal.tsx +15 -0
  113. package/src/timeline/tests/timeline-horizontal.tsx +3 -62
  114. package/src/timeline/tests/timeline-vertical-alternating.tsx +4 -82
  115. package/src/timeline/tests/timeline-vertical.tsx +9 -80
  116. package/src/timeline/timeline-card-callout.tsx +35 -0
  117. package/src/timeline/timeline-card-title.tsx +42 -0
  118. package/src/timeline/timeline-card.spec.tsx +37 -0
  119. package/src/timeline/timeline-circle.spec.tsx +24 -0
  120. package/src/timeline/timeline-date-wrap.spec.tsx +44 -0
  121. package/src/timeline/timeline-event-list.spec.tsx +27 -0
  122. package/src/timeline/timeline-flag-wrap.spec.tsx +47 -0
  123. package/src/timeline/timeline-flag.spec.tsx +31 -0
  124. package/src/timeline/timeline-track-item.spec.tsx +33 -0
  125. package/src/timeline/timeline-track-wrap.spec.tsx +31 -0
  126. package/src/timeline/timeline-track.spec.tsx +27 -0
  127. package/src/timeline/timeline.spec.tsx +53 -0
  128. package/src/timeline/vertical-timeline-event.spec.tsx +79 -0
  129. package/dist/types/notification/tests/notification-jquery-colors.d.ts +0 -2
  130. package/dist/types/notification/tests/notification-jquery.d.ts +0 -2
  131. package/src/notification/tests/notification-angular-colors.tsx +0 -28
  132. package/src/notification/tests/notification-angular.tsx +0 -65
  133. package/src/notification/tests/notification-custom-angular.tsx +0 -77
  134. /package/dist/types/notification/tests/{notification-angular-colors.d.ts → notification-colors.d.ts} +0 -0
  135. /package/dist/types/notification/tests/{notification-angular.d.ts → notification-group.d.ts} +0 -0
  136. /package/dist/types/notification/tests/{notification-custom-angular.d.ts → notification.d.ts} +0 -0
@@ -16,12 +16,14 @@ var __copyProps = (to, from, except, desc) => {
16
16
  };
17
17
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
18
 
19
- // src/notification/tests/notification-angular-colors.tsx
20
- var notification_angular_colors_exports = {};
21
- __export(notification_angular_colors_exports, {
22
- default: () => notification_angular_colors_default
19
+ // src/timeline/timeline-card-title.tsx
20
+ var timeline_card_title_exports = {};
21
+ __export(timeline_card_title_exports, {
22
+ TIMELINECARDTITLE_CLASSNAME: () => TIMELINECARDTITLE_CLASSNAME,
23
+ TimelineCardTitle: () => TimelineCardTitle,
24
+ default: () => timeline_card_title_default
23
25
  });
24
- module.exports = __toCommonJS(notification_angular_colors_exports);
26
+ module.exports = __toCommonJS(timeline_card_title_exports);
25
27
 
26
28
  // src/misc/class-names.ts
27
29
  var classNames = (...args) => {
@@ -59,6 +61,22 @@ var optionClassNames = (componentClassName, props) => {
59
61
  }
60
62
  );
61
63
  };
64
+ var stateClassNames = (_componentClassName, props) => {
65
+ return classNames({
66
+ "k-valid": props.valid,
67
+ "k-invalid": props.invalid,
68
+ "k-hover": props.hover,
69
+ "k-focus": props.focus,
70
+ "k-checked": props.checked,
71
+ "k-active": props.active,
72
+ "k-selected": props.selected,
73
+ "k-disabled": props.disabled,
74
+ "k-indeterminate": props.indeterminate && !props.checked,
75
+ "k-loading": props.loading,
76
+ "k-empty": props.empty,
77
+ "k-readonly": props.readonly
78
+ });
79
+ };
62
80
 
63
81
  // src/misc/theme.ts
64
82
  var Size = {
@@ -70,6 +88,19 @@ var Size = {
70
88
  "xxlarge": "xxlarge",
71
89
  "xxxlarge": "xxxlarge"
72
90
  };
91
+ var Roundness = {
92
+ "small": "small",
93
+ "medium": "medium",
94
+ "large": "large",
95
+ "full": "full"
96
+ };
97
+ var FillMode = {
98
+ "solid": "solid",
99
+ "flat": "flat",
100
+ "outline": "outline",
101
+ "clear": "clear",
102
+ "link": "link"
103
+ };
73
104
  var ThemeColor = {
74
105
  "inherit": "inherit",
75
106
  "base": "base",
@@ -84,6 +115,22 @@ var ThemeColor = {
84
115
  "light": "light",
85
116
  "inverse": "inverse"
86
117
  };
118
+ var States = {
119
+ "open": "open",
120
+ "hover": "hover",
121
+ "focus": "focus",
122
+ "active": "active",
123
+ "selected": "selected",
124
+ "disabled": "disabled",
125
+ "valid": "valid",
126
+ "invalid": "invalid",
127
+ "loading": "loading",
128
+ "required": "required",
129
+ "empty": "empty",
130
+ "indeterminate": "indeterminate",
131
+ "checked": "checked",
132
+ "readonly": "readonly"
133
+ };
87
134
 
88
135
  // src/icon/font-icon.spec.tsx
89
136
  var import_jsx_runtime = require("react/jsx-runtime");
@@ -4282,11 +4329,20 @@ Icon.states = states3;
4282
4329
  Icon.options = options3;
4283
4330
  Icon.defaultProps = defaultProps3;
4284
4331
 
4285
- // src/notification/notification.spec.tsx
4332
+ // src/button/button.spec.tsx
4286
4333
  var import_jsx_runtime4 = require("react/jsx-runtime");
4287
- var NOTIFICATION_CLASSNAME = `k-notification`;
4288
- var states4 = [];
4334
+ var BUTTON_CLASSNAME = `k-button`;
4335
+ var states4 = [
4336
+ States.hover,
4337
+ States.focus,
4338
+ States.active,
4339
+ States.selected,
4340
+ States.disabled
4341
+ ];
4289
4342
  var options4 = {
4343
+ size: [Size.small, Size.medium, Size.large],
4344
+ rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
4345
+ fillMode: [FillMode.solid, FillMode.flat, FillMode.outline, FillMode.clear, FillMode.link],
4290
4346
  themeColor: [
4291
4347
  ThemeColor.base,
4292
4348
  ThemeColor.primary,
@@ -4302,103 +4358,116 @@ var options4 = {
4302
4358
  ]
4303
4359
  };
4304
4360
  var defaultProps4 = {
4361
+ size: Size.medium,
4362
+ rounded: Roundness.medium,
4363
+ fillMode: FillMode.solid,
4305
4364
  themeColor: ThemeColor.base,
4306
- closable: false
4365
+ showArrow: false,
4366
+ arrowIconName: "caret-alt-down"
4307
4367
  };
4308
- var Notification = (props) => {
4368
+ var Button = (props) => {
4309
4369
  const {
4310
- actions,
4370
+ size = defaultProps4.size,
4371
+ rounded = defaultProps4.rounded,
4372
+ fillMode = defaultProps4.fillMode,
4311
4373
  themeColor = defaultProps4.themeColor,
4312
- text,
4374
+ hover,
4375
+ focus,
4376
+ active,
4377
+ selected,
4378
+ disabled,
4313
4379
  icon,
4314
- closable = defaultProps4.closable,
4380
+ text,
4381
+ iconClassName,
4382
+ showArrow = defaultProps4.showArrow,
4383
+ arrowIconName = defaultProps4.arrowIconName,
4315
4384
  ...other
4316
4385
  } = props;
4386
+ const hasIcon = icon !== void 0;
4387
+ const hasChildren = props.children !== void 0;
4317
4388
  return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
4318
- "div",
4389
+ "button",
4319
4390
  {
4320
4391
  ...other,
4321
4392
  className: classNames(
4322
4393
  props.className,
4323
- NOTIFICATION_CLASSNAME,
4324
- optionClassNames(NOTIFICATION_CLASSNAME, {
4394
+ BUTTON_CLASSNAME,
4395
+ optionClassNames(BUTTON_CLASSNAME, {
4396
+ size,
4397
+ rounded,
4398
+ fillMode,
4325
4399
  themeColor
4326
4400
  }),
4401
+ stateClassNames(BUTTON_CLASSNAME, {
4402
+ hover,
4403
+ focus,
4404
+ active,
4405
+ disabled,
4406
+ selected
4407
+ }),
4327
4408
  {
4328
- "k-notification-closable": closable
4409
+ ["k-icon-button"]: !text && !hasChildren && hasIcon
4329
4410
  }
4330
4411
  ),
4331
4412
  children: [
4332
- icon && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(Icon, { className: "k-notification-status", icon }),
4333
- props.children ? /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: "k-notification-content", children: [
4334
- text,
4413
+ icon && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
4414
+ Icon,
4415
+ {
4416
+ className: classNames(iconClassName, "k-button-icon"),
4417
+ icon
4418
+ }
4419
+ ),
4420
+ text ? /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
4421
+ text && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "k-button-text", children: text }),
4335
4422
  props.children
4336
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: text && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: "k-notification-content", children: text }) }),
4337
- actions && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "k-notification-actions", children: actions })
4423
+ ] }) : props.children && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "k-button-text", children: props.children }),
4424
+ showArrow && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "k-menu-button-arrow k-button-arrow", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(Icon, { icon: arrowIconName }) })
4338
4425
  ]
4339
4426
  }
4340
4427
  );
4341
4428
  };
4342
- Notification.states = states4;
4343
- Notification.options = options4;
4344
- Notification.className = NOTIFICATION_CLASSNAME;
4345
- Notification.defaultProps = defaultProps4;
4429
+ Button.states = states4;
4430
+ Button.options = options4;
4431
+ Button.className = BUTTON_CLASSNAME;
4432
+ Button.defaultProps = defaultProps4;
4346
4433
 
4347
- // src/notification/notification-action.tsx
4434
+ // src/button/templates/icon-button.tsx
4348
4435
  var import_jsx_runtime5 = require("react/jsx-runtime");
4349
- var className = `k-notification-action`;
4350
- var NotificationAction = (props) => {
4351
- const {
4352
- type
4353
- } = props;
4354
- let icon;
4355
- switch (type) {
4356
- case "close":
4357
- icon = /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon, { icon: "x" });
4358
- break;
4359
- default:
4360
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon, { icon: type });
4361
- }
4362
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", { className: classNames(
4363
- props.className,
4364
- className,
4365
- `k-notification-${type}-action`
4366
- ), children: icon });
4367
- };
4436
+ var IconButton = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Button, { icon: "folder", ...props, children: void 0 });
4368
4437
 
4369
- // src/notification/templates/icon-notification.tsx
4438
+ // src/button/templates/icon-text-button.tsx
4370
4439
  var import_jsx_runtime6 = require("react/jsx-runtime");
4371
4440
 
4372
- // src/notification/templates/icon-notification-closable.tsx
4441
+ // src/button/templates/text-button.tsx
4373
4442
  var import_jsx_runtime7 = require("react/jsx-runtime");
4374
4443
 
4375
- // src/notification/templates/notification-closable.tsx
4444
+ // src/timeline/timeline-card-title.tsx
4376
4445
  var import_jsx_runtime8 = require("react/jsx-runtime");
4377
- var NotificationClosable = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
4378
- Notification,
4379
- {
4380
- closable: true,
4381
- text: "Notification",
4382
- actions: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(NotificationAction, { type: "close" }),
4383
- ...props
4384
- }
4385
- );
4386
-
4387
- // src/notification/templates/notification-normal.tsx
4388
- var import_jsx_runtime9 = require("react/jsx-runtime");
4389
-
4390
- // src/notification/tests/notification-angular-colors.tsx
4391
- var import_jsx_runtime10 = require("react/jsx-runtime");
4392
- var styles = `
4393
- #test-area {
4394
- justify-items: start;
4395
- }
4396
-
4397
- .k-notification-container {
4398
- margin: 0;
4446
+ var TIMELINECARDTITLE_CLASSNAME = `k-card-title`;
4447
+ var states5 = [];
4448
+ var defaultProps5 = {};
4449
+ var TimelineCardTitle = (props) => {
4450
+ const {
4451
+ collapsible,
4452
+ children,
4453
+ ...other
4454
+ } = props;
4455
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
4456
+ "div",
4457
+ {
4458
+ className: classNames(
4459
+ props.className,
4460
+ TIMELINECARDTITLE_CLASSNAME
4461
+ ),
4462
+ ...other,
4463
+ children: [
4464
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "k-event-title", children }),
4465
+ collapsible && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(IconButton, { fillMode: "flat", icon: "chevron-right", className: "k-event-collapse" })
4466
+ ]
4399
4467
  }
4400
- `;
4401
- var notification_angular_colors_default = () => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_jsx_runtime10.Fragment, { children: [
4402
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("style", { children: styles }),
4403
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { id: "test-area", className: "k-d-grid k-grid-cols-2", children: Notification.options.themeColor.map((color) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "k-notification-container", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(NotificationClosable, { themeColor: color, text: `${color} notification` }) }) })) })
4404
- ] });
4468
+ );
4469
+ };
4470
+ TimelineCardTitle.states = states5;
4471
+ TimelineCardTitle.className = TIMELINECARDTITLE_CLASSNAME;
4472
+ TimelineCardTitle.defaultProps = defaultProps5;
4473
+ var timeline_card_title_default = TimelineCardTitle;