forstok-ui-lib 8.3.2 → 8.3.4
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/package.json
CHANGED
|
@@ -3708,6 +3708,11 @@ export const DropdownItem = styled.li<{ $mode?: 'common' | 'categories', $isActi
|
|
|
3708
3708
|
grid-auto-flow: column;
|
|
3709
3709
|
grid-template-columns: 100px auto;
|
|
3710
3710
|
}
|
|
3711
|
+
&[data-disabled="true"]{
|
|
3712
|
+
color: rgb(169, 169, 169);
|
|
3713
|
+
opacity: 0.7;
|
|
3714
|
+
pointer-events: none;
|
|
3715
|
+
}
|
|
3711
3716
|
${({ $mode }) => !$mode && css`
|
|
3712
3717
|
padding: 8px .5em;
|
|
3713
3718
|
&:first-child {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { ActionMeta, OnChangeValue, SingleValueProps } from 'react-select';
|
|
2
2
|
import type { OptionProps, GroupBase, StylesConfig, CSSObjectWithLabel, ControlProps, ValueContainerProps, MultiValueProps, MultiValue, OptionsOrGroups, MenuListProps } from 'react-select';
|
|
3
|
-
import {
|
|
3
|
+
import type { Moment } from 'moment';
|
|
4
|
+
import type { CSSObject } from '@emotion/serialize'
|
|
4
5
|
import type { TChannel } from '../../typeds/shares.typed';
|
|
5
6
|
import type { TState } from '../../typeds';
|
|
6
7
|
|
|
@@ -30,6 +31,7 @@ export type TOption = {
|
|
|
30
31
|
postalCode?: string
|
|
31
32
|
localId?: string
|
|
32
33
|
isDisabled?: boolean | null
|
|
34
|
+
momentValue?: Moment[]
|
|
33
35
|
option?: {
|
|
34
36
|
readonly value: any
|
|
35
37
|
readonly label: string
|