@alfalab/core-components-date-range-input 4.0.0-snapshot-bbf91f6 → 4.0.0-snapshot-6e248ac
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/components/date-range-input/index.css +6 -6
- package/components/date-range-input/index.module.css.js +1 -1
- package/cssm/components/date-range-input/Component.d.ts +4 -4
- package/esm/components/date-range-input/Component.d.ts +4 -4
- package/esm/components/date-range-input/index.css +6 -6
- package/esm/components/date-range-input/index.module.css.js +1 -1
- package/modern/components/date-range-input/Component.d.ts +4 -4
- package/modern/components/date-range-input/index.css +6 -6
- package/modern/components/date-range-input/index.module.css.js +1 -1
- package/moderncssm/components/date-range-input/Component.d.ts +4 -4
- package/package.json +8 -8
|
@@ -10,24 +10,24 @@
|
|
|
10
10
|
--calendar-width: 344px;
|
|
11
11
|
} :root {
|
|
12
12
|
--calendar-popover-border-radius: var(--border-radius-8);
|
|
13
|
-
} .date-range-
|
|
13
|
+
} .date-range-input__component_1qmn1 {
|
|
14
14
|
display: inline-block;
|
|
15
15
|
outline: none;
|
|
16
16
|
position: relative;
|
|
17
|
-
} .date-range-
|
|
17
|
+
} .date-range-input__calendarContainer_1qmn1 {
|
|
18
18
|
display: inline-block;
|
|
19
19
|
box-sizing: border-box;
|
|
20
20
|
border-radius: var(--calendar-popover-border-radius);
|
|
21
21
|
border: 1px solid var(--color-light-neutral-300)
|
|
22
|
-
} @media (max-width: 374px) { .date-range-
|
|
22
|
+
} @media (max-width: 374px) { .date-range-input__calendarContainer_1qmn1 {
|
|
23
23
|
width: 100%;
|
|
24
24
|
min-width: 288px
|
|
25
25
|
}
|
|
26
|
-
} .date-range-
|
|
26
|
+
} .date-range-input__calendarResponsive_1qmn1 {
|
|
27
27
|
width: var(--calendar-width);
|
|
28
|
-
} .date-range-
|
|
28
|
+
} .date-range-input__block_1qmn1 {
|
|
29
29
|
width: 100%;
|
|
30
|
-
} .date-range-
|
|
30
|
+
} .date-range-input__calendarIcon_1qmn1 {
|
|
31
31
|
margin-right: var(--gap-12-neg);
|
|
32
32
|
height: 100%;
|
|
33
33
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
require('./index.css');
|
|
4
4
|
|
|
5
|
-
var styles = {"component":"date-range-
|
|
5
|
+
var styles = {"component":"date-range-input__component_1qmn1","calendarContainer":"date-range-input__calendarContainer_1qmn1","calendarResponsive":"date-range-input__calendarResponsive_1qmn1","block":"date-range-input__block_1qmn1","calendarIcon":"date-range-input__calendarIcon_1qmn1"};
|
|
6
6
|
|
|
7
7
|
module.exports = styles;
|
|
8
8
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { ChangeEvent, ElementType } from 'react';
|
|
2
|
-
import type { CalendarDesktopProps } from '@alfalab/core-components-calendar/desktop';
|
|
3
|
-
import type { CalendarMobileProps } from '@alfalab/core-components-calendar/mobile';
|
|
4
|
-
import { InputProps } from '@alfalab/core-components-input';
|
|
5
|
-
import { PopoverProps } from '@alfalab/core-components-popover';
|
|
2
|
+
import type { CalendarDesktopProps } from '@alfalab/core-components-calendar/cssm/desktop';
|
|
3
|
+
import type { CalendarMobileProps } from '@alfalab/core-components-calendar/cssm/mobile';
|
|
4
|
+
import { InputProps } from '@alfalab/core-components-input/cssm';
|
|
5
|
+
import { PopoverProps } from '@alfalab/core-components-popover/cssm';
|
|
6
6
|
export declare type ConditionalProps = {
|
|
7
7
|
/**
|
|
8
8
|
* Обработчик изменения значения
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { ChangeEvent, ElementType } from 'react';
|
|
2
|
-
import type { CalendarDesktopProps } from '@alfalab/core-components-calendar/desktop';
|
|
3
|
-
import type { CalendarMobileProps } from '@alfalab/core-components-calendar/mobile';
|
|
4
|
-
import { InputProps } from '@alfalab/core-components-input';
|
|
5
|
-
import { PopoverProps } from '@alfalab/core-components-popover';
|
|
2
|
+
import type { CalendarDesktopProps } from '@alfalab/core-components-calendar/esm/desktop';
|
|
3
|
+
import type { CalendarMobileProps } from '@alfalab/core-components-calendar/esm/mobile';
|
|
4
|
+
import { InputProps } from '@alfalab/core-components-input/esm';
|
|
5
|
+
import { PopoverProps } from '@alfalab/core-components-popover/esm';
|
|
6
6
|
export declare type ConditionalProps = {
|
|
7
7
|
/**
|
|
8
8
|
* Обработчик изменения значения
|
|
@@ -10,24 +10,24 @@
|
|
|
10
10
|
--calendar-width: 344px;
|
|
11
11
|
} :root {
|
|
12
12
|
--calendar-popover-border-radius: var(--border-radius-8);
|
|
13
|
-
} .date-range-
|
|
13
|
+
} .date-range-input__component_1qmn1 {
|
|
14
14
|
display: inline-block;
|
|
15
15
|
outline: none;
|
|
16
16
|
position: relative;
|
|
17
|
-
} .date-range-
|
|
17
|
+
} .date-range-input__calendarContainer_1qmn1 {
|
|
18
18
|
display: inline-block;
|
|
19
19
|
box-sizing: border-box;
|
|
20
20
|
border-radius: var(--calendar-popover-border-radius);
|
|
21
21
|
border: 1px solid var(--color-light-neutral-300)
|
|
22
|
-
} @media (max-width: 374px) { .date-range-
|
|
22
|
+
} @media (max-width: 374px) { .date-range-input__calendarContainer_1qmn1 {
|
|
23
23
|
width: 100%;
|
|
24
24
|
min-width: 288px
|
|
25
25
|
}
|
|
26
|
-
} .date-range-
|
|
26
|
+
} .date-range-input__calendarResponsive_1qmn1 {
|
|
27
27
|
width: var(--calendar-width);
|
|
28
|
-
} .date-range-
|
|
28
|
+
} .date-range-input__block_1qmn1 {
|
|
29
29
|
width: 100%;
|
|
30
|
-
} .date-range-
|
|
30
|
+
} .date-range-input__calendarIcon_1qmn1 {
|
|
31
31
|
margin-right: var(--gap-12-neg);
|
|
32
32
|
height: 100%;
|
|
33
33
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
var styles = {"component":"date-range-
|
|
3
|
+
var styles = {"component":"date-range-input__component_1qmn1","calendarContainer":"date-range-input__calendarContainer_1qmn1","calendarResponsive":"date-range-input__calendarResponsive_1qmn1","block":"date-range-input__block_1qmn1","calendarIcon":"date-range-input__calendarIcon_1qmn1"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { ChangeEvent, ElementType } from 'react';
|
|
2
|
-
import type { CalendarDesktopProps } from '@alfalab/core-components-calendar/desktop';
|
|
3
|
-
import type { CalendarMobileProps } from '@alfalab/core-components-calendar/mobile';
|
|
4
|
-
import { InputProps } from '@alfalab/core-components-input';
|
|
5
|
-
import { PopoverProps } from '@alfalab/core-components-popover';
|
|
2
|
+
import type { CalendarDesktopProps } from '@alfalab/core-components-calendar/modern/desktop';
|
|
3
|
+
import type { CalendarMobileProps } from '@alfalab/core-components-calendar/modern/mobile';
|
|
4
|
+
import { InputProps } from '@alfalab/core-components-input/modern';
|
|
5
|
+
import { PopoverProps } from '@alfalab/core-components-popover/modern';
|
|
6
6
|
export declare type ConditionalProps = {
|
|
7
7
|
/**
|
|
8
8
|
* Обработчик изменения значения
|
|
@@ -10,24 +10,24 @@
|
|
|
10
10
|
--calendar-width: 344px;
|
|
11
11
|
} :root {
|
|
12
12
|
--calendar-popover-border-radius: var(--border-radius-8);
|
|
13
|
-
} .date-range-
|
|
13
|
+
} .date-range-input__component_1qmn1 {
|
|
14
14
|
display: inline-block;
|
|
15
15
|
outline: none;
|
|
16
16
|
position: relative;
|
|
17
|
-
} .date-range-
|
|
17
|
+
} .date-range-input__calendarContainer_1qmn1 {
|
|
18
18
|
display: inline-block;
|
|
19
19
|
box-sizing: border-box;
|
|
20
20
|
border-radius: var(--calendar-popover-border-radius);
|
|
21
21
|
border: 1px solid var(--color-light-neutral-300)
|
|
22
|
-
} @media (max-width: 374px) { .date-range-
|
|
22
|
+
} @media (max-width: 374px) { .date-range-input__calendarContainer_1qmn1 {
|
|
23
23
|
width: 100%;
|
|
24
24
|
min-width: 288px
|
|
25
25
|
}
|
|
26
|
-
} .date-range-
|
|
26
|
+
} .date-range-input__calendarResponsive_1qmn1 {
|
|
27
27
|
width: var(--calendar-width);
|
|
28
|
-
} .date-range-
|
|
28
|
+
} .date-range-input__block_1qmn1 {
|
|
29
29
|
width: 100%;
|
|
30
|
-
} .date-range-
|
|
30
|
+
} .date-range-input__calendarIcon_1qmn1 {
|
|
31
31
|
margin-right: var(--gap-12-neg);
|
|
32
32
|
height: 100%;
|
|
33
33
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
const styles = {"component":"date-range-
|
|
3
|
+
const styles = {"component":"date-range-input__component_1qmn1","calendarContainer":"date-range-input__calendarContainer_1qmn1","calendarResponsive":"date-range-input__calendarResponsive_1qmn1","block":"date-range-input__block_1qmn1","calendarIcon":"date-range-input__calendarIcon_1qmn1"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { ChangeEvent, ElementType } from 'react';
|
|
2
|
-
import type { CalendarDesktopProps } from '@alfalab/core-components-calendar/desktop';
|
|
3
|
-
import type { CalendarMobileProps } from '@alfalab/core-components-calendar/mobile';
|
|
4
|
-
import { InputProps } from '@alfalab/core-components-input';
|
|
5
|
-
import { PopoverProps } from '@alfalab/core-components-popover';
|
|
2
|
+
import type { CalendarDesktopProps } from '@alfalab/core-components-calendar/moderncssm/desktop';
|
|
3
|
+
import type { CalendarMobileProps } from '@alfalab/core-components-calendar/moderncssm/mobile';
|
|
4
|
+
import { InputProps } from '@alfalab/core-components-input/moderncssm';
|
|
5
|
+
import { PopoverProps } from '@alfalab/core-components-popover/moderncssm';
|
|
6
6
|
export declare type ConditionalProps = {
|
|
7
7
|
/**
|
|
8
8
|
* Обработчик изменения значения
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfalab/core-components-date-range-input",
|
|
3
|
-
"version": "4.0.0-snapshot-
|
|
3
|
+
"version": "4.0.0-snapshot-6e248ac",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"react-dom": "^16.9.0 || ^17.0.1 || ^18.0.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@alfalab/core-components-input": "16.0.0-snapshot-
|
|
20
|
-
"@alfalab/core-components-icon-button": "7.0.0-snapshot-
|
|
21
|
-
"@alfalab/core-components-calendar": "8.0.0-snapshot-
|
|
22
|
-
"@alfalab/core-components-mq": "5.0.0-snapshot-
|
|
23
|
-
"@alfalab/core-components-popover": "7.0.0-snapshot-
|
|
19
|
+
"@alfalab/core-components-input": "16.0.0-snapshot-6e248ac",
|
|
20
|
+
"@alfalab/core-components-icon-button": "7.0.0-snapshot-6e248ac",
|
|
21
|
+
"@alfalab/core-components-calendar": "8.0.0-snapshot-6e248ac",
|
|
22
|
+
"@alfalab/core-components-mq": "5.0.0-snapshot-6e248ac",
|
|
23
|
+
"@alfalab/core-components-popover": "7.0.0-snapshot-6e248ac",
|
|
24
24
|
"@alfalab/hooks": "^1.13.1",
|
|
25
25
|
"@alfalab/icons-glyph": "^2.210.0",
|
|
26
26
|
"classnames": "^2.5.1",
|
|
@@ -28,6 +28,6 @@
|
|
|
28
28
|
"react-merge-refs": "^1.1.0",
|
|
29
29
|
"tslib": "^2.4.0"
|
|
30
30
|
},
|
|
31
|
-
"themesVersion": "14.0.0-snapshot-
|
|
32
|
-
"varsVersion": "10.0.0-snapshot-
|
|
31
|
+
"themesVersion": "14.0.0-snapshot-6e248ac",
|
|
32
|
+
"varsVersion": "10.0.0-snapshot-6e248ac"
|
|
33
33
|
}
|