@edifice.io/react 2.2.2 → 2.2.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/components/Avatar/Avatar.d.ts +21 -0
- package/dist/components/Avatar/Avatar.js +15 -2
- package/dist/components/AvatarGroup/AvatarGroup.d.ts +24 -0
- package/dist/components/AvatarGroup/AvatarGroup.js +24 -0
- package/dist/components/AvatarGroup/index.d.ts +2 -0
- package/dist/components/Card/Card.d.ts +3 -1
- package/dist/components/Card/CardBody.d.ts +3 -1
- package/dist/components/Card/CardBody.js +4 -2
- package/dist/components/Dropdown/Dropdown.d.ts +6 -2
- package/dist/components/Dropdown/Dropdown.js +2 -0
- package/dist/components/Dropdown/DropdownItem.d.ts +5 -1
- package/dist/components/Dropdown/DropdownItem.js +7 -2
- package/dist/components/Dropdown/DropdownTrigger.d.ts +31 -2
- package/dist/components/Dropdown/DropdownTrigger.js +23 -3
- package/dist/components/PreventPropagation/PreventPropagation.d.ts +10 -0
- package/dist/components/PreventPropagation/PreventPropagation.js +9 -0
- package/dist/components/PreventPropagation/index.d.ts +2 -0
- package/dist/components/StackedGroup/StackedGroup.d.ts +23 -0
- package/dist/components/StackedGroup/StackedGroup.js +21 -0
- package/dist/components/StackedGroup/index.d.ts +1 -0
- package/dist/components/Switch/Switch.d.ts +29 -0
- package/dist/components/Switch/Switch.js +27 -0
- package/dist/components/Switch/index.d.ts +2 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/editor.js +16 -12
- package/dist/hooks/useConf/useConf.d.ts +1 -1
- package/dist/hooks/useSession/useSession.d.ts +1 -1
- package/dist/icons.js +178 -176
- package/dist/index.js +154 -146
- package/dist/modules/comments/components/Comment.js +49 -34
- package/dist/modules/comments/components/CommentDeleted.d.ts +1 -0
- package/dist/modules/comments/components/CommentDeleted.js +11 -0
- package/dist/modules/comments/components/CommentForm.d.ts +2 -1
- package/dist/modules/comments/components/CommentForm.js +12 -8
- package/dist/modules/comments/components/CommentList.js +3 -3
- package/dist/modules/comments/components/CommentReplies.d.ts +4 -0
- package/dist/modules/comments/components/CommentReplies.js +33 -0
- package/dist/modules/comments/constants.d.ts +4 -0
- package/dist/modules/comments/constants.js +2 -1
- package/dist/modules/comments/context/Context.d.ts +6 -4
- package/dist/modules/comments/hooks/useCommentReplies.d.ts +12 -0
- package/dist/modules/comments/hooks/useCommentReplies.js +36 -0
- package/dist/modules/comments/hooks/useComments.d.ts +7 -7
- package/dist/modules/comments/hooks/useComments.js +24 -19
- package/dist/modules/comments/hooks/useCommentsContext.d.ts +6 -4
- package/dist/modules/comments/provider/CommentProvider.js +16 -13
- package/dist/modules/comments/types.d.ts +14 -1
- package/dist/modules/editor/components/BubbleMenuEditInformationPane/BubbleMenuEditInformationPane.d.ts +6 -0
- package/dist/modules/editor/components/BubbleMenuEditInformationPane/BubbleMenuEditInformationPane.js +136 -0
- package/dist/modules/editor/components/BubbleMenuEditInformationPane/index.d.ts +1 -0
- package/dist/modules/editor/components/Editor/Editor.js +6 -2
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.js +12 -0
- package/dist/modules/editor/components/NodeView/InformationPaneNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/InformationPaneNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/index.d.ts +1 -0
- package/dist/modules/editor/components/Renderer/InformationPaneRenderer.d.ts +3 -0
- package/dist/modules/editor/components/Renderer/InformationPaneRenderer.js +33 -0
- package/dist/modules/editor/components/Renderer/index.d.ts +1 -0
- package/dist/modules/editor/hooks/useTipTapEditor.js +3 -1
- package/dist/modules/icons/components/IconInfoRectangle.d.ts +7 -0
- package/dist/modules/icons/components/IconInfoRectangle.js +13 -0
- package/dist/modules/icons/components/index.d.ts +1 -0
- package/dist/modules/modals/ResourceModal/ResourceModal.d.ts +1 -1
- package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.d.ts +1 -1
- package/dist/modules/modals/ShareModal/ShareModal.d.ts +1 -1
- package/dist/modules/modals/ShareModal/apps/ShareBlog.d.ts +1 -1
- package/dist/modules/modals/ShareModal/hooks/useShareMutation.d.ts +1 -1
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.d.ts +1 -1
- package/dist/types/index.d.ts +1 -0
- package/package.json +6 -6
package/dist/icons.js
CHANGED
|
@@ -61,94 +61,95 @@ import { default as default61 } from "./modules/icons/components/IconImageSizeMe
|
|
|
61
61
|
import { default as default62 } from "./modules/icons/components/IconImageSizeSmall.js";
|
|
62
62
|
import { default as default63 } from "./modules/icons/components/IconInbox.js";
|
|
63
63
|
import { default as default64 } from "./modules/icons/components/IconInfoCircle.js";
|
|
64
|
-
import { default as default65 } from "./modules/icons/components/
|
|
65
|
-
import { default as default66 } from "./modules/icons/components/
|
|
66
|
-
import { default as default67 } from "./modules/icons/components/
|
|
67
|
-
import { default as default68 } from "./modules/icons/components/
|
|
68
|
-
import { default as default69 } from "./modules/icons/components/
|
|
69
|
-
import { default as default70 } from "./modules/icons/components/
|
|
70
|
-
import { default as default71 } from "./modules/icons/components/
|
|
71
|
-
import { default as default72 } from "./modules/icons/components/
|
|
72
|
-
import { default as default73 } from "./modules/icons/components/
|
|
73
|
-
import { default as default74 } from "./modules/icons/components/
|
|
74
|
-
import { default as default75 } from "./modules/icons/components/
|
|
75
|
-
import { default as default76 } from "./modules/icons/components/
|
|
76
|
-
import { default as default77 } from "./modules/icons/components/
|
|
77
|
-
import { default as default78 } from "./modules/icons/components/
|
|
78
|
-
import { default as default79 } from "./modules/icons/components/
|
|
79
|
-
import { default as default80 } from "./modules/icons/components/
|
|
80
|
-
import { default as default81 } from "./modules/icons/components/
|
|
81
|
-
import { default as default82 } from "./modules/icons/components/
|
|
82
|
-
import { default as default83 } from "./modules/icons/components/
|
|
83
|
-
import { default as default84 } from "./modules/icons/components/
|
|
84
|
-
import { default as default85 } from "./modules/icons/components/
|
|
85
|
-
import { default as default86 } from "./modules/icons/components/
|
|
86
|
-
import { default as default87 } from "./modules/icons/components/
|
|
87
|
-
import { default as default88 } from "./modules/icons/components/
|
|
88
|
-
import { default as default89 } from "./modules/icons/components/
|
|
89
|
-
import { default as default90 } from "./modules/icons/components/
|
|
90
|
-
import { default as default91 } from "./modules/icons/components/
|
|
91
|
-
import { default as default92 } from "./modules/icons/components/
|
|
92
|
-
import { default as default93 } from "./modules/icons/components/
|
|
93
|
-
import { default as default94 } from "./modules/icons/components/
|
|
94
|
-
import { default as default95 } from "./modules/icons/components/
|
|
95
|
-
import { default as default96 } from "./modules/icons/components/
|
|
96
|
-
import { default as default97 } from "./modules/icons/components/
|
|
97
|
-
import { default as default98 } from "./modules/icons/components/
|
|
98
|
-
import { default as default99 } from "./modules/icons/components/
|
|
99
|
-
import { default as default100 } from "./modules/icons/components/
|
|
100
|
-
import { default as default101 } from "./modules/icons/components/
|
|
101
|
-
import { default as default102 } from "./modules/icons/components/
|
|
102
|
-
import { default as default103 } from "./modules/icons/components/
|
|
103
|
-
import { default as default104 } from "./modules/icons/components/
|
|
104
|
-
import { default as default105 } from "./modules/icons/components/
|
|
105
|
-
import { default as default106 } from "./modules/icons/components/
|
|
106
|
-
import { default as default107 } from "./modules/icons/components/
|
|
107
|
-
import { default as default108 } from "./modules/icons/components/
|
|
108
|
-
import { default as default109 } from "./modules/icons/components/
|
|
109
|
-
import { default as default110 } from "./modules/icons/components/
|
|
110
|
-
import { default as default111 } from "./modules/icons/components/
|
|
111
|
-
import { default as default112 } from "./modules/icons/components/
|
|
112
|
-
import { default as default113 } from "./modules/icons/components/
|
|
113
|
-
import { default as default114 } from "./modules/icons/components/
|
|
114
|
-
import { default as default115 } from "./modules/icons/components/
|
|
115
|
-
import { default as default116 } from "./modules/icons/components/
|
|
116
|
-
import { default as default117 } from "./modules/icons/components/
|
|
117
|
-
import { default as default118 } from "./modules/icons/components/
|
|
118
|
-
import { default as default119 } from "./modules/icons/components/
|
|
119
|
-
import { default as default120 } from "./modules/icons/components/
|
|
120
|
-
import { default as default121 } from "./modules/icons/components/
|
|
121
|
-
import { default as default122 } from "./modules/icons/components/
|
|
122
|
-
import { default as default123 } from "./modules/icons/components/
|
|
123
|
-
import { default as default124 } from "./modules/icons/components/
|
|
124
|
-
import { default as default125 } from "./modules/icons/components/
|
|
125
|
-
import { default as default126 } from "./modules/icons/components/
|
|
126
|
-
import { default as default127 } from "./modules/icons/components/
|
|
127
|
-
import { default as default128 } from "./modules/icons/components/
|
|
128
|
-
import { default as default129 } from "./modules/icons/components/
|
|
129
|
-
import { default as default130 } from "./modules/icons/components/
|
|
130
|
-
import { default as default131 } from "./modules/icons/components/
|
|
131
|
-
import { default as default132 } from "./modules/icons/components/
|
|
132
|
-
import { default as default133 } from "./modules/icons/components/
|
|
133
|
-
import { default as default134 } from "./modules/icons/components/
|
|
134
|
-
import { default as default135 } from "./modules/icons/components/
|
|
135
|
-
import { default as default136 } from "./modules/icons/components/
|
|
136
|
-
import { default as default137 } from "./modules/icons/components/
|
|
137
|
-
import { default as default138 } from "./modules/icons/components/
|
|
138
|
-
import { default as default139 } from "./modules/icons/components/
|
|
139
|
-
import { default as default140 } from "./modules/icons/components/
|
|
140
|
-
import { default as default141 } from "./modules/icons/components/
|
|
141
|
-
import { default as default142 } from "./modules/icons/components/
|
|
142
|
-
import { default as default143 } from "./modules/icons/components/
|
|
143
|
-
import { default as default144 } from "./modules/icons/components/
|
|
144
|
-
import { default as default145 } from "./modules/icons/components/
|
|
145
|
-
import { default as default146 } from "./modules/icons/components/
|
|
146
|
-
import { default as default147 } from "./modules/icons/components/
|
|
147
|
-
import { default as default148 } from "./modules/icons/components/
|
|
148
|
-
import { default as default149 } from "./modules/icons/components/
|
|
149
|
-
import { default as default150 } from "./modules/icons/components/
|
|
150
|
-
import { default as default151 } from "./modules/icons/components/
|
|
151
|
-
import { default as default152 } from "./modules/icons/components/
|
|
64
|
+
import { default as default65 } from "./modules/icons/components/IconInfoRectangle.js";
|
|
65
|
+
import { default as default66 } from "./modules/icons/components/IconLandscape.js";
|
|
66
|
+
import { default as default67 } from "./modules/icons/components/IconLink.js";
|
|
67
|
+
import { default as default68 } from "./modules/icons/components/IconListOrder.js";
|
|
68
|
+
import { default as default69 } from "./modules/icons/components/IconLoader.js";
|
|
69
|
+
import { default as default70 } from "./modules/icons/components/IconLock.js";
|
|
70
|
+
import { default as default71 } from "./modules/icons/components/IconMail.js";
|
|
71
|
+
import { default as default72 } from "./modules/icons/components/IconMergeCells.js";
|
|
72
|
+
import { default as default73 } from "./modules/icons/components/IconMessageInfo.js";
|
|
73
|
+
import { default as default74 } from "./modules/icons/components/IconMic.js";
|
|
74
|
+
import { default as default75 } from "./modules/icons/components/IconMinus.js";
|
|
75
|
+
import { default as default76 } from "./modules/icons/components/IconMove.js";
|
|
76
|
+
import { default as default77 } from "./modules/icons/components/IconNoColors.js";
|
|
77
|
+
import { default as default78 } from "./modules/icons/components/IconOptions.js";
|
|
78
|
+
import { default as default79 } from "./modules/icons/components/IconOrderedList.js";
|
|
79
|
+
import { default as default80 } from "./modules/icons/components/IconPaperclip.js";
|
|
80
|
+
import { default as default81 } from "./modules/icons/components/IconPause.js";
|
|
81
|
+
import { default as default82 } from "./modules/icons/components/IconPinOff.js";
|
|
82
|
+
import { default as default83 } from "./modules/icons/components/IconPinOn.js";
|
|
83
|
+
import { default as default84 } from "./modules/icons/components/IconPlaceholder.js";
|
|
84
|
+
import { default as default85 } from "./modules/icons/components/IconPlayFilled.js";
|
|
85
|
+
import { default as default86 } from "./modules/icons/components/IconPlay.js";
|
|
86
|
+
import { default as default87 } from "./modules/icons/components/IconPlus.js";
|
|
87
|
+
import { default as default88 } from "./modules/icons/components/IconPointerDefault.js";
|
|
88
|
+
import { default as default89 } from "./modules/icons/components/IconPointerHand.js";
|
|
89
|
+
import { default as default90 } from "./modules/icons/components/IconPrint.js";
|
|
90
|
+
import { default as default91 } from "./modules/icons/components/IconQuestion.js";
|
|
91
|
+
import { default as default92 } from "./modules/icons/components/IconRafterDown.js";
|
|
92
|
+
import { default as default93 } from "./modules/icons/components/IconRafterLeft.js";
|
|
93
|
+
import { default as default94 } from "./modules/icons/components/IconRafterRight.js";
|
|
94
|
+
import { default as default95 } from "./modules/icons/components/IconRafterUp.js";
|
|
95
|
+
import { default as default96 } from "./modules/icons/components/IconReaction.js";
|
|
96
|
+
import { default as default97 } from "./modules/icons/components/IconRecordPause.js";
|
|
97
|
+
import { default as default98 } from "./modules/icons/components/IconRecordStop.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/IconRecordVideo.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/IconRecord.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/IconRedo.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/IconRefresh.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/IconReset.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/IconRestart.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/IconRestore.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/IconSave.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/IconSearch.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/IconSee.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/IconSend.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/IconSetBackground.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/IconSettings.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/IconShare.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/IconSmartphone.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/IconSmiley.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/IconSortAscendingLetters.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/IconSortDescendingLetters.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/IconSortDescending.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/IconSortTime.js";
|
|
118
|
+
import { default as default119 } from "./modules/icons/components/IconSpeechToText.js";
|
|
119
|
+
import { default as default120 } from "./modules/icons/components/IconSplitCells.js";
|
|
120
|
+
import { default as default121 } from "./modules/icons/components/IconSquareRoot.js";
|
|
121
|
+
import { default as default122 } from "./modules/icons/components/IconSubscript.js";
|
|
122
|
+
import { default as default123 } from "./modules/icons/components/IconSuccessFill.js";
|
|
123
|
+
import { default as default124 } from "./modules/icons/components/IconSuccessOutline.js";
|
|
124
|
+
import { default as default125 } from "./modules/icons/components/IconSuperscript.js";
|
|
125
|
+
import { default as default126 } from "./modules/icons/components/IconTable.js";
|
|
126
|
+
import { default as default127 } from "./modules/icons/components/IconTextBold.js";
|
|
127
|
+
import { default as default128 } from "./modules/icons/components/IconTextColor.js";
|
|
128
|
+
import { default as default129 } from "./modules/icons/components/IconTextHighlight.js";
|
|
129
|
+
import { default as default130 } from "./modules/icons/components/IconTextItalic.js";
|
|
130
|
+
import { default as default131 } from "./modules/icons/components/IconTextPage.js";
|
|
131
|
+
import { default as default132 } from "./modules/icons/components/IconTextSize.js";
|
|
132
|
+
import { default as default133 } from "./modules/icons/components/IconTextToSpeech.js";
|
|
133
|
+
import { default as default134 } from "./modules/icons/components/IconTextTypo.js";
|
|
134
|
+
import { default as default135 } from "./modules/icons/components/IconTextUnderline.js";
|
|
135
|
+
import { default as default136 } from "./modules/icons/components/IconTextVanilla.js";
|
|
136
|
+
import { default as default137 } from "./modules/icons/components/IconToolCenter.js";
|
|
137
|
+
import { default as default138 } from "./modules/icons/components/IconTool.js";
|
|
138
|
+
import { default as default139 } from "./modules/icons/components/IconTrendingUp.js";
|
|
139
|
+
import { default as default140 } from "./modules/icons/components/IconUndo.js";
|
|
140
|
+
import { default as default141 } from "./modules/icons/components/IconUnlink.js";
|
|
141
|
+
import { default as default142 } from "./modules/icons/components/IconUnlock.js";
|
|
142
|
+
import { default as default143 } from "./modules/icons/components/IconUpload.js";
|
|
143
|
+
import { default as default144 } from "./modules/icons/components/IconUserSearch.js";
|
|
144
|
+
import { default as default145 } from "./modules/icons/components/IconUser.js";
|
|
145
|
+
import { default as default146 } from "./modules/icons/components/IconUsers.js";
|
|
146
|
+
import { default as default147 } from "./modules/icons/components/IconVideo.js";
|
|
147
|
+
import { default as default148 } from "./modules/icons/components/IconViewCalendar.js";
|
|
148
|
+
import { default as default149 } from "./modules/icons/components/IconViewList.js";
|
|
149
|
+
import { default as default150 } from "./modules/icons/components/IconWand.js";
|
|
150
|
+
import { default as default151 } from "./modules/icons/components/IconWrite.js";
|
|
151
|
+
import { default as default152 } from "./modules/icons/components/IconZoomIn.js";
|
|
152
|
+
import { default as default153 } from "./modules/icons/components/IconZoomOut.js";
|
|
152
153
|
export {
|
|
153
154
|
default3 as IconAdd,
|
|
154
155
|
default2 as IconAddUser,
|
|
@@ -213,92 +214,93 @@ export {
|
|
|
213
214
|
default62 as IconImageSizeSmall,
|
|
214
215
|
default63 as IconInbox,
|
|
215
216
|
default64 as IconInfoCircle,
|
|
216
|
-
default65 as
|
|
217
|
-
default66 as
|
|
218
|
-
default67 as
|
|
219
|
-
default68 as
|
|
220
|
-
default69 as
|
|
221
|
-
default70 as
|
|
222
|
-
default71 as
|
|
223
|
-
default72 as
|
|
224
|
-
default73 as
|
|
225
|
-
default74 as
|
|
226
|
-
default75 as
|
|
227
|
-
default76 as
|
|
228
|
-
default77 as
|
|
229
|
-
default78 as
|
|
230
|
-
default79 as
|
|
231
|
-
default80 as
|
|
232
|
-
default81 as
|
|
233
|
-
default82 as
|
|
234
|
-
default83 as
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
default87 as
|
|
239
|
-
default88 as
|
|
240
|
-
default89 as
|
|
241
|
-
default90 as
|
|
242
|
-
default91 as
|
|
243
|
-
default92 as
|
|
244
|
-
default93 as
|
|
245
|
-
default94 as
|
|
246
|
-
default95 as
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
default97 as
|
|
250
|
-
default98 as
|
|
251
|
-
|
|
252
|
-
default101 as
|
|
253
|
-
default102 as
|
|
254
|
-
default103 as
|
|
255
|
-
default104 as
|
|
256
|
-
default105 as
|
|
257
|
-
default106 as
|
|
258
|
-
default107 as
|
|
259
|
-
default108 as
|
|
260
|
-
default109 as
|
|
261
|
-
default110 as
|
|
262
|
-
default111 as
|
|
263
|
-
default112 as
|
|
264
|
-
default113 as
|
|
265
|
-
default114 as
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
default118 as
|
|
270
|
-
default119 as
|
|
271
|
-
default120 as
|
|
272
|
-
default121 as
|
|
273
|
-
default122 as
|
|
274
|
-
default123 as
|
|
275
|
-
default124 as
|
|
276
|
-
default125 as
|
|
277
|
-
default126 as
|
|
278
|
-
default127 as
|
|
279
|
-
default128 as
|
|
280
|
-
default129 as
|
|
281
|
-
default130 as
|
|
282
|
-
default131 as
|
|
283
|
-
default132 as
|
|
284
|
-
default133 as
|
|
285
|
-
default134 as
|
|
286
|
-
default135 as
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
default139 as
|
|
291
|
-
default140 as
|
|
292
|
-
default141 as
|
|
293
|
-
default142 as
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
default146 as
|
|
298
|
-
default147 as
|
|
299
|
-
default148 as
|
|
300
|
-
default149 as
|
|
301
|
-
default150 as
|
|
302
|
-
default151 as
|
|
303
|
-
default152 as
|
|
217
|
+
default65 as IconInfoRectangle,
|
|
218
|
+
default66 as IconLandscape,
|
|
219
|
+
default67 as IconLink,
|
|
220
|
+
default68 as IconListOrder,
|
|
221
|
+
default69 as IconLoader,
|
|
222
|
+
default70 as IconLock,
|
|
223
|
+
default71 as IconMail,
|
|
224
|
+
default72 as IconMergeCells,
|
|
225
|
+
default73 as IconMessageInfo,
|
|
226
|
+
default74 as IconMic,
|
|
227
|
+
default75 as IconMinus,
|
|
228
|
+
default76 as IconMove,
|
|
229
|
+
default77 as IconNoColors,
|
|
230
|
+
default78 as IconOptions,
|
|
231
|
+
default79 as IconOrderedList,
|
|
232
|
+
default80 as IconPaperclip,
|
|
233
|
+
default81 as IconPause,
|
|
234
|
+
default82 as IconPinOff,
|
|
235
|
+
default83 as IconPinOn,
|
|
236
|
+
default84 as IconPlaceholder,
|
|
237
|
+
default86 as IconPlay,
|
|
238
|
+
default85 as IconPlayFilled,
|
|
239
|
+
default87 as IconPlus,
|
|
240
|
+
default88 as IconPointerDefault,
|
|
241
|
+
default89 as IconPointerHand,
|
|
242
|
+
default90 as IconPrint,
|
|
243
|
+
default91 as IconQuestion,
|
|
244
|
+
default92 as IconRafterDown,
|
|
245
|
+
default93 as IconRafterLeft,
|
|
246
|
+
default94 as IconRafterRight,
|
|
247
|
+
default95 as IconRafterUp,
|
|
248
|
+
default96 as IconReaction,
|
|
249
|
+
default100 as IconRecord,
|
|
250
|
+
default97 as IconRecordPause,
|
|
251
|
+
default98 as IconRecordStop,
|
|
252
|
+
default99 as IconRecordVideo,
|
|
253
|
+
default101 as IconRedo,
|
|
254
|
+
default102 as IconRefresh,
|
|
255
|
+
default103 as IconReset,
|
|
256
|
+
default104 as IconRestart,
|
|
257
|
+
default105 as IconRestore,
|
|
258
|
+
default106 as IconSave,
|
|
259
|
+
default107 as IconSearch,
|
|
260
|
+
default108 as IconSee,
|
|
261
|
+
default109 as IconSend,
|
|
262
|
+
default110 as IconSetBackground,
|
|
263
|
+
default111 as IconSettings,
|
|
264
|
+
default112 as IconShare,
|
|
265
|
+
default113 as IconSmartphone,
|
|
266
|
+
default114 as IconSmiley,
|
|
267
|
+
default115 as IconSortAscendingLetters,
|
|
268
|
+
default117 as IconSortDescending,
|
|
269
|
+
default116 as IconSortDescendingLetters,
|
|
270
|
+
default118 as IconSortTime,
|
|
271
|
+
default119 as IconSpeechToText,
|
|
272
|
+
default120 as IconSplitCells,
|
|
273
|
+
default121 as IconSquareRoot,
|
|
274
|
+
default122 as IconSubscript,
|
|
275
|
+
default123 as IconSuccessFill,
|
|
276
|
+
default124 as IconSuccessOutline,
|
|
277
|
+
default125 as IconSuperscript,
|
|
278
|
+
default126 as IconTable,
|
|
279
|
+
default127 as IconTextBold,
|
|
280
|
+
default128 as IconTextColor,
|
|
281
|
+
default129 as IconTextHighlight,
|
|
282
|
+
default130 as IconTextItalic,
|
|
283
|
+
default131 as IconTextPage,
|
|
284
|
+
default132 as IconTextSize,
|
|
285
|
+
default133 as IconTextToSpeech,
|
|
286
|
+
default134 as IconTextTypo,
|
|
287
|
+
default135 as IconTextUnderline,
|
|
288
|
+
default136 as IconTextVanilla,
|
|
289
|
+
default138 as IconTool,
|
|
290
|
+
default137 as IconToolCenter,
|
|
291
|
+
default139 as IconTrendingUp,
|
|
292
|
+
default140 as IconUndo,
|
|
293
|
+
default141 as IconUnlink,
|
|
294
|
+
default142 as IconUnlock,
|
|
295
|
+
default143 as IconUpload,
|
|
296
|
+
default145 as IconUser,
|
|
297
|
+
default144 as IconUserSearch,
|
|
298
|
+
default146 as IconUsers,
|
|
299
|
+
default147 as IconVideo,
|
|
300
|
+
default148 as IconViewCalendar,
|
|
301
|
+
default149 as IconViewList,
|
|
302
|
+
default150 as IconWand,
|
|
303
|
+
default151 as IconWrite,
|
|
304
|
+
default152 as IconZoomIn,
|
|
305
|
+
default153 as IconZoomOut
|
|
304
306
|
};
|