@symbo.ls/datepicker 2.11.267 → 2.11.276

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.
package/grid.js CHANGED
@@ -32,7 +32,7 @@ export const DatePickerGrid = {
32
32
  },
33
33
 
34
34
  childExtend: DatePickerDay,
35
- $setStateCollection: ({ state }) => state.days
35
+ $stateCollection: ({ state }) => state.days
36
36
  }
37
37
 
38
38
  export const DatePickerGridContainer = {
@@ -103,6 +103,6 @@ export const DatePickerGridContainer = {
103
103
  }
104
104
  }
105
105
  },
106
- $setStateCollection: ({ state }) => state.parse()
106
+ $stateCollection: ({ state }) => state.parse()
107
107
  }
108
108
  }
package/months.js CHANGED
@@ -108,7 +108,7 @@ export const DatePickerMonthsSlider = {
108
108
  }
109
109
  },
110
110
 
111
- $setPropsCollection: ({ state, parent }) => {
111
+ $propsCollection: ({ state, parent }) => {
112
112
  return [
113
113
  { text: 'January' },
114
114
  { text: 'February' },
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/datepicker",
3
- "version": "2.11.267",
3
+ "version": "2.11.276",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "8641ea0f87d8ae5c7c0266f94a38f5714cac1e34",
6
+ "gitHead": "ce33b49ad632d606b7304fbda48bade4aa368667",
7
7
  "dependencies": {
8
8
  "@symbo.ls/atoms": "latest",
9
9
  "@symbo.ls/button": "latest",
package/years.js CHANGED
@@ -71,7 +71,7 @@ export const DatePickerYears = {
71
71
  }
72
72
  },
73
73
 
74
- $setPropsCollection: (element) => {
74
+ $propsCollection: (element) => {
75
75
  const { yearRange } = element.state
76
76
  if (!yearRange) return
77
77