forstok-ui-lib 8.3.2 → 8.3.3

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 CHANGED
@@ -195,6 +195,7 @@ type TOption = {
195
195
  postalCode?: string;
196
196
  localId?: string;
197
197
  isDisabled?: boolean | null;
198
+ momentValue?: Moment[];
198
199
  option?: {
199
200
  readonly value: any;
200
201
  readonly label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "8.3.2",
3
+ "version": "8.3.3",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -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 { CSSObject } from '@emotion/serialize'
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