@devexpress/dx-react-scheduler
Advanced tools
Comparing version 1.9.0 to 1.9.1
@@ -328,4 +328,4 @@ import * as React from 'react'; | ||
onVisibilityToggle: () => void; | ||
/** An event raised when a navigation button is clicked. The event handler should switch the date navigator to the next (`back` is false) or previous (`back` is true) date. */ | ||
onNavigate: ({ back: boolean }) => void; | ||
/** An event raised when a navigation button is clicked. The event handler should switch the date navigator to the next or previous date. */ | ||
onNavigate: (direction: 'forward' | 'back') => void; | ||
} | ||
@@ -393,2 +393,4 @@ } | ||
endDate: Date; | ||
/** Indicates whether the cell's date is today. */ | ||
today: boolean; | ||
} | ||
@@ -452,2 +454,4 @@ } | ||
endDate?: Date; | ||
/** Indicates whether the cell's date is today. */ | ||
today?: boolean; | ||
} | ||
@@ -597,2 +601,6 @@ } | ||
endDate: Date; | ||
/** Indicates whether the cell's date is not in the current month. */ | ||
otherMonth: boolean; | ||
/** Indicates whether the cell's date is today. */ | ||
today: boolean; | ||
} | ||
@@ -604,4 +612,2 @@ } | ||
export interface LayoutProps { | ||
/** A component that renders a time scale layout. */ | ||
timeScaleComponent: React.ComponentType<MonthView.TimeScaleLayoutProps>; | ||
/** A component that renders a day scale layout. */ | ||
@@ -657,2 +663,6 @@ dayScaleComponent: React.ComponentType<MonthView.DayScaleLayoutProps>; | ||
endDate?: Date; | ||
/** Indicates whether the cell's date is not in the current month. */ | ||
otherMonth?: boolean; | ||
/** Indicates whether the cell's date is today. */ | ||
today?: boolean; | ||
} | ||
@@ -805,5 +815,5 @@ } | ||
/** An array of available view's names. */ | ||
availableViews: Array<string>; | ||
availableViewNames: Array<string>; | ||
/** A function that handles changes to the displayed view. */ | ||
onChange: ({ nextViewName: string }) => void; | ||
onChange: (nextViewName: string) => void; | ||
} | ||
@@ -831,2 +841,4 @@ } | ||
endDate: Date; | ||
/** Indicates whether the cell's date is today. */ | ||
today: boolean; | ||
} | ||
@@ -890,2 +902,4 @@ } | ||
endDate?: Date; | ||
/** Indicates whether the cell's date is today. */ | ||
today?: boolean; | ||
} | ||
@@ -892,0 +906,0 @@ } |
{ | ||
"name": "@devexpress/dx-react-scheduler", | ||
"version": "1.9.0", | ||
"version": "1.9.1", | ||
"description": "Composable plugin-based scheduler component for React", | ||
@@ -43,18 +43,17 @@ "author": { | ||
"devDependencies": { | ||
"@devexpress/dx-core": "^1.9.0", | ||
"@devexpress/dx-react-core": "^1.9.0", | ||
"@devexpress/dx-testing": "^1.9.0", | ||
"babel-core": "^6.26.3", | ||
"@babel/core": "^7.1.6", | ||
"@babel/plugin-transform-runtime": "^7.1.0", | ||
"@babel/preset-env": "^7.1.6", | ||
"@babel/preset-react": "^7.0.0", | ||
"@devexpress/dx-core": "^1.9.1", | ||
"@devexpress/dx-react-core": "^1.9.1", | ||
"@devexpress/dx-testing": "^1.9.1", | ||
"babel-core": "^7.0.0-bridge.0", | ||
"babel-jest": "^23.6.0", | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
"babel-plugin-transform-object-rest-spread": "^6.26.0", | ||
"babel-plugin-transform-react-remove-prop-types": "^0.4.19", | ||
"babel-plugin-transform-runtime": "^6.23.0", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-react": "^6.24.1", | ||
"babel-plugin-transform-react-remove-prop-types": "^0.4.20", | ||
"core-js": "^2.5.7", | ||
"enzyme": "3.7.0", | ||
"enzyme-adapter-react-16": "^1.6.0", | ||
"enzyme-adapter-react-16": "^1.7.0", | ||
"enzyme-to-json": "^3.3.4", | ||
"eslint": "^5.8.0", | ||
"eslint": "^5.9.0", | ||
"eslint-config-airbnb": "^17.1.0", | ||
@@ -64,11 +63,11 @@ "eslint-config-airbnb-base": "^13.1.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jest": "^21.26.2", | ||
"eslint-plugin-jest": "^22.0.0", | ||
"eslint-plugin-jsx-a11y": "^6.1.2", | ||
"eslint-plugin-react": "^7.11.1", | ||
"jest": "^23.6.0", | ||
"react": "^16.5.2", | ||
"react-dom": "^16.5.2", | ||
"react-test-renderer": "^16.5.2", | ||
"rollup": "^0.66.6", | ||
"rollup-plugin-babel": "^3.0.4", | ||
"react": "^16.6.3", | ||
"react-dom": "^16.6.3", | ||
"react-test-renderer": "^16.6.3", | ||
"rollup": "^0.67.3", | ||
"rollup-plugin-babel": "^4.0.3", | ||
"rollup-plugin-license": "^0.7.0", | ||
@@ -78,12 +77,12 @@ "rollup-plugin-node-resolve": "^3.4.0" | ||
"dependencies": { | ||
"@devexpress/dx-scheduler-core": "^1.9.0", | ||
"@devexpress/dx-scheduler-core": "^1.9.1", | ||
"prop-types": "^15.6.2" | ||
}, | ||
"peerDependencies": { | ||
"@devexpress/dx-core": "1.9.0", | ||
"@devexpress/dx-react-core": "1.9.0", | ||
"react": ">=16.3.0", | ||
"react-dom": ">=16.3.0" | ||
"@devexpress/dx-core": "1.9.1", | ||
"@devexpress/dx-react-core": "1.9.1", | ||
"react": ">=16.6.0", | ||
"react-dom": ">=16.6.0" | ||
}, | ||
"gitHead": "227293d65d3fc8972ff36981be7ec6789876dbe7" | ||
"gitHead": "29cb22ed32aac31a3fa3d985b9160300af79b12f" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
471635
30
5107
1
+ Added@devexpress/dx-core@1.9.1(transitive)
+ Added@devexpress/dx-react-core@1.9.1(transitive)
- Removed@devexpress/dx-core@1.9.0(transitive)
- Removed@devexpress/dx-react-core@1.9.0(transitive)