forstok-ui-lib 5.0.3 → 5.1.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.
@@ -0,0 +1,16 @@
1
+ import type { TChannel } from '../../typeds/shares.typed';
2
+
3
+ export type TOption = {
4
+ readonly value: any
5
+ readonly label: string
6
+ readonly name?: string
7
+ readonly isFixed?: boolean
8
+ readonly channel?: Omit<TChannel, 'stores'>
9
+ postalCode?: string
10
+ localId?: string
11
+ option?: {
12
+ readonly value: any
13
+ readonly label: string
14
+ localId?: string
15
+ }[]
16
+ }
@@ -33,4 +33,24 @@ export type THierarchy = {
33
33
  evOpenPopup?: TPopupOpenFunction
34
34
  evCloseDropdown?: TCloseDropdownFunction
35
35
  evCreateMessageQuestion?: TMessageQuestionFunction
36
+ }
37
+ export type TChannel = {
38
+ channelName?: string
39
+ channelInitials?: string
40
+ channelColor?: string
41
+ channelImage?: string
42
+ channelId?: number
43
+ name?: string | null
44
+ initials?: string | null
45
+ color?: string | null
46
+ icon?: string | null
47
+ id?: number | null
48
+ totalStores?: number
49
+ Stores?: {
50
+ id?: number
51
+ storeName?: string
52
+ storeImage?: string
53
+ storeImageName?: string
54
+ }[]
55
+ availableAPI?: boolean | null
36
56
  }