-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
163766d
commit 22cbd50
Showing
416 changed files
with
901 additions
and
507 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
packages/devextreme-angular/src/common/core/animation/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export { | ||
AnimationConfig, | ||
animationPresets, | ||
AnimationState, | ||
cancelAnimationFrame, | ||
CollisionResolution, | ||
CollisionResolutionCombination, | ||
fx, | ||
PositionConfig, | ||
requestAnimationFrame, | ||
TransitionExecutor, | ||
} from 'devextreme/common/core/animation'; |
5 changes: 5 additions & 0 deletions
5
packages/devextreme-angular/src/common/core/animation/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
packages/devextreme-angular/src/common/core/environment/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export { | ||
Device, | ||
devices, | ||
DevicesObject, | ||
dxSchedulerTimeZone, | ||
getTimeZones, | ||
hideTopOverlay, | ||
initMobileViewport, | ||
} from 'devextreme/common/core/environment'; |
5 changes: 5 additions & 0 deletions
5
packages/devextreme-angular/src/common/core/environment/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
packages/devextreme-angular/src/common/core/events/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export { | ||
AsyncCancelable, | ||
Cancelable, | ||
ChangedOptionInfo, | ||
DxEvent, | ||
event, | ||
EventInfo, | ||
EventObject, | ||
InitializedEventInfo, | ||
ItemInfo, | ||
NativeEventInfo, | ||
off, | ||
on, | ||
one, | ||
trigger, | ||
triggerHandler, | ||
} from 'devextreme/common/core/events'; |
3 changes: 3 additions & 0 deletions
3
packages/devextreme-angular/src/common/core/events/index/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export { | ||
eventsHandler, | ||
} from 'devextreme/common/core/events/index'; |
5 changes: 5 additions & 0 deletions
5
packages/devextreme-angular/src/common/core/events/index/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/devextreme-angular/src/common/core/events/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
packages/devextreme-angular/src/common/core/localization/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export { | ||
Format, | ||
formatDate, | ||
formatMessage, | ||
formatNumber, | ||
loadMessages, | ||
locale, | ||
parseDate, | ||
parseNumber, | ||
} from 'devextreme/common/core/localization'; |
5 changes: 5 additions & 0 deletions
5
packages/devextreme-angular/src/common/core/localization/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
export { | ||
applyChanges, | ||
ArrayStore, | ||
ArrayStoreOptions, | ||
base64_encode, | ||
compileGetter, | ||
compileSetter, | ||
CustomStore, | ||
CustomStoreOptions, | ||
DataHelperMixin, | ||
DataSource, | ||
DataSourceLike, | ||
DataSourceOptions, | ||
EdmLiteral, | ||
EndpointSelector, | ||
errorHandler, | ||
FilterDescriptor, | ||
GroupDescriptor, | ||
GroupingInterval, | ||
GroupItem, | ||
isGroupItemsArray, | ||
isItemsArray, | ||
isLoadResultObject, | ||
keyConverters, | ||
LangParams, | ||
LoadOptions, | ||
LoadResult, | ||
LoadResultObject, | ||
LocalStore, | ||
LocalStoreOptions, | ||
ODataContext, | ||
ODataContextOptions, | ||
ODataStore, | ||
ODataStoreOptions, | ||
query, | ||
Query, | ||
ResolvedData, | ||
SearchOperation, | ||
SelectDescriptor, | ||
setErrorHandler, | ||
SortDescriptor, | ||
Store, | ||
StoreBase, | ||
StoreOptions, | ||
StoreOptionsBase, | ||
SummaryDescriptor, | ||
} from 'devextreme/common/data'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
packages/devextreme-angular/src/common/export/excel/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export { | ||
CellAddress, | ||
CellRange, | ||
DataGridCell, | ||
ExcelExportBaseProps, | ||
ExcelExportDataGridProps, | ||
ExcelExportPivotGridProps, | ||
exportDataGrid, | ||
exportPivotGrid, | ||
PivotGridCell, | ||
} from 'devextreme/common/export/excel'; |
5 changes: 5 additions & 0 deletions
5
packages/devextreme-angular/src/common/export/excel/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export { | ||
ExportLoadPanel, | ||
} from 'devextreme/common/export'; |
5 changes: 5 additions & 0 deletions
5
packages/devextreme-angular/src/common/export/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export { | ||
Cell, | ||
DataGridCell, | ||
exportDataGrid, | ||
exportGantt, | ||
PdfExportDataGridProps, | ||
PdfExportGanttFont, | ||
PdfExportGanttProps, | ||
} from 'devextreme/common/export/pdf'; |
5 changes: 5 additions & 0 deletions
5
packages/devextreme-angular/src/common/export/pdf/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
packages/devextreme-angular/src/common/file_management/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export { | ||
CustomFileSystemProvider, | ||
CustomFileSystemProviderOptions, | ||
FileSystemError, | ||
FileSystemItem, | ||
FileSystemProviderBase, | ||
FileSystemProviderBaseOptions, | ||
ObjectFileSystemProvider, | ||
ObjectFileSystemProviderOptions, | ||
RemoteFileSystemProvider, | ||
RemoteFileSystemProviderOptions, | ||
UploadInfo, | ||
} from 'devextreme/common/file_management'; |
5 changes: 5 additions & 0 deletions
5
packages/devextreme-angular/src/common/file_management/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"lib": { | ||
"entryFile": "index.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.