@yuno-payments/dashboard-design-system 2.2.0 → 2.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 -0
- package/dist/components/atoms/icon/icon-list.js +439 -426
- package/dist/components/organisms/dialog/dialog.d.ts +5 -0
- package/dist/components/organisms/dialog/dialog.js +90 -80
- package/dist/index.esm.min.js +6681 -6510
- package/dist/index.umd.min.js +15 -15
- package/dist/node_modules/@phosphor-icons/react/dist/csr/ArrowSquareOut.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/Lifebuoy.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/NotePencil.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/SquareHalf.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/SquareHalfBottom.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/ArrowSquareOut.es.js +36 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/Lifebuoy.es.js +36 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/NotePencil.es.js +30 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/SquareHalf.es.js +36 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/SquareHalfBottom.es.js +30 -0
- package/package.json +4 -4
- package/registry/components-registry.json +2 -2
|
@@ -209,10 +209,15 @@ declare const IconList: {
|
|
|
209
209
|
Queue: import('@phosphor-icons/react').Icon;
|
|
210
210
|
DeviceMobileSpeaker: import('@phosphor-icons/react').Icon;
|
|
211
211
|
Camera: import('@phosphor-icons/react').Icon;
|
|
212
|
+
ArrowSquareOut: import('@phosphor-icons/react').Icon;
|
|
213
|
+
SquareHalf: import('@phosphor-icons/react').Icon;
|
|
214
|
+
SquareHalfBottom: import('@phosphor-icons/react').Icon;
|
|
212
215
|
FileXls: import('@phosphor-icons/react').Icon;
|
|
213
216
|
FilePng: import('@phosphor-icons/react').Icon;
|
|
214
217
|
FileJpg: import('@phosphor-icons/react').Icon;
|
|
215
218
|
FilePpt: import('@phosphor-icons/react').Icon;
|
|
219
|
+
NotePencil: import('@phosphor-icons/react').Icon;
|
|
220
|
+
Lifebuoy: import('@phosphor-icons/react').Icon;
|
|
216
221
|
};
|
|
217
222
|
export type IconName = Exclude<keyof typeof IconList, "Icon" | "IconProps" | "IconWeight" | "IconContext">;
|
|
218
223
|
export { IconList };
|