forstok-ui-lib 8.1.0 → 8.2.0

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,106 @@
1
+ export type IconName =
2
+ | 'search'
3
+ | 'check'
4
+ | 'check-grey'
5
+ | 'arrow-left-blue'
6
+ | 'edit'
7
+ | 'arrow'
8
+ | 'discount'
9
+ | 'cash'
10
+ | 'credit'
11
+ | 'debit'
12
+ | 'bank'
13
+ | 'qris'
14
+ | 'wallet'
15
+ | 'delivery'
16
+ | 'success'
17
+ | 'email'
18
+ | 'print'
19
+ | 'warning'
20
+ | 'alert'
21
+ | 'barcode'
22
+ | 'arrow-upload'
23
+ | 'trash'
24
+ | 'arrow-left'
25
+ | 'arrow-left-double'
26
+ | 'arrow-right'
27
+ | 'arrow-right-double'
28
+ | 'arrow-down'
29
+ | 'calendar'
30
+ | 'question'
31
+ | 'sortby'
32
+ | 'NotificationDownload'
33
+ | 'NotificationUpload'
34
+ | 'bar'
35
+ | 'close'
36
+ | 'person'
37
+ | 'person-red'
38
+ | 'cart'
39
+ | 'back'
40
+ | 'time'
41
+ | 'dot'
42
+ | 'dashboard-left-nav'
43
+ | 'dashboard-active-left-nav'
44
+ | 'chat-left-nav'
45
+ | 'chat-active-left-nav'
46
+ | 'ai-left-nav'
47
+ | 'ai-active-left-nav'
48
+ | 'reporting-left-nav'
49
+ | 'reporting-active-left-nav'
50
+ | 'activity-log-left-nav'
51
+ | 'activity-log-active-left-nav'
52
+ | 'integration-left-nav'
53
+ | 'integration-active-left-nav'
54
+ | 'setting-left-nav'
55
+ | 'setting-active-left-nav'
56
+ | 'customer-left-nav'
57
+ | 'customer-active-left-nav'
58
+ | 'marketing-left-nav'
59
+ | 'marketing-active-left-nav'
60
+ | 'product-left-nav'
61
+ | 'product-active-left-nav'
62
+ | 'inventory-left-nav'
63
+ | 'inventory-active-left-nav'
64
+ | 'order-left-nav'
65
+ | 'order-active-left-nav'
66
+ | 'price-left-nav'
67
+ | 'price-active-left-nav'
68
+ | 'invoice-left-nav'
69
+ | 'invoice-active-left-nav'
70
+ | 'warning-chat'
71
+ | 'check-chat'
72
+ | 'check-chat-blue'
73
+ | 'phone'
74
+ | 'location'
75
+ | 'agent'
76
+ | 'report'
77
+ | 'gender'
78
+ | 'birthday'
79
+ | 'attach'
80
+ | 'smile'
81
+ | 'voucher-left-nav'
82
+ | 'voucher-active-left-nav'
83
+ | 'analytic-left-nav'
84
+ | 'analytic-active-left-nav'
85
+ | 'label-left-nav'
86
+ | 'label-active-left-nav'
87
+ | 'questions'
88
+ | 'faq'
89
+ | 'api'
90
+ | 'gift'
91
+ | 'document'
92
+ | 'video'
93
+ | 'image'
94
+ | 'emoji'
95
+ | 'price'
96
+ | 'thumb'
97
+ | 'clipboard'
98
+ | 'reload'
99
+ | 'arrow-down-grey'
100
+ | 'cross'
101
+ | 'link-green'
102
+ | 'info'
103
+
104
+ export type IconMode =
105
+ | 'filter'
106
+ | 'disabled'
@@ -3,7 +3,7 @@ import Image from '.'
3
3
  import { InitialContainer, APILabel } from '../../assets/stylesheets/shares.styles'
4
4
  import LinkComponent from '../link';
5
5
 
6
- import { ImageMode } from './type'
6
+ import { ImageMode } from './typed'
7
7
 
8
8
  type TImage = {
9
9
  data?: any;
@@ -39,6 +39,7 @@ export * from './select/typed';
39
39
  export * from './link/typed';
40
40
  export * from './dropdown/typed';
41
41
  export * from './date/typed';
42
+ export * from './icon/typed';
42
43
 
43
44
  export * from './form/styles';
44
45
  export * from './date/styles';
@@ -2,7 +2,7 @@ import { isValidElement, useEffect } from 'react'
2
2
 
3
3
  import { TableContainer, TableHeadRow, TableHeadColumn, TableBodyRow, TableBodyColumn, TableFootRow, TableFootColumn, TableFinalRow, TableFinalColumn, TableBoldFootRow, TableBoldFootColumn } from './style'
4
4
 
5
- import type { TTable } from './type'
5
+ import type { TTable } from './typed'
6
6
 
7
7
  const nameDefValue = `table_${new Date().getTime()}`
8
8
 
@@ -1,6 +1,6 @@
1
1
  import styled, { css } from 'styled-components'
2
2
 
3
- import type { TableMode, TTable } from './type'
3
+ import type { TableMode, TTable } from './typed'
4
4
 
5
5
  type TTableStyle = Omit<TTable, 'children'>
6
6
 
File without changes
File without changes