@flamingo-stack/openframe-frontend-core 0.0.225 → 0.0.227
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/{chunk-2QURHTDV.js → chunk-CUBRHI6D.js} +2 -2
- package/dist/{chunk-NRJ53MIF.cjs → chunk-E3DB4D43.cjs} +9 -9
- package/dist/{chunk-NRJ53MIF.cjs.map → chunk-E3DB4D43.cjs.map} +1 -1
- package/dist/{chunk-3YTIV6C5.cjs → chunk-E3WJQQGW.cjs} +7 -7
- package/dist/{chunk-3YTIV6C5.cjs.map → chunk-E3WJQQGW.cjs.map} +1 -1
- package/dist/{chunk-SAJG77KY.js → chunk-EURLSRHW.js} +2 -2
- package/dist/{chunk-IWBDAGZQ.cjs → chunk-HO2VEMEX.cjs} +24 -24
- package/dist/{chunk-IWBDAGZQ.cjs.map → chunk-HO2VEMEX.cjs.map} +1 -1
- package/dist/{chunk-NHRVPMBU.js → chunk-K252FYE5.js} +3959 -3740
- package/dist/chunk-K252FYE5.js.map +1 -0
- package/dist/{chunk-5RELSRTS.cjs → chunk-LEM4FLCU.cjs} +10 -10
- package/dist/{chunk-5RELSRTS.cjs.map → chunk-LEM4FLCU.cjs.map} +1 -1
- package/dist/{chunk-HOQDRQ4M.cjs → chunk-QFC725WU.cjs} +746 -527
- package/dist/chunk-QFC725WU.cjs.map +1 -0
- package/dist/{chunk-RIEEPMJ6.js → chunk-X3KKG6IU.js} +2 -2
- package/dist/{chunk-NUOYDHUM.js → chunk-YE62NF6I.js} +2 -2
- package/dist/components/chat/approval-batch-message.d.ts +6 -0
- package/dist/components/chat/approval-batch-message.d.ts.map +1 -1
- package/dist/components/chat/index.cjs +2 -2
- package/dist/components/chat/index.js +1 -1
- package/dist/components/contact/index.cjs +3 -3
- package/dist/components/contact/index.js +2 -2
- package/dist/components/features/index.cjs +10 -2
- package/dist/components/features/index.cjs.map +1 -1
- package/dist/components/features/index.js +9 -1
- package/dist/components/features/notifications/approval-request-notification-tile.d.ts +13 -0
- package/dist/components/features/notifications/approval-request-notification-tile.d.ts.map +1 -0
- package/dist/components/features/notifications/index.d.ts +4 -1
- package/dist/components/features/notifications/index.d.ts.map +1 -1
- package/dist/components/features/notifications/notification-drawer.d.ts +3 -1
- package/dist/components/features/notifications/notification-drawer.d.ts.map +1 -1
- package/dist/components/features/notifications/notification-popups.d.ts +3 -1
- package/dist/components/features/notifications/notification-popups.d.ts.map +1 -1
- package/dist/components/features/notifications/notification-tile.d.ts +6 -1
- package/dist/components/features/notifications/notification-tile.d.ts.map +1 -1
- package/dist/components/features/notifications/notifications-context.d.ts +5 -2
- package/dist/components/features/notifications/notifications-context.d.ts.map +1 -1
- package/dist/components/features/notifications/types.d.ts +30 -0
- package/dist/components/features/notifications/types.d.ts.map +1 -1
- package/dist/components/index.cjs +87 -77
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +14 -4
- package/dist/components/index.js.map +1 -1
- package/dist/components/navigation/index.cjs +2 -2
- package/dist/components/navigation/index.js +1 -1
- package/dist/components/onboarding-guides/index.cjs +25 -25
- package/dist/components/onboarding-guides/index.js +3 -3
- package/dist/components/tickets/index.cjs +64 -64
- package/dist/components/tickets/index.js +4 -4
- package/dist/components/ui/color-preset-select.d.ts.map +1 -1
- package/dist/components/ui/color-swatch.d.ts +7 -0
- package/dist/components/ui/color-swatch.d.ts.map +1 -0
- package/dist/components/ui/data-table/data-table-body.d.ts +8 -1
- package/dist/components/ui/data-table/data-table-body.d.ts.map +1 -1
- package/dist/components/ui/data-table/data-table-row.d.ts +4 -2
- package/dist/components/ui/data-table/data-table-row.d.ts.map +1 -1
- package/dist/components/ui/data-table/index.d.ts +1 -1
- package/dist/components/ui/index.cjs +4 -2
- package/dist/components/ui/index.cjs.map +1 -1
- package/dist/components/ui/index.d.ts +1 -0
- package/dist/components/ui/index.d.ts.map +1 -1
- package/dist/components/ui/index.js +3 -1
- package/dist/components/ui/ticket-status-config-row.d.ts.map +1 -1
- package/dist/components/ui/ticket-status-tag.d.ts.map +1 -1
- package/dist/index.cjs +12 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +11 -1
- package/package.json +1 -1
- package/src/components/chat/approval-batch-message.tsx +26 -15
- package/src/components/features/notifications/approval-request-notification-tile.tsx +118 -0
- package/src/components/features/notifications/index.ts +10 -0
- package/src/components/features/notifications/notification-drawer.tsx +28 -11
- package/src/components/features/notifications/notification-popups.tsx +33 -19
- package/src/components/features/notifications/notification-tile.tsx +34 -19
- package/src/components/features/notifications/notifications-context.tsx +7 -1
- package/src/components/features/notifications/types.ts +50 -0
- package/src/components/ui/color-preset-select.tsx +1 -10
- package/src/components/ui/color-swatch.tsx +17 -0
- package/src/components/ui/data-table/data-table-body.tsx +9 -0
- package/src/components/ui/data-table/data-table-row.tsx +24 -3
- package/src/components/ui/index.ts +1 -0
- package/src/components/ui/modal-v2.tsx +2 -2
- package/src/components/ui/ticket-status-config-row.tsx +78 -39
- package/src/components/ui/ticket-status-tag.tsx +2 -7
- package/src/stories/NotificationDrawer.stories.tsx +148 -1
- package/dist/chunk-HOQDRQ4M.cjs.map +0 -1
- package/dist/chunk-NHRVPMBU.js.map +0 -1
- /package/dist/{chunk-2QURHTDV.js.map → chunk-CUBRHI6D.js.map} +0 -0
- /package/dist/{chunk-SAJG77KY.js.map → chunk-EURLSRHW.js.map} +0 -0
- /package/dist/{chunk-RIEEPMJ6.js.map → chunk-X3KKG6IU.js.map} +0 -0
- /package/dist/{chunk-NUOYDHUM.js.map → chunk-YE62NF6I.js.map} +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.