@progress/kendo-themes-html 7.1.0-dev.3 → 7.1.0-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1269 -1247
- package/dist/cjs/prompt/prompt-content.js +3 -4813
- package/dist/cjs/prompt/prompt-view.js +4862 -0
- package/dist/cjs/prompt/templates/prompt-more-actions.js +92 -72
- package/dist/cjs/prompt/templates/prompt-normal.js +89 -69
- package/dist/cjs/prompt/templates/prompt-output.js +120 -100
- package/dist/cjs/prompt/templates/prompt-popup.js +91 -71
- package/dist/cjs/prompt/templates/prompt-settings.js +86 -66
- package/dist/cjs/prompt/templates/prompt-suggestions.js +96 -76
- package/dist/cjs/prompt/tests/prompt-more-actions.js +98 -78
- package/dist/cjs/prompt/tests/prompt-normal.js +136 -116
- package/dist/cjs/prompt/tests/prompt-output.js +126 -106
- package/dist/cjs/timeline/horizontal-timeline-event.spec.js +1 -2
- package/dist/cjs/timeline/templates/timeline-horizontal.js +1 -2
- package/dist/cjs/timeline/templates/timeline-normal-alternating.js +1 -2
- package/dist/cjs/timeline/templates/timeline-normal-collapsible.js +1 -2
- package/dist/cjs/timeline/templates/timeline-normal.js +1 -2
- package/dist/cjs/timeline/tests/timeline-horizontal.js +1 -2
- package/dist/cjs/timeline/tests/timeline-vertical-alternating.js +1 -2
- package/dist/cjs/timeline/tests/timeline-vertical.js +1 -2
- package/dist/cjs/timeline/timeline-card-title.js +8 -165
- package/dist/cjs/timeline/timeline-card.spec.js +1 -2
- package/dist/cjs/timeline/timeline-track-wrap.spec.js +1 -2
- package/dist/cjs/timeline/vertical-timeline-event.spec.js +1 -2
- package/dist/esm/index.js +1095 -1073
- package/dist/esm/prompt/prompt-content.js +4 -4820
- package/dist/esm/prompt/prompt-view.js +4846 -0
- package/dist/esm/prompt/templates/prompt-more-actions.js +84 -64
- package/dist/esm/prompt/templates/prompt-normal.js +83 -63
- package/dist/esm/prompt/templates/prompt-output.js +108 -88
- package/dist/esm/prompt/templates/prompt-popup.js +86 -66
- package/dist/esm/prompt/templates/prompt-settings.js +77 -57
- package/dist/esm/prompt/templates/prompt-suggestions.js +90 -70
- package/dist/esm/prompt/tests/prompt-more-actions.js +89 -69
- package/dist/esm/prompt/tests/prompt-normal.js +123 -103
- package/dist/esm/prompt/tests/prompt-output.js +113 -93
- package/dist/esm/timeline/horizontal-timeline-event.spec.js +1 -2
- package/dist/esm/timeline/templates/timeline-horizontal.js +1 -2
- package/dist/esm/timeline/templates/timeline-normal-alternating.js +1 -2
- package/dist/esm/timeline/templates/timeline-normal-collapsible.js +1 -2
- package/dist/esm/timeline/templates/timeline-normal.js +1 -2
- package/dist/esm/timeline/tests/timeline-horizontal.js +1 -2
- package/dist/esm/timeline/tests/timeline-vertical-alternating.js +1 -2
- package/dist/esm/timeline/tests/timeline-vertical.js +1 -2
- package/dist/esm/timeline/timeline-card-title.js +8 -165
- package/dist/esm/timeline/timeline-card.spec.js +1 -2
- package/dist/esm/timeline/timeline-track-wrap.spec.js +1 -2
- package/dist/esm/timeline/vertical-timeline-event.spec.js +1 -2
- package/dist/types/prompt/index.d.ts +1 -0
- package/dist/types/prompt/prompt-content.d.ts +1 -7
- package/dist/types/prompt/prompt-view.d.ts +8 -0
- package/package.json +2 -2
- package/src/prompt/index.ts +1 -0
- package/src/prompt/prompt-content.tsx +1 -30
- package/src/prompt/prompt-view.tsx +51 -0
- package/src/prompt/templates/prompt-more-actions.tsx +11 -9
- package/src/prompt/templates/prompt-normal.tsx +4 -2
- package/src/prompt/templates/prompt-output.tsx +33 -31
- package/src/prompt/templates/prompt-popup.tsx +4 -2
- package/src/prompt/templates/prompt-settings.tsx +25 -23
- package/src/prompt/templates/prompt-suggestions.tsx +12 -10
- package/src/timeline/timeline-card-title.tsx +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ActionButtons } from "../../action-buttons";
|
|
2
2
|
import { IconTextButton, IconButton } from "../../button";
|
|
3
3
|
import { Toolbar } from "../../toolbar";
|
|
4
|
-
import { Prompt, PromptHeader, PromptFooter, PromptContent, PromptSuggestion } from "..";
|
|
4
|
+
import { Prompt, PromptHeader, PromptFooter, PromptContent, PromptSuggestion, PromptView } from "..";
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
export const PromptSuggestions = (props) => (
|
|
@@ -13,15 +13,17 @@ export const PromptSuggestions = (props) => (
|
|
|
13
13
|
<IconButton fillMode="flat" themeColor="primary" icon="more-horizontal" rounded="full"></IconButton>
|
|
14
14
|
</Toolbar>
|
|
15
15
|
</PromptHeader>
|
|
16
|
-
<PromptContent
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
16
|
+
<PromptContent>
|
|
17
|
+
<PromptView
|
|
18
|
+
showSearch
|
|
19
|
+
suggestions={
|
|
20
|
+
<>
|
|
21
|
+
<PromptSuggestion>Suggestion 1</PromptSuggestion>
|
|
22
|
+
<PromptSuggestion>Suggestion 2</PromptSuggestion>
|
|
23
|
+
<PromptSuggestion>Suggestion 3</PromptSuggestion>
|
|
24
|
+
</>
|
|
25
|
+
}>
|
|
26
|
+
</PromptView>
|
|
25
27
|
</PromptContent>
|
|
26
28
|
<PromptFooter>
|
|
27
29
|
<ActionButtons className="k-prompt-actions" alignment="start">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { classNames } from '../misc';
|
|
2
|
-
import {
|
|
2
|
+
import { Icon } from '../icon';
|
|
3
3
|
|
|
4
4
|
export const TIMELINECARDTITLE_CLASSNAME = `k-card-title`;
|
|
5
5
|
|
|
@@ -30,7 +30,7 @@ export const TimelineCardTitle = (
|
|
|
30
30
|
{...other}
|
|
31
31
|
>
|
|
32
32
|
<span className="k-event-title">{children}</span>
|
|
33
|
-
{collapsible && <
|
|
33
|
+
{collapsible && <span className="k-event-collapse k-button k-button-md k-rounded-md k-button-flat k-button-flat-base k-icon-button"><Icon icon="chevron-right" className="k-button-icon"/></span>}
|
|
34
34
|
</div>
|
|
35
35
|
);
|
|
36
36
|
};
|