@yuno-payments/dashboard-design-system 1.2.3 → 1.3.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/dist/components/atoms/icon/icon-list.d.ts +5 -3
- package/dist/components/atoms/icon/icon-list.js +284 -280
- package/dist/components/molecules/file-upload/file-upload.d.ts +87 -0
- package/dist/components/molecules/file-upload/file-upload.js +283 -0
- package/dist/components/molecules/file-upload/index.d.ts +1 -0
- package/dist/components/molecules/index.d.ts +1 -0
- package/dist/dashboard-design-system.css +1 -1
- package/dist/index.css +1 -1
- package/dist/index.esm.min.js +5655 -5337
- package/dist/index.js +48 -46
- package/dist/index.umd.min.js +12 -12
- package/dist/node_modules/@phosphor-icons/react/dist/csr/ArrowsCounterClockwise.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/FileJpg.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/FilePng.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/FilePpt.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/FileXls.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/ArrowsCounterClockwise.es.js +30 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/FileJpg.es.js +30 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/FilePng.es.js +30 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/FilePpt.es.js +30 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/FileXls.es.js +30 -0
- package/package.json +1 -1
- package/dist/node_modules/@phosphor-icons/react/dist/csr/ArrowSquareOut.es.js +0 -8
- package/dist/node_modules/@phosphor-icons/react/dist/csr/SquareHalf.es.js +0 -8
- package/dist/node_modules/@phosphor-icons/react/dist/csr/SquareHalfBottom.es.js +0 -8
- package/dist/node_modules/@phosphor-icons/react/dist/defs/ArrowSquareOut.es.js +0 -36
- package/dist/node_modules/@phosphor-icons/react/dist/defs/SquareHalf.es.js +0 -36
- package/dist/node_modules/@phosphor-icons/react/dist/defs/SquareHalfBottom.es.js +0 -30
|
@@ -120,6 +120,7 @@ declare const IconList: {
|
|
|
120
120
|
FileCsv: import('@phosphor-icons/react').Icon;
|
|
121
121
|
DownloadSimple: import('@phosphor-icons/react').Icon;
|
|
122
122
|
ArrowCounterClockwise: import('@phosphor-icons/react').Icon;
|
|
123
|
+
ArrowsCounterClockwise: import('@phosphor-icons/react').Icon;
|
|
123
124
|
Bank: import('@phosphor-icons/react').Icon;
|
|
124
125
|
ShieldWarning: import('@phosphor-icons/react').Icon;
|
|
125
126
|
UserSwitch: import('@phosphor-icons/react').Icon;
|
|
@@ -208,9 +209,10 @@ declare const IconList: {
|
|
|
208
209
|
Queue: import('@phosphor-icons/react').Icon;
|
|
209
210
|
DeviceMobileSpeaker: import('@phosphor-icons/react').Icon;
|
|
210
211
|
Camera: import('@phosphor-icons/react').Icon;
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
212
|
+
FileXls: import('@phosphor-icons/react').Icon;
|
|
213
|
+
FilePng: import('@phosphor-icons/react').Icon;
|
|
214
|
+
FileJpg: import('@phosphor-icons/react').Icon;
|
|
215
|
+
FilePpt: import('@phosphor-icons/react').Icon;
|
|
214
216
|
};
|
|
215
217
|
export type IconName = Exclude<keyof typeof IconList, "Icon" | "IconProps" | "IconWeight" | "IconContext">;
|
|
216
218
|
export { IconList };
|