forstok-ui-lib 8.3.19 → 8.3.20
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 +2 -2
- package/dist/index.js +45 -45
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/images/icons/headphone.svg +4 -0
- package/src/components/icon/styles.ts +250 -227
- package/src/components/icon/typed.ts +104 -105
|
@@ -1,106 +1,105 @@
|
|
|
1
|
-
export type IconName =
|
|
2
|
-
|
|
|
3
|
-
|
|
|
4
|
-
|
|
|
5
|
-
|
|
|
6
|
-
|
|
|
7
|
-
|
|
|
8
|
-
|
|
|
9
|
-
|
|
|
10
|
-
|
|
|
11
|
-
|
|
|
12
|
-
|
|
|
13
|
-
|
|
|
14
|
-
|
|
|
15
|
-
|
|
|
16
|
-
|
|
|
17
|
-
|
|
|
18
|
-
|
|
|
19
|
-
|
|
|
20
|
-
|
|
|
21
|
-
|
|
|
22
|
-
|
|
|
23
|
-
|
|
|
24
|
-
|
|
|
25
|
-
|
|
|
26
|
-
|
|
|
27
|
-
|
|
|
28
|
-
|
|
|
29
|
-
|
|
|
30
|
-
|
|
|
31
|
-
|
|
|
32
|
-
|
|
|
33
|
-
|
|
|
34
|
-
|
|
|
35
|
-
|
|
|
36
|
-
|
|
|
37
|
-
|
|
|
38
|
-
|
|
|
39
|
-
|
|
|
40
|
-
|
|
|
41
|
-
|
|
|
42
|
-
|
|
|
43
|
-
|
|
|
44
|
-
|
|
|
45
|
-
|
|
|
46
|
-
|
|
|
47
|
-
|
|
|
48
|
-
|
|
|
49
|
-
|
|
|
50
|
-
|
|
|
51
|
-
|
|
|
52
|
-
|
|
|
53
|
-
|
|
|
54
|
-
|
|
|
55
|
-
|
|
|
56
|
-
|
|
|
57
|
-
|
|
|
58
|
-
|
|
|
59
|
-
|
|
|
60
|
-
|
|
|
61
|
-
|
|
|
62
|
-
|
|
|
63
|
-
|
|
|
64
|
-
|
|
|
65
|
-
|
|
|
66
|
-
|
|
|
67
|
-
|
|
|
68
|
-
|
|
|
69
|
-
|
|
|
70
|
-
|
|
|
71
|
-
|
|
|
72
|
-
|
|
|
73
|
-
|
|
|
74
|
-
|
|
|
75
|
-
|
|
|
76
|
-
|
|
|
77
|
-
|
|
|
78
|
-
|
|
|
79
|
-
|
|
|
80
|
-
|
|
|
81
|
-
|
|
|
82
|
-
|
|
|
83
|
-
|
|
|
84
|
-
|
|
|
85
|
-
|
|
|
86
|
-
|
|
|
87
|
-
|
|
|
88
|
-
|
|
|
89
|
-
|
|
|
90
|
-
|
|
|
91
|
-
|
|
|
92
|
-
|
|
|
93
|
-
|
|
|
94
|
-
|
|
|
95
|
-
|
|
|
96
|
-
|
|
|
97
|
-
|
|
|
98
|
-
|
|
|
99
|
-
|
|
|
100
|
-
|
|
|
101
|
-
|
|
|
102
|
-
|
|
|
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
|
+
| "headphone";
|
|
103
104
|
|
|
104
|
-
export type IconMode =
|
|
105
|
-
| 'filter'
|
|
106
|
-
| 'disabled'
|
|
105
|
+
export type IconMode = "filter" | "disabled";
|