@symbo.ls/datepicker 2.11.358 → 2.11.359

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/days.js CHANGED
@@ -1,9 +1,7 @@
1
1
  'use strict'
2
2
 
3
- import { Button } from '@symbo.ls/button'
4
-
5
3
  export const DatePickerDay = {
6
- extend: Button,
4
+ extend: 'Button',
7
5
  state: true,
8
6
 
9
7
  props: ({ state, key }) => {
package/grid.js CHANGED
@@ -1,6 +1,5 @@
1
1
  'use strict'
2
2
 
3
- import { Grid } from '@symbo.ls/atoms'
4
3
  import { DatePickerDay } from './days'
5
4
  import { HeadlessDatepicker } from 'headless-datepicker'
6
5
 
@@ -21,7 +20,7 @@ const extractMonthDays = (data) => {
21
20
  }
22
21
 
23
22
  export const DatePickerGrid = {
24
- extend: Grid,
23
+ extend: 'Grid',
25
24
 
26
25
  props: {
27
26
  columns: 'repeat(7, 1fr)',
package/months.js CHANGED
@@ -1,7 +1,5 @@
1
1
  'use strict'
2
2
 
3
- import { Flex } from '@symbo.ls/atoms'
4
-
5
3
  export const DatePickerMonthsSlider = {
6
4
  extend: 'Flex',
7
5
  props: {
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/datepicker",
3
- "version": "2.11.358",
3
+ "version": "2.11.359",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "87d35aa05d75b0023b44ec251df1f5739b8c6aa4",
6
+ "gitHead": "fb724b8eaa7db93ffafd708d0af16d8dcb0521c6",
7
7
  "dependencies": {
8
8
  "@symbo.ls/atoms": "latest",
9
9
  "@symbo.ls/button": "latest",
package/weekdays.js CHANGED
@@ -1,9 +1,7 @@
1
1
  'use strict'
2
2
 
3
- import { Flex, Grid } from '@symbo.ls/atoms'
4
-
5
3
  export const DatePickerWeekDays = {
6
- extend: Grid,
4
+ extend: 'Grid',
7
5
  props: {
8
6
  overflow: 'hidden',
9
7
  padding: '- Z A',
package/years.js CHANGED
@@ -1,7 +1,5 @@
1
1
  'use strict'
2
2
 
3
- import { Button } from '@symbo.ls/button'
4
-
5
3
  export const DatePickerYears = {
6
4
  tag: 'aside',
7
5
  props: {
@@ -46,7 +44,7 @@ export const DatePickerYears = {
46
44
  },
47
45
 
48
46
  childExtend: {
49
- extend: Button,
47
+ extend: 'Button',
50
48
  props: ({ state, text }) => ({
51
49
  fontSize: 'Y1',
52
50
  opacity: '.4',