@croquiscom/pds 9.0.0 → 9.1.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.
- package/CHANGELOG.md +7 -0
- package/assets/icons/ArrowChevronDoubleLeft.svg +6 -0
- package/assets/icons/ArrowChevronDoubleRight.svg +4 -0
- package/assets/icons/Box.svg +4 -0
- package/assets/icons/CheckDouble.svg +4 -0
- package/assets/icons/ColoredFire.svg +11 -0
- package/assets/icons/CursorResize.svg +5 -0
- package/assets/icons/DetailChart.svg +6 -0
- package/assets/icons/DetailContents.svg +5 -0
- package/assets/icons/DetailThreeDots.svg +6 -0
- package/assets/icons/DiscountTag.svg +6 -0
- package/assets/icons/DocumentCharts.svg +7 -0
- package/assets/icons/DocumentData.svg +6 -0
- package/assets/icons/DocumentDetails.svg +9 -0
- package/assets/icons/Download.svg +4 -0
- package/assets/icons/Folder.svg +3 -0
- package/assets/icons/FolderCheck.svg +4 -0
- package/assets/icons/FolderCheckDouble.svg +5 -0
- package/assets/icons/Grabber.svg +8 -0
- package/assets/icons/GridView.svg +6 -0
- package/assets/icons/Mute.svg +4 -0
- package/assets/icons/Percent.svg +3 -0
- package/assets/icons/Refresh.svg +2 -2
- package/assets/icons/ScreenFull.svg +6 -0
- package/assets/icons/ScreenNormal.svg +3 -0
- package/assets/icons/ScreenZoomIn.svg +3 -0
- package/assets/icons/ScreenZoomOut.svg +3 -0
- package/assets/icons/Search.svg +2 -2
- package/assets/icons/SearchBold.svg +2 -9
- package/assets/icons/SortAsc.svg +7 -0
- package/assets/icons/SortDesc.svg +7 -0
- package/assets/icons/Swap.svg +3 -0
- package/assets/icons/TableGeneral.svg +3 -0
- package/assets/icons/TablePivot.svg +3 -0
- package/assets/icons/Trash.svg +5 -0
- package/assets/icons/Undo.svg +3 -0
- package/assets/icons/Unmute.svg +5 -0
- package/assets/icons/ZoomIn.svg +3 -3
- package/dist/components/icons/generated/ArrowChevronDoubleLeft.d.ts +4 -0
- package/dist/components/icons/generated/ArrowChevronDoubleRight.d.ts +4 -0
- package/dist/components/icons/generated/Box.d.ts +4 -0
- package/dist/components/icons/generated/CheckDouble.d.ts +4 -0
- package/dist/components/icons/generated/ColoredFire.d.ts +4 -0
- package/dist/components/icons/generated/CursorResize.d.ts +4 -0
- package/dist/components/icons/generated/DetailChart.d.ts +4 -0
- package/dist/components/icons/generated/DetailContents.d.ts +4 -0
- package/dist/components/icons/generated/DetailThreeDots.d.ts +4 -0
- package/dist/components/icons/generated/DiscountTag.d.ts +4 -0
- package/dist/components/icons/generated/DocumentCharts.d.ts +4 -0
- package/dist/components/icons/generated/DocumentData.d.ts +4 -0
- package/dist/components/icons/generated/DocumentDetails.d.ts +4 -0
- package/dist/components/icons/generated/Download.d.ts +4 -0
- package/dist/components/icons/generated/Folder.d.ts +4 -0
- package/dist/components/icons/generated/FolderCheck.d.ts +4 -0
- package/dist/components/icons/generated/FolderCheckDouble.d.ts +4 -0
- package/dist/components/icons/generated/Grabber.d.ts +4 -0
- package/dist/components/icons/generated/GridView.d.ts +4 -0
- package/dist/components/icons/generated/Mute.d.ts +4 -0
- package/dist/components/icons/generated/Percent.d.ts +4 -0
- package/dist/components/icons/generated/ScreenFull.d.ts +4 -0
- package/dist/components/icons/generated/ScreenNormal.d.ts +4 -0
- package/dist/components/icons/generated/ScreenZoomIn.d.ts +4 -0
- package/dist/components/icons/generated/ScreenZoomOut.d.ts +4 -0
- package/dist/components/icons/generated/SortAsc.d.ts +4 -0
- package/dist/components/icons/generated/SortDesc.d.ts +4 -0
- package/dist/components/icons/generated/Swap.d.ts +4 -0
- package/dist/components/icons/generated/TableGeneral.d.ts +4 -0
- package/dist/components/icons/generated/TablePivot.d.ts +4 -0
- package/dist/components/icons/generated/Trash.d.ts +4 -0
- package/dist/components/icons/generated/Undo.d.ts +4 -0
- package/dist/components/icons/generated/Unmute.d.ts +4 -0
- package/dist/components/icons/generated/index.d.ts +33 -0
- package/dist/components/lotties/LottieBase.d.ts +3 -0
- package/dist/components/lotties/constant.d.ts +8 -0
- package/dist/index.es.js +8 -8
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/stories/Lotties.d.ts +2 -0
- package/package.json +2 -1
- package/plugin/ui.html +1 -1
- package/plugin/ui.js +1 -1
|
@@ -5,7 +5,9 @@ export interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
5
5
|
secondaryColor?: string;
|
|
6
6
|
}
|
|
7
7
|
export { default as IconArrowBottom } from './ArrowBottom';
|
|
8
|
+
export { default as IconArrowChevronDoubleLeft } from './ArrowChevronDoubleLeft';
|
|
8
9
|
export { default as IconArrowChevronDoubleLeftBold } from './ArrowChevronDoubleLeftBold';
|
|
10
|
+
export { default as IconArrowChevronDoubleRight } from './ArrowChevronDoubleRight';
|
|
9
11
|
export { default as IconArrowChevronDoubleRightBold } from './ArrowChevronDoubleRightBold';
|
|
10
12
|
export { default as IconArrowChevronDown } from './ArrowChevronDown';
|
|
11
13
|
export { default as IconArrowChevronLeft } from './ArrowChevronLeft';
|
|
@@ -28,6 +30,7 @@ export { default as IconBarChart } from './BarChart';
|
|
|
28
30
|
export { default as IconBell } from './Bell';
|
|
29
31
|
export { default as IconBelow } from './Below';
|
|
30
32
|
export { default as IconBeta } from './Beta';
|
|
33
|
+
export { default as IconBox } from './Box';
|
|
31
34
|
export { default as IconBoxBestFill } from './BoxBestFill';
|
|
32
35
|
export { default as IconBoxCanada } from './BoxCanada';
|
|
33
36
|
export { default as IconBoxCartFill } from './BoxCartFill';
|
|
@@ -79,6 +82,7 @@ export { default as IconChange } from './Change';
|
|
|
79
82
|
export { default as IconChangeBold } from './ChangeBold';
|
|
80
83
|
export { default as IconCheck } from './Check';
|
|
81
84
|
export { default as IconCheckBold } from './CheckBold';
|
|
85
|
+
export { default as IconCheckDouble } from './CheckDouble';
|
|
82
86
|
export { default as IconChecklist } from './Checklist';
|
|
83
87
|
export { default as IconCircle } from './Circle';
|
|
84
88
|
export { default as IconCircleAutoCharge } from './CircleAutoCharge';
|
|
@@ -127,6 +131,7 @@ export { default as IconColoredFingerOne } from './ColoredFingerOne';
|
|
|
127
131
|
export { default as IconColoredFingerPointing } from './ColoredFingerPointing';
|
|
128
132
|
export { default as IconColoredFingerThree } from './ColoredFingerThree';
|
|
129
133
|
export { default as IconColoredFingerTwo } from './ColoredFingerTwo';
|
|
134
|
+
export { default as IconColoredFire } from './ColoredFire';
|
|
130
135
|
export { default as IconColoredFlag } from './ColoredFlag';
|
|
131
136
|
export { default as IconColoredGift } from './ColoredGift';
|
|
132
137
|
export { default as IconColoredGraphDown } from './ColoredGraphDown';
|
|
@@ -166,11 +171,20 @@ export { default as IconCopy } from './Copy';
|
|
|
166
171
|
export { default as IconCounselor } from './Counselor';
|
|
167
172
|
export { default as IconCoupon } from './Coupon';
|
|
168
173
|
export { default as IconCrop } from './Crop';
|
|
174
|
+
export { default as IconCursorResize } from './CursorResize';
|
|
175
|
+
export { default as IconDetailChart } from './DetailChart';
|
|
176
|
+
export { default as IconDetailContents } from './DetailContents';
|
|
177
|
+
export { default as IconDetailThreeDots } from './DetailThreeDots';
|
|
178
|
+
export { default as IconDiscountTag } from './DiscountTag';
|
|
169
179
|
export { default as IconDiscountTagFill } from './DiscountTagFill';
|
|
170
180
|
export { default as IconDocument } from './Document';
|
|
181
|
+
export { default as IconDocumentCharts } from './DocumentCharts';
|
|
171
182
|
export { default as IconDocumentCheck } from './DocumentCheck';
|
|
183
|
+
export { default as IconDocumentData } from './DocumentData';
|
|
184
|
+
export { default as IconDocumentDetails } from './DocumentDetails';
|
|
172
185
|
export { default as IconDotsHorizontal } from './DotsHorizontal';
|
|
173
186
|
export { default as IconDotsVertical } from './DotsVertical';
|
|
187
|
+
export { default as IconDownload } from './Download';
|
|
174
188
|
export { default as IconEdit } from './Edit';
|
|
175
189
|
export { default as IconEmail } from './Email';
|
|
176
190
|
export { default as IconExcel } from './Excel';
|
|
@@ -181,6 +195,11 @@ export { default as IconFaceNeutralFill } from './FaceNeutralFill';
|
|
|
181
195
|
export { default as IconFaceSmileFill } from './FaceSmileFill';
|
|
182
196
|
export { default as IconFaceVeryGoodFill } from './FaceVeryGoodFill';
|
|
183
197
|
export { default as IconFilter } from './Filter';
|
|
198
|
+
export { default as IconFolder } from './Folder';
|
|
199
|
+
export { default as IconFolderCheck } from './FolderCheck';
|
|
200
|
+
export { default as IconFolderCheckDouble } from './FolderCheckDouble';
|
|
201
|
+
export { default as IconGrabber } from './Grabber';
|
|
202
|
+
export { default as IconGridView } from './GridView';
|
|
184
203
|
export { default as IconHandPicking } from './HandPicking';
|
|
185
204
|
export { default as IconHandPickingOut } from './HandPickingOut';
|
|
186
205
|
export { default as IconHandshake } from './Handshake';
|
|
@@ -203,6 +222,7 @@ export { default as IconMinus } from './Minus';
|
|
|
203
222
|
export { default as IconMinusBold } from './MinusBold';
|
|
204
223
|
export { default as IconMonitor } from './Monitor';
|
|
205
224
|
export { default as IconMove } from './Move';
|
|
225
|
+
export { default as IconMute } from './Mute';
|
|
206
226
|
export { default as IconNew } from './New';
|
|
207
227
|
export { default as IconNumEightFill } from './NumEightFill';
|
|
208
228
|
export { default as IconNumFiveFill } from './NumFiveFill';
|
|
@@ -215,6 +235,7 @@ export { default as IconNumTenFill } from './NumTenFill';
|
|
|
215
235
|
export { default as IconNumThreeFill } from './NumThreeFill';
|
|
216
236
|
export { default as IconNumTwoFill } from './NumTwoFill';
|
|
217
237
|
export { default as IconPauseFill } from './PauseFill';
|
|
238
|
+
export { default as IconPercent } from './Percent';
|
|
218
239
|
export { default as IconPerson } from './Person';
|
|
219
240
|
export { default as IconPicture } from './Picture';
|
|
220
241
|
export { default as IconPictureX } from './PictureX';
|
|
@@ -227,21 +248,33 @@ export { default as IconPlus } from './Plus';
|
|
|
227
248
|
export { default as IconPrinter } from './Printer';
|
|
228
249
|
export { default as IconRefresh } from './Refresh';
|
|
229
250
|
export { default as IconRocket } from './Rocket';
|
|
251
|
+
export { default as IconScreenFull } from './ScreenFull';
|
|
252
|
+
export { default as IconScreenNormal } from './ScreenNormal';
|
|
253
|
+
export { default as IconScreenZoomIn } from './ScreenZoomIn';
|
|
254
|
+
export { default as IconScreenZoomOut } from './ScreenZoomOut';
|
|
230
255
|
export { default as IconSearch } from './Search';
|
|
231
256
|
export { default as IconSearchBold } from './SearchBold';
|
|
232
257
|
export { default as IconSetting } from './Setting';
|
|
233
258
|
export { default as IconSort } from './Sort';
|
|
259
|
+
export { default as IconSortAsc } from './SortAsc';
|
|
260
|
+
export { default as IconSortDesc } from './SortDesc';
|
|
234
261
|
export { default as IconSpoid } from './Spoid';
|
|
235
262
|
export { default as IconStar } from './Star';
|
|
236
263
|
export { default as IconStore } from './Store';
|
|
237
264
|
export { default as IconSubscription } from './Subscription';
|
|
265
|
+
export { default as IconSwap } from './Swap';
|
|
266
|
+
export { default as IconTableGeneral } from './TableGeneral';
|
|
267
|
+
export { default as IconTablePivot } from './TablePivot';
|
|
238
268
|
export { default as IconThreeBars } from './ThreeBars';
|
|
239
269
|
export { default as IconThumbsDown } from './ThumbsDown';
|
|
240
270
|
export { default as IconThumbsUp } from './ThumbsUp';
|
|
271
|
+
export { default as IconTrash } from './Trash';
|
|
241
272
|
export { default as IconTriangleWarning } from './TriangleWarning';
|
|
242
273
|
export { default as IconTruckReturn } from './TruckReturn';
|
|
243
274
|
export { default as IconTruckSetting } from './TruckSetting';
|
|
275
|
+
export { default as IconUndo } from './Undo';
|
|
244
276
|
export { default as IconUnlock } from './Unlock';
|
|
277
|
+
export { default as IconUnmute } from './Unmute';
|
|
245
278
|
export { default as IconUpload } from './Upload';
|
|
246
279
|
export { default as IconVideo } from './Video';
|
|
247
280
|
export { default as IconVvip } from './Vvip';
|