Skip to content

Commit c426027

Browse files
author
pipeline
committed
v20.3.47 is released
1 parent 27ab96a commit c426027

File tree

446 files changed

+1182
-671
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

446 files changed

+1182
-671
lines changed

components/base/CHANGELOG.md

+13

components/base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-base",
3-
"version": "20.2.36",
3+
"version": "17.15.0",
44
"description": "A common package of Essential JS 2 React base, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/src/component-base.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@
289289
if(!this.isDestroyed) {
290290
this.modelObserver.notify(eventName, eventProp, successHandler);
291291
}
292-
})
292+
}, 10)
293293
} else {
294294
this.modelObserver.notify(eventName, eventProp, successHandler);
295295
}
@@ -359,7 +359,7 @@
359359
}
360360
}
361361
}
362-
else if (newProp[i] === oldProp[i]) {
362+
else if (newProps[i] === oldProps[i]) {
363363
status = true;
364364
}
365365
else {

components/buttons/CHANGELOG.md

+26-8

components/buttons/package.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-buttons",
3-
"version": "20.2.46",
3+
"version": "18.44.0",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
@@ -28,13 +28,20 @@
2828
"form control",
2929
"form controls",
3030
"input",
31+
"fab",
32+
"floating button",
33+
"floating action button",
34+
"speeddial",
35+
"floating menu",
3136
"react",
3237
"reactjs",
3338
"ej2-react-buttons",
3439
"react-button",
3540
"react-checkbox",
3641
"react-radiobutton",
37-
"react-switch"
42+
"react-switch",
43+
"react-fab",
44+
"react-speeddial"
3845
],
3946
"repository": {
4047
"type": "git",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import * as React from 'react';
2+
import { Fab, FabModel } from '@syncfusion/ej2-buttons';
3+
import { ComponentBase, applyMixins, DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
4+
5+
6+
7+
/**
8+
* `FabComponent` represents the react Fab Component.
9+
* ```ts
10+
* <FabComponent></FabComponent>
11+
* ```
12+
*/
13+
export class FabComponent extends Fab {
14+
public state: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
15+
& Readonly<FabModel & DefaultHtmlAttributes>;
16+
public setState: any;
17+
private getDefaultAttributes: Function;
18+
public initRenderCalled: boolean = false;
19+
private checkInjectedModules: boolean = false;
20+
private immediateRender: boolean = true;
21+
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
22+
& Readonly<FabModel & DefaultHtmlAttributes>;
23+
public forceUpdate: (callBack?: () => any) => void;
24+
public context: Object;
25+
public portals: any = [];
26+
public isReactComponent: Object;
27+
public refs: {
28+
[key: string]: React.ReactInstance
29+
};
30+
constructor(props: any) {
31+
super(props);
32+
}
33+
34+
public render(): any {
35+
if (((this.element && !this.initRenderCalled) || this.refreshing) && !(this as any).isReactForeceUpdate) {
36+
super.render();
37+
this.initRenderCalled = true;
38+
} else {
39+
return React.createElement('button', this.getDefaultAttributes(),[].concat(this.props.children,this.portals));
40+
}
41+
42+
}
43+
}
44+
45+
applyMixins(FabComponent, [ComponentBase, React.Component]);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './fab.component';

components/buttons/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ export * from './check-box';
33
export * from './radio-button';
44
export * from './switch';
55
export * from './chips';
6+
export * from './floating-action-button';
7+
export * from './speed-dial';
68
export * from '@syncfusion/ej2-buttons';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './items-directive';
2+
export * from './speeddial.component';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { ComplexBase } from '@syncfusion/ej2-react-base';
2+
import { SpeedDialItemModel } from '@syncfusion/ej2-buttons';
3+
4+
5+
/**
6+
* `SpeedDialItemDirective` represent a item of the React SpeedDial.
7+
* It must be contained in a SpeedDial component(`SpeedDialComponent`).
8+
* ```tsx
9+
* <SpeedDialComponent>
10+
* <SpeedDialItemsDirective>
11+
* <SpeedDialItemDirective text='Cut'></SpeedDialItemDirective>
12+
* <SpeedDialItemDirective text='Copy'></SpeedDialItemDirective>
13+
* <SpeedDialItemsDirective>
14+
* </SpeedDialComponent>
15+
* ```
16+
*/
17+
export class SpeedDialItemDirective extends ComplexBase<SpeedDialItemModel & { children?: React.ReactNode }, SpeedDialItemModel> {
18+
public static moduleName: string = 'speedDialItem';
19+
}
20+
21+
export class SpeedDialItemsDirective extends ComplexBase<{}, {}> {
22+
public static propertyName: string = 'items';
23+
public static moduleName: string = 'speedDialItems';
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import * as React from 'react';
2+
import { SpeedDial, SpeedDialModel } from '@syncfusion/ej2-buttons';
3+
import { ComponentBase, applyMixins, DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
4+
5+
6+
export interface SpeedDialTypecast {
7+
itemTemplate?: string | Function | any;
8+
popupTemplate?: string | Function | any;
9+
}
10+
/**
11+
* `SpeedDialComponent` represents the react SpeedDial Component.
12+
* ```ts
13+
* <SpeedDialComponent content='Edit'></SpeedDialComponent>
14+
* ```
15+
*/
16+
export class SpeedDialComponent extends SpeedDial {
17+
public state: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
18+
& Readonly<SpeedDialModel & DefaultHtmlAttributes| SpeedDialTypecast>;
19+
public setState: any;
20+
private getDefaultAttributes: Function;
21+
public initRenderCalled: boolean = false;
22+
private checkInjectedModules: boolean = false;
23+
public directivekeys: { [key: string]: Object } = {'speedDialItems': 'speedDialItem'};
24+
private immediateRender: boolean = false;
25+
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
26+
& Readonly<SpeedDialModel & DefaultHtmlAttributes| SpeedDialTypecast>;
27+
public forceUpdate: (callBack?: () => any) => void;
28+
public context: Object;
29+
public portals: any = [];
30+
public isReactComponent: Object;
31+
public refs: {
32+
[key: string]: React.ReactInstance
33+
};
34+
constructor(props: any) {
35+
super(props);
36+
}
37+
38+
public render(): any {
39+
if (((this.element && !this.initRenderCalled) || this.refreshing) && !(this as any).isReactForeceUpdate) {
40+
super.render();
41+
this.initRenderCalled = true;
42+
} else {
43+
return React.createElement('button', this.getDefaultAttributes(),[].concat(this.props.children,this.portals));
44+
}
45+
46+
}
47+
}
48+
49+
applyMixins(SpeedDialComponent, [ComponentBase, React.Component]);

components/buttons/styles/bootstrap-dark.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/bootstrap-dark.scss';
44
@import 'switch/bootstrap-dark.scss';
55
@import 'chips/bootstrap-dark.scss';
6+
@import 'floating-action-button/bootstrap-dark.scss';
7+
@import 'speed-dial/bootstrap-dark.scss';

components/buttons/styles/bootstrap.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/bootstrap.scss';
44
@import 'switch/bootstrap.scss';
55
@import 'chips/bootstrap.scss';
6+
@import 'floating-action-button/bootstrap.scss';
7+
@import 'speed-dial/bootstrap.scss';

components/buttons/styles/bootstrap4.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/bootstrap4.scss';
44
@import 'switch/bootstrap4.scss';
55
@import 'chips/bootstrap4.scss';
6+
@import 'floating-action-button/bootstrap4.scss';
7+
@import 'speed-dial/bootstrap4.scss';

components/buttons/styles/bootstrap5-dark.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/bootstrap5-dark.scss';
44
@import 'switch/bootstrap5-dark.scss';
55
@import 'chips/bootstrap5-dark.scss';
6+
@import 'floating-action-button/bootstrap5-dark.scss';
7+
@import 'speed-dial/bootstrap5-dark.scss';

components/buttons/styles/bootstrap5.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/bootstrap5.scss';
44
@import 'switch/bootstrap5.scss';
55
@import 'chips/bootstrap5.scss';
6+
@import 'floating-action-button/bootstrap5.scss';
7+
@import 'speed-dial/bootstrap5.scss';

components/buttons/styles/fabric-dark.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/fabric-dark.scss';
44
@import 'switch/fabric-dark.scss';
55
@import 'chips/fabric-dark.scss';
6+
@import 'floating-action-button/fabric-dark.scss';
7+
@import 'speed-dial/fabric-dark.scss';

components/buttons/styles/fabric.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/fabric.scss';
44
@import 'switch/fabric.scss';
55
@import 'chips/fabric.scss';
6+
@import 'floating-action-button/fabric.scss';
7+
@import 'speed-dial/fabric.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/bootstrap-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/bootstrap.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/bootstrap5-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/bootstrap5.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/fabric-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/fabric.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/fluent-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/fluent.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/highcontrast-light.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/highcontrast.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/material-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/material.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/tailwind-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/floating-action-button/tailwind.scss';

components/buttons/styles/fluent-dark.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/fluent-dark.scss';
44
@import 'switch/fluent-dark.scss';
55
@import 'chips/fluent-dark.scss';
6+
@import 'floating-action-button/fluent-dark.scss';
7+
@import 'speed-dial/fluent-dark.scss';

components/buttons/styles/fluent.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/fluent.scss';
44
@import 'switch/fluent.scss';
55
@import 'chips/fluent.scss';
6+
@import 'floating-action-button/fluent.scss';
7+
@import 'speed-dial/fluent.scss';

components/buttons/styles/highcontrast-light.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/highcontrast-light.scss';
44
@import 'switch/highcontrast-light.scss';
55
@import 'chips/highcontrast-light.scss';
6+
@import 'floating-action-button/highcontrast-light.scss';
7+
@import 'speed-dial/highcontrast-light.scss';

components/buttons/styles/highcontrast.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/highcontrast.scss';
44
@import 'switch/highcontrast.scss';
55
@import 'chips/highcontrast.scss';
6+
@import 'floating-action-button/highcontrast.scss';
7+
@import 'speed-dial/highcontrast.scss';

components/buttons/styles/material-dark.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/material-dark.scss';
44
@import 'switch/material-dark.scss';
55
@import 'chips/material-dark.scss';
6+
@import 'floating-action-button/material-dark.scss';
7+
@import 'speed-dial/material-dark.scss';

components/buttons/styles/material.scss

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
@import 'radio-button/material.scss';
44
@import 'switch/material.scss';
55
@import 'chips/material.scss';
6+
@import 'floating-action-button/material.scss';
7+
@import 'speed-dial/material.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/bootstrap-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/bootstrap.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/bootstrap5-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/bootstrap5.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/fabric-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/fabric.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/fluent-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/fluent.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/highcontrast-light.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/highcontrast.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/speed-dial/material-dark.scss';

0 commit comments

Comments
 (0)