@progress/kendo-themes-html 6.7.0-dev.3 → 6.7.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.
@@ -9,6 +9,7 @@ export * from './avatar/index';
9
9
  export * from './badge/index';
10
10
  export * from './chip/index';
11
11
  export * from './color-preview/index';
12
+ export * from './form/index';
12
13
  export * from './button/index';
13
14
  export * from './button-group/index';
14
15
  export * from './menu-button/index';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-themes-html",
3
3
  "description": "A collection of HTML helpers used for developing Kendo UI themes",
4
- "version": "6.7.0-dev.3",
4
+ "version": "6.7.0-dev.4",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -51,5 +51,5 @@
51
51
  "devDependencies": {
52
52
  "@types/react": "^18.0.2"
53
53
  },
54
- "gitHead": "13f0e9d31474eca02c4ee6a62a4f182bdf7633cb"
54
+ "gitHead": "a55f3840f62eb640cff3a1a170bad731c6ce84f1"
55
55
  }
@@ -1,6 +1,5 @@
1
1
  import { classNames } from '../misc';
2
2
  import { Button } from '../button';
3
- import { Toolbar } from '../toolbar';
4
3
  import { Textbox } from '../textbox';
5
4
 
6
5
  const CHAT_CLASSNAME = 'k-chat';
@@ -59,21 +58,21 @@ export const Chat = (
59
58
  />
60
59
  }
61
60
  { showToolbar &&
62
- <Toolbar className="k-chat-toolbar">
63
- <Button className="k-scroll-button k-scroll-button-left k-hidden" fillMode="flat" rounded={null} size={null} icon="chevron-left"></Button>
61
+ <div className="k-chat-toolbar k-toolbar">
62
+ <Button className="k-scroll-button k-scroll-button-left k-hidden" icon="chevron-left" />
64
63
  <div className="k-toolbar-group k-button-list">
65
- <Button fillMode="flat" icon="arrow-rotate-cw"></Button>
66
- <Button fillMode="flat" icon="gear"></Button>
67
- <Button fillMode="flat" icon="wrench"></Button>
68
- <Button fillMode="flat" icon="plus"></Button>
69
- <Button fillMode="flat" icon="search"></Button>
70
- <Button fillMode="flat" icon="star"></Button>
71
- <Button fillMode="flat" icon="bell"></Button>
72
- <Button fillMode="flat" icon="question-circle"></Button>
73
- <Button fillMode="flat" icon="trash"></Button>
64
+ <Button icon="arrow-rotate-cw"></Button>
65
+ <Button icon="gear"></Button>
66
+ <Button icon="wrench"></Button>
67
+ <Button icon="plus"></Button>
68
+ <Button icon="search"></Button>
69
+ <Button icon="star"></Button>
70
+ <Button icon="bell"></Button>
71
+ <Button icon="question-circle"></Button>
72
+ <Button icon="trash"></Button>
74
73
  </div>
75
- <Button className="k-scroll-button k-scroll-button-right" fillMode="flat" rounded={null} size={null} icon="chevron-right"></Button>
76
- </Toolbar>
74
+ <Button className="k-scroll-button k-scroll-button-right" icon="chevron-right" />
75
+ </div>
77
76
  }
78
77
  </div>
79
78
 
package/src/index.ts CHANGED
@@ -21,6 +21,7 @@ export * from './color-preview/index';
21
21
  // export * from './skeleton/index';
22
22
 
23
23
  // Native forms
24
+ export * from './form/index';
24
25
  export * from './button/index';
25
26
  export * from './button-group/index';
26
27
  export * from './menu-button/index';