@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
@@ -5733,8 +5733,10 @@ var MultiSelectTree = (props) => {
5733
5733
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5734
5734
  children: [
5735
5735
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5736
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5737
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5736
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5737
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5738
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5739
+ ] }),
5738
5740
  /* @__PURE__ */ jsx54(
5739
5741
  InputValidationIcon,
5740
5742
  {
@@ -5733,8 +5733,10 @@ var MultiSelectTree = (props) => {
5733
5733
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5734
5734
  children: [
5735
5735
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5736
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5737
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5736
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5737
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5738
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5739
+ ] }),
5738
5740
  /* @__PURE__ */ jsx54(
5739
5741
  InputValidationIcon,
5740
5742
  {
@@ -5733,8 +5733,10 @@ var MultiSelectTree = (props) => {
5733
5733
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5734
5734
  children: [
5735
5735
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5736
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5737
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5736
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5737
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5738
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5739
+ ] }),
5738
5740
  /* @__PURE__ */ jsx54(
5739
5741
  InputValidationIcon,
5740
5742
  {
@@ -5840,8 +5840,10 @@ var MultiSelectTree = (props) => {
5840
5840
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5841
5841
  children: [
5842
5842
  /* @__PURE__ */ jsx58(InputPrefix, { children: prefix }),
5843
- /* @__PURE__ */ jsx58(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx58(Fragment19, { children: tags }) }),
5844
- /* @__PURE__ */ jsx58("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx58("span", { className: "k-input-value-text", children: placeholder }) }),
5843
+ /* @__PURE__ */ jsxs19("div", { className: "k-input-values", children: [
5844
+ /* @__PURE__ */ jsx58(ChipList, { size, children: /* @__PURE__ */ jsx58(Fragment19, { children: tags }) }),
5845
+ /* @__PURE__ */ jsx58(InputInnerInput, { placeholder })
5846
+ ] }),
5845
5847
  /* @__PURE__ */ jsx58(
5846
5848
  InputValidationIcon,
5847
5849
  {
@@ -5733,8 +5733,10 @@ var MultiSelectTree = (props) => {
5733
5733
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5734
5734
  children: [
5735
5735
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5736
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5737
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5736
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5737
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5738
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5739
+ ] }),
5738
5740
  /* @__PURE__ */ jsx54(
5739
5741
  InputValidationIcon,
5740
5742
  {
@@ -5733,8 +5733,10 @@ var MultiSelectTree = (props) => {
5733
5733
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5734
5734
  children: [
5735
5735
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5736
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5737
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5736
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5737
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5738
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5739
+ ] }),
5738
5740
  /* @__PURE__ */ jsx54(
5739
5741
  InputValidationIcon,
5740
5742
  {
@@ -5763,8 +5763,10 @@ var MultiSelectTree = (props) => {
5763
5763
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5764
5764
  children: [
5765
5765
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5766
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5767
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5766
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5767
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5768
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5769
+ ] }),
5768
5770
  /* @__PURE__ */ jsx54(
5769
5771
  InputValidationIcon,
5770
5772
  {
@@ -5733,8 +5733,10 @@ var MultiSelectTree = (props) => {
5733
5733
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5734
5734
  children: [
5735
5735
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5736
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5737
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5736
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5737
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5738
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5739
+ ] }),
5738
5740
  /* @__PURE__ */ jsx54(
5739
5741
  InputValidationIcon,
5740
5742
  {
@@ -5763,8 +5763,10 @@ var MultiSelectTree = (props) => {
5763
5763
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5764
5764
  children: [
5765
5765
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5766
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5767
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5766
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5767
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5768
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5769
+ ] }),
5768
5770
  /* @__PURE__ */ jsx54(
5769
5771
  InputValidationIcon,
5770
5772
  {
@@ -5763,8 +5763,10 @@ var MultiSelectTree = (props) => {
5763
5763
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5764
5764
  children: [
5765
5765
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5766
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5767
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5766
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5767
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5768
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5769
+ ] }),
5768
5770
  /* @__PURE__ */ jsx54(
5769
5771
  InputValidationIcon,
5770
5772
  {
@@ -5763,8 +5763,10 @@ var MultiSelectTree = (props) => {
5763
5763
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5764
5764
  children: [
5765
5765
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5766
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5767
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5766
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5767
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5768
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5769
+ ] }),
5768
5770
  /* @__PURE__ */ jsx54(
5769
5771
  InputValidationIcon,
5770
5772
  {
@@ -5763,8 +5763,10 @@ var MultiSelectTree = (props) => {
5763
5763
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5764
5764
  children: [
5765
5765
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5766
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5767
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5766
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5767
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5768
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5769
+ ] }),
5768
5770
  /* @__PURE__ */ jsx54(
5769
5771
  InputValidationIcon,
5770
5772
  {
@@ -5763,8 +5763,10 @@ var MultiSelectTree = (props) => {
5763
5763
  className: classNames(props.className, MULTISELECTTREE_CLASSNAME),
5764
5764
  children: [
5765
5765
  /* @__PURE__ */ jsx54(InputPrefix, { children: prefix }),
5766
- /* @__PURE__ */ jsx54(ChipList, { size, className: "k-input-values", children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5767
- /* @__PURE__ */ jsx54("span", { className: "k-input-inner", children: /* @__PURE__ */ jsx54("span", { className: "k-input-value-text", children: placeholder }) }),
5766
+ /* @__PURE__ */ jsxs16("div", { className: "k-input-values", children: [
5767
+ /* @__PURE__ */ jsx54(ChipList, { size, children: /* @__PURE__ */ jsx54(Fragment17, { children: tags }) }),
5768
+ /* @__PURE__ */ jsx54(InputInnerInput, { placeholder })
5769
+ ] }),
5768
5770
  /* @__PURE__ */ jsx54(
5769
5771
  InputValidationIcon,
5770
5772
  {
@@ -4404,7 +4404,7 @@ AnimationContainer.options = options5;
4404
4404
  AnimationContainer.className = ANIMATION_CONTAINER_CLASSNAME;
4405
4405
  AnimationContainer.defaultProps = defaultProps5;
4406
4406
 
4407
- // src/notification/tests/notification-jquery-colors.tsx
4407
+ // src/notification/tests/notification-colors.tsx
4408
4408
  import { Fragment as Fragment5, jsx as jsx11, jsxs as jsxs2 } from "react/jsx-runtime";
4409
4409
  var styles = `
4410
4410
  #test-area {
@@ -4416,10 +4416,10 @@ var styles = `
4416
4416
  overflow: visible;
4417
4417
  }
4418
4418
  `;
4419
- var notification_jquery_colors_default = () => /* @__PURE__ */ jsxs2(Fragment5, { children: [
4419
+ var notification_colors_default = () => /* @__PURE__ */ jsxs2(Fragment5, { children: [
4420
4420
  /* @__PURE__ */ jsx11("style", { children: styles }),
4421
4421
  /* @__PURE__ */ jsx11("div", { id: "test-area", className: "k-d-grid k-grid-cols-2", children: Notification.options.themeColor.map((color) => /* @__PURE__ */ jsx11("div", { children: /* @__PURE__ */ jsx11(AnimationContainer, { children: /* @__PURE__ */ jsx11(NotificationClosable, { themeColor: color, text: `${color} notification` }) }) })) })
4422
4422
  ] });
4423
4423
  export {
4424
- notification_jquery_colors_default as default
4424
+ notification_colors_default as default
4425
4425
  };
@@ -4393,32 +4393,68 @@ var NotificationNormal = (props) => /* @__PURE__ */ jsx9(
4393
4393
  }
4394
4394
  );
4395
4395
 
4396
- // src/notification/tests/notification-angular.tsx
4397
- import { Fragment as Fragment5, jsx as jsx10, jsxs as jsxs2 } from "react/jsx-runtime";
4398
- var styles = `
4399
- #test-area {
4400
- justify-items: start;
4396
+ // src/animation-container/animation-container.spec.tsx
4397
+ import { jsx as jsx10 } from "react/jsx-runtime";
4398
+ var ANIMATION_CONTAINER_CLASSNAME = `k-animation-container`;
4399
+ var states5 = [];
4400
+ var options5 = {};
4401
+ var defaultProps5 = {
4402
+ positionMode: "absolute"
4403
+ };
4404
+ var AnimationContainer = (props) => {
4405
+ const {
4406
+ positionMode,
4407
+ animationStyle,
4408
+ offset,
4409
+ ...other
4410
+ } = props;
4411
+ return /* @__PURE__ */ jsx10(
4412
+ "div",
4413
+ {
4414
+ ...other,
4415
+ style: { ...offset, ...props.style },
4416
+ className: classNames(
4417
+ ANIMATION_CONTAINER_CLASSNAME,
4418
+ "k-animation-container-shown",
4419
+ {
4420
+ ["k-animation-container-fixed"]: positionMode === "fixed"
4421
+ }
4422
+ ),
4423
+ children: /* @__PURE__ */ jsx10("div", { className: "k-child-animation-container", style: animationStyle, children: props.children })
4401
4424
  }
4425
+ );
4426
+ };
4427
+ AnimationContainer.states = states5;
4428
+ AnimationContainer.options = options5;
4429
+ AnimationContainer.className = ANIMATION_CONTAINER_CLASSNAME;
4430
+ AnimationContainer.defaultProps = defaultProps5;
4402
4431
 
4403
- .k-notification-container {
4404
- margin: 0;
4432
+ // src/notification/tests/notification-group.tsx
4433
+ import { Fragment as Fragment5, jsx as jsx11, jsxs as jsxs2 } from "react/jsx-runtime";
4434
+ var styles = `
4435
+ .k-notification-group, .k-animation-container {
4436
+ position: static;
4405
4437
  }
4406
4438
  `;
4407
- var notification_angular_default = () => /* @__PURE__ */ jsxs2(Fragment5, { children: [
4408
- /* @__PURE__ */ jsx10("style", { children: styles }),
4409
- /* @__PURE__ */ jsxs2("div", { id: "test-area", className: "k-d-grid k-grid-cols-4", children: [
4410
- /* @__PURE__ */ jsx10("span", { className: "k-colspan-all k-col-span-full", children: "LTR" }),
4411
- /* @__PURE__ */ jsx10("div", { children: /* @__PURE__ */ jsx10("div", { className: "k-notification-container", children: /* @__PURE__ */ jsx10(NotificationNormal, { text: "Default notification" }) }) }),
4412
- /* @__PURE__ */ jsx10("div", { children: /* @__PURE__ */ jsx10("div", { className: "k-notification-container", children: /* @__PURE__ */ jsx10(IconNotification, { text: "Icon notification" }) }) }),
4413
- /* @__PURE__ */ jsx10("div", { children: /* @__PURE__ */ jsx10("div", { className: "k-notification-container", children: /* @__PURE__ */ jsx10(NotificationClosable, { text: "Closable notification" }) }) }),
4414
- /* @__PURE__ */ jsx10("div", { children: /* @__PURE__ */ jsx10("div", { className: "k-notification-container", children: /* @__PURE__ */ jsx10(IconNotificationClosable, { text: "Closable notification with icon" }) }) }),
4415
- /* @__PURE__ */ jsx10("span", { className: "k-colspan-all k-col-span-full", children: "RTL" }),
4416
- /* @__PURE__ */ jsx10("div", { dir: "rtl", children: /* @__PURE__ */ jsx10("div", { className: "k-notification-container", children: /* @__PURE__ */ jsx10(NotificationNormal, { text: "Default notification" }) }) }),
4417
- /* @__PURE__ */ jsx10("div", { dir: "rtl", children: /* @__PURE__ */ jsx10("div", { className: "k-notification-container", children: /* @__PURE__ */ jsx10(IconNotification, { text: "Icon notification" }) }) }),
4418
- /* @__PURE__ */ jsx10("div", { dir: "rtl", children: /* @__PURE__ */ jsx10("div", { className: "k-notification-container", children: /* @__PURE__ */ jsx10(NotificationClosable, { text: "Closable notification" }) }) }),
4419
- /* @__PURE__ */ jsx10("div", { dir: "rtl", children: /* @__PURE__ */ jsx10("div", { className: "k-notification-container", children: /* @__PURE__ */ jsx10(IconNotificationClosable, { text: "Closable notification with icon" }) }) })
4439
+ var notification_group_default = () => /* @__PURE__ */ jsxs2(Fragment5, { children: [
4440
+ /* @__PURE__ */ jsx11("style", { children: styles }),
4441
+ /* @__PURE__ */ jsxs2("div", { id: "test-area", className: "k-d-grid k-grid-cols-2", children: [
4442
+ /* @__PURE__ */ jsx11("span", { className: "k-col-span-1", children: "LTR" }),
4443
+ /* @__PURE__ */ jsx11("span", { className: "k-col-span-1", children: "RTL" }),
4444
+ /* @__PURE__ */ jsxs2("div", { className: "k-notification-group", children: [
4445
+ /* @__PURE__ */ jsx11(AnimationContainer, { children: /* @__PURE__ */ jsx11(NotificationNormal, { text: "Default notification" }) }),
4446
+ /* @__PURE__ */ jsx11(AnimationContainer, { children: /* @__PURE__ */ jsx11(IconNotification, { text: "Icon notification" }) }),
4447
+ /* @__PURE__ */ jsx11(AnimationContainer, { children: /* @__PURE__ */ jsx11(NotificationClosable, { text: "Closable notification" }) }),
4448
+ /* @__PURE__ */ jsx11(AnimationContainer, { children: /* @__PURE__ */ jsx11(IconNotificationClosable, { text: "Closable notification with icon" }) })
4449
+ ] }),
4450
+ /* @__PURE__ */ jsxs2("div", { className: "k-notification-group k-rtl", children: [
4451
+ /* @__PURE__ */ jsx11(AnimationContainer, { children: /* @__PURE__ */ jsx11(NotificationNormal, { text: "Default notification" }) }),
4452
+ /* @__PURE__ */ jsx11(AnimationContainer, { children: /* @__PURE__ */ jsx11(IconNotification, { text: "Icon notification" }) }),
4453
+ /* @__PURE__ */ jsx11(AnimationContainer, { children: /* @__PURE__ */ jsx11(NotificationClosable, { text: "Closable notification" }) }),
4454
+ /* @__PURE__ */ jsx11(AnimationContainer, { children: /* @__PURE__ */ jsx11(IconNotificationClosable, { text: "Closable notification with icon" }) })
4455
+ ] })
4420
4456
  ] })
4421
4457
  ] });
4422
4458
  export {
4423
- notification_angular_default as default
4459
+ notification_group_default as default
4424
4460
  };
@@ -4429,7 +4429,7 @@ AnimationContainer.options = options5;
4429
4429
  AnimationContainer.className = ANIMATION_CONTAINER_CLASSNAME;
4430
4430
  AnimationContainer.defaultProps = defaultProps5;
4431
4431
 
4432
- // src/notification/tests/notification-jquery.tsx
4432
+ // src/notification/tests/notification.tsx
4433
4433
  import { Fragment as Fragment5, jsx as jsx11, jsxs as jsxs2 } from "react/jsx-runtime";
4434
4434
  var styles = `
4435
4435
  #test-area {
@@ -4441,7 +4441,7 @@ var styles = `
4441
4441
  overflow: visible;
4442
4442
  }
4443
4443
  `;
4444
- var notification_jquery_default = () => /* @__PURE__ */ jsxs2(Fragment5, { children: [
4444
+ var notification_default = () => /* @__PURE__ */ jsxs2(Fragment5, { children: [
4445
4445
  /* @__PURE__ */ jsx11("style", { children: styles }),
4446
4446
  /* @__PURE__ */ jsxs2("div", { id: "test-area", className: "k-d-grid k-grid-cols-4", children: [
4447
4447
  /* @__PURE__ */ jsx11("span", { className: "k-colspan-all k-col-span-full", children: "LTR" }),
@@ -4457,5 +4457,5 @@ var notification_jquery_default = () => /* @__PURE__ */ jsxs2(Fragment5, { child
4457
4457
  ] })
4458
4458
  ] });
4459
4459
  export {
4460
- notification_jquery_default as default
4460
+ notification_default as default
4461
4461
  };