forstok-ui-lib 7.2.3 → 7.3.1
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/dist/index.d.ts +8 -2
- package/dist/index.js +149 -147
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +133 -132
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/date/styles.ts +4 -0
- package/src/components/index.ts +1 -0
- package/src/components/select/asynCreatableSelect.tsx +3 -0
- package/src/components/select/typed.ts +12 -2
package/package.json
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import styled, { css } from 'styled-components';
|
|
2
2
|
import { dropBase, buttonStyle, buttonActiveStyle } from '../../assets/stylesheets/bases.styles';
|
|
3
3
|
|
|
4
|
+
export const SelectCheckboxContainer = styled.section`
|
|
5
|
+
max-width: 530px;
|
|
6
|
+
`
|
|
7
|
+
|
|
4
8
|
const DateRangeWrapperStyles = css`
|
|
5
9
|
align-items: center;
|
|
6
10
|
display: flex;
|
package/src/components/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ActionMeta, OnChangeValue, SingleValueProps } from 'react-select';
|
|
2
|
-
import type { OptionProps, GroupBase, StylesConfig, CSSObjectWithLabel, ControlProps } from 'react-select';
|
|
2
|
+
import type { OptionProps, GroupBase, StylesConfig, CSSObjectWithLabel, ControlProps, ValueContainerProps, MultiValueProps, MultiValue, OptionsOrGroups, MenuListProps } from 'react-select';
|
|
3
3
|
import { CSSObject } from '@emotion/serialize'
|
|
4
4
|
import type { TChannel } from '../../typeds/shares.typed';
|
|
5
5
|
import type { TState } from '../../typeds';
|
|
@@ -97,4 +97,14 @@ export type TGroupBaseWithVariable = GroupBase<TOption>
|
|
|
97
97
|
|
|
98
98
|
export type TSingleValueProps = SingleValueProps
|
|
99
99
|
|
|
100
|
-
export type TOptionProps = OptionProps
|
|
100
|
+
export type TOptionProps = OptionProps
|
|
101
|
+
|
|
102
|
+
export type TValueContainerPropsWithVariable = ValueContainerProps<TOption, boolean>
|
|
103
|
+
|
|
104
|
+
export type TMultiValuePropsWithVariable = MultiValueProps<TOption, boolean>
|
|
105
|
+
|
|
106
|
+
export type TMultiValue = MultiValue<TOption[]>
|
|
107
|
+
|
|
108
|
+
export type TOptionsOrGroupsWithVariable = OptionsOrGroups<TOption, GroupBase<TOption>>
|
|
109
|
+
|
|
110
|
+
export type TMenuListProps = MenuListProps
|