Skip to content

Commit

Permalink
10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarkov committed Aug 16, 2021
1 parent 99d34fe commit fb1aab5
Show file tree
Hide file tree
Showing 692 changed files with 218,632 additions and 33,728 deletions.
505 changes: 505 additions & 0 deletions alertwindow/alertwindow.d.ts

Large diffs are not rendered by default.

1,146 changes: 1,146 additions & 0 deletions alertwindow/alertwindow.esm.js

Large diffs are not rendered by default.

1,157 changes: 1,157 additions & 0 deletions alertwindow/alertwindow.umd.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions alertwindow/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"main": "alertwindow.umd.js",
"module": "alertwindow.esm.js",
"typings": "alertwindow.d.ts",
"name": "smart-webcomponents-react/alertwindow",
"sideEffects": false
}
24 changes: 21 additions & 3 deletions button/multisplitbutton.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export declare const Smart: any;
export interface MultiSplitButtonProps extends MultiSplitButtonProperties {
className?: string;
style?: React.CSSProperties;
onButtonClick?: ((event?: Event) => void) | undefined;
onChange?: ((event?: Event) => void) | undefined;
onClose?: ((event?: Event) => void) | undefined;
onClosing?: ((event?: Event) => void) | undefined;
Expand Down Expand Up @@ -206,17 +207,34 @@ export declare class MultiSplitButton extends React.Component<React.HTMLAttribut
get virtualized(): boolean;
set virtualized(value: boolean);
get properties(): string[];
/** This event is triggered when button's dropDown selection is changed.
/** This event is triggered when action button is clicked.
* @param event. The custom event. */
onButtonClick?: ((event?: Event) => void) | undefined;
/** This event is triggered when the selection is changed.
* @param event. The custom event. Custom event was created with: event.detail( addedItems, disabled, index, label, removedItems, selected, value)
* addedItems - An array of List items that have been selected.
* disabled - A flag indicating whether or not the item that caused the change event is disabled.
* index - The index of the List item that triggered the event.
* label - The label of the List item that triggered the event.
* removedItems - An array of List items that have been unselected before the event was fired.
* selected - The selected state of the List item that triggered the event. If an item was selected the value will be true and vice versa.
* value - The value of the List item that triggered the event.
*/
onChange?: ((event?: Event) => void) | undefined;
/** This event is triggered when button's dropDown list is closed.
* @param event. The custom event. */
onClose?: ((event?: Event) => void) | undefined;
/** This event is triggered when button's dropDown list is closing.
* @param event. The custom event. */
onClosing?: ((event?: Event) => void) | undefined;
/** This event is triggered when user clicks any of the element's buttons or button's dropDown items.
* @param event. The custom event. */
/** This event is triggered when an item is clicked.
* @param event. The custom event. Custom event was created with: event.detail( disabled, index, label, selected, value)
* disabled - Indicates whether the List item that was clicked is disabled or not.
* index - Indicates the index of the List item that was clicked.
* label - The label of the List item that was clicked.
* selected - Indicates whether the List item that was clicked is selected or not.
* value - The value of the List item that was clicked.
*/
onItemClick?: ((event?: Event) => void) | undefined;
/** This event is triggered when button's dropDown list is opened.
* @param event. The custom event. */
Expand Down
19 changes: 17 additions & 2 deletions card/cardview.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from "react";
import { CardViewProperties } from "./../index";
import { Animation, Orientation, CardViewCoverMode, CardViewHeaderPosition, Scrolling, CardViewColumn } from './../index';
import { Animation, Orientation, CardViewCoverMode, CardViewHeaderPosition, Scrolling, CardViewColumn, DataSourceSettings } from './../index';
export { CardViewProperties } from "./../index";
export { Animation, Orientation, CardViewCoverMode, CardViewHeaderPosition, Scrolling, CardViewColumn } from './../index';
export { Animation, Orientation, CardViewColumnDataType, CardViewCoverMode, DataSourceSettingsSanitizeHTML, DataSourceSettingsDataFieldDataType, DataSourceSettingsDataSourceType, CardViewHeaderPosition, Scrolling, CardViewColumn, DataSourceSettings, DataSourceSettingsDataField } from './../index';
export { DataAdapter } from './../index';
export declare const Smart: any;
export interface CardViewProps extends CardViewProperties {
Expand Down Expand Up @@ -78,6 +78,11 @@ export declare class CardView extends React.Component<React.HTMLAttributes<Eleme
*/
get dataSource(): any;
set dataSource(value: any);
/** Sets the grid's data source settings when the dataSource property is set to an Array or URL.
* Property type: DataSourceSettings
*/
get dataSourceSettings(): DataSourceSettings;
set dataSourceSettings(value: DataSourceSettings);
/** Allows the edit option for the cards.
* Property type: boolean
*/
Expand All @@ -98,6 +103,16 @@ export declare class CardView extends React.Component<React.HTMLAttributes<Eleme
*/
get messages(): any;
set messages(value: any);
/** Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts.
* Property type: boolean
*/
get rightToLeft(): boolean;
set rightToLeft(value: boolean);
/** Determines the theme. Theme defines the look of the element
* Property type: string
*/
get theme(): string;
set theme(value: string);
/** Describes the scrolling behavior of the element.
* Property type: Scrolling
*/
Expand Down
19 changes: 17 additions & 2 deletions cardview/cardview.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from "react";
import { CardViewProperties } from "./../index";
import { Animation, Orientation, CardViewCoverMode, CardViewHeaderPosition, Scrolling, CardViewColumn } from './../index';
import { Animation, Orientation, CardViewCoverMode, CardViewHeaderPosition, Scrolling, CardViewColumn, DataSourceSettings } from './../index';
export { CardViewProperties } from "./../index";
export { Animation, Orientation, CardViewCoverMode, CardViewHeaderPosition, Scrolling, CardViewColumn } from './../index';
export { Animation, Orientation, CardViewColumnDataType, CardViewCoverMode, DataSourceSettingsSanitizeHTML, DataSourceSettingsDataFieldDataType, DataSourceSettingsDataSourceType, CardViewHeaderPosition, Scrolling, CardViewColumn, DataSourceSettings, DataSourceSettingsDataField } from './../index';
export { DataAdapter } from './../index';
export declare const Smart: any;
export interface CardViewProps extends CardViewProperties {
Expand Down Expand Up @@ -78,6 +78,11 @@ export declare class CardView extends React.Component<React.HTMLAttributes<Eleme
*/
get dataSource(): any;
set dataSource(value: any);
/** Sets the grid's data source settings when the dataSource property is set to an Array or URL.
* Property type: DataSourceSettings
*/
get dataSourceSettings(): DataSourceSettings;
set dataSourceSettings(value: DataSourceSettings);
/** Allows the edit option for the cards.
* Property type: boolean
*/
Expand All @@ -98,6 +103,16 @@ export declare class CardView extends React.Component<React.HTMLAttributes<Eleme
*/
get messages(): any;
set messages(value: any);
/** Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts.
* Property type: boolean
*/
get rightToLeft(): boolean;
set rightToLeft(value: boolean);
/** Determines the theme. Theme defines the look of the element
* Property type: string
*/
get theme(): string;
set theme(value: string);
/** Describes the scrolling behavior of the element.
* Property type: Scrolling
*/
Expand Down
35 changes: 34 additions & 1 deletion cardview/cardview.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,17 @@ class CardView extends React.Component {
this.nativeElement.dataSource = value;
}
}
/** Sets the grid's data source settings when the dataSource property is set to an Array or URL.
* Property type: DataSourceSettings
*/
get dataSourceSettings() {
return this.nativeElement ? this.nativeElement.dataSourceSettings : undefined;
}
set dataSourceSettings(value) {
if (this.nativeElement) {
this.nativeElement.dataSourceSettings = value;
}
}
/** Allows the edit option for the cards.
* Property type: boolean
*/
Expand Down Expand Up @@ -198,6 +209,28 @@ class CardView extends React.Component {
this.nativeElement.messages = value;
}
}
/** Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts.
* Property type: boolean
*/
get rightToLeft() {
return this.nativeElement ? this.nativeElement.rightToLeft : undefined;
}
set rightToLeft(value) {
if (this.nativeElement) {
this.nativeElement.rightToLeft = value;
}
}
/** Determines the theme. Theme defines the look of the element
* Property type: string
*/
get theme() {
return this.nativeElement ? this.nativeElement.theme : undefined;
}
set theme(value) {
if (this.nativeElement) {
this.nativeElement.theme = value;
}
}
/** Describes the scrolling behavior of the element.
* Property type: Scrolling
*/
Expand All @@ -222,7 +255,7 @@ class CardView extends React.Component {
}
// Gets the properties of the React component.
get properties() {
return ["addNewButton", "allowDrag", "animation", "cardHeight", "cellOrientation", "collapsible", "columns", "coverField", "coverMode", "dataSource", "editable", "headerPosition", "locale", "messages", "scrolling", "titleField"];
return ["addNewButton", "allowDrag", "animation", "cardHeight", "cellOrientation", "collapsible", "columns", "coverField", "coverMode", "dataSource", "dataSourceSettings", "editable", "headerPosition", "locale", "messages", "rightToLeft", "theme", "scrolling", "titleField"];
}
// Gets the events of the React component.
get eventListeners() {
Expand Down
35 changes: 34 additions & 1 deletion cardview/cardview.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,17 @@ require('../source/modules/smart.cardview');
this.nativeElement.dataSource = value;
}
}
/** Sets the grid's data source settings when the dataSource property is set to an Array or URL.
* Property type: DataSourceSettings
*/
get dataSourceSettings() {
return this.nativeElement ? this.nativeElement.dataSourceSettings : undefined;
}
set dataSourceSettings(value) {
if (this.nativeElement) {
this.nativeElement.dataSourceSettings = value;
}
}
/** Allows the edit option for the cards.
* Property type: boolean
*/
Expand Down Expand Up @@ -204,6 +215,28 @@ require('../source/modules/smart.cardview');
this.nativeElement.messages = value;
}
}
/** Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts.
* Property type: boolean
*/
get rightToLeft() {
return this.nativeElement ? this.nativeElement.rightToLeft : undefined;
}
set rightToLeft(value) {
if (this.nativeElement) {
this.nativeElement.rightToLeft = value;
}
}
/** Determines the theme. Theme defines the look of the element
* Property type: string
*/
get theme() {
return this.nativeElement ? this.nativeElement.theme : undefined;
}
set theme(value) {
if (this.nativeElement) {
this.nativeElement.theme = value;
}
}
/** Describes the scrolling behavior of the element.
* Property type: Scrolling
*/
Expand All @@ -228,7 +261,7 @@ require('../source/modules/smart.cardview');
}
// Gets the properties of the React component.
get properties() {
return ["addNewButton", "allowDrag", "animation", "cardHeight", "cellOrientation", "collapsible", "columns", "coverField", "coverMode", "dataSource", "editable", "headerPosition", "locale", "messages", "scrolling", "titleField"];
return ["addNewButton", "allowDrag", "animation", "cardHeight", "cellOrientation", "collapsible", "columns", "coverField", "coverMode", "dataSource", "dataSourceSettings", "editable", "headerPosition", "locale", "messages", "rightToLeft", "theme", "scrolling", "titleField"];
}
// Gets the events of the React component.
get eventListeners() {
Expand Down
Loading

0 comments on commit fb1aab5

Please sign in to comment.