@teambit/notifications 0.0.1114 → 0.0.1115
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/index.js.map +1 -1
- package/dist/notification-reducer.js.map +1 -1
- package/dist/notification.ui.runtime.js +6 -2
- package/dist/notification.ui.runtime.js.map +1 -1
- package/dist/notifications.aspect.js.map +1 -1
- package/package-tar/teambit-notifications-0.0.1115.tgz +0 -0
- package/package.json +3 -3
- package/package-tar/teambit-notifications-0.0.1114.tgz +0 -0
- /package/dist/{preview-1690168610397.js → preview-1690254961496.js} +0 -0
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["NotificationsAspect"],"sources":["index.ts"],"sourcesContent":["import { NotificationsAspect } from './notifications.aspect';\n\nexport type { default as NotificationUI } from './notification.ui.runtime';\n\nexport { NotificationsAspect };\nexport default NotificationsAspect;\n"],"mappings":";;;;;;;;;;;;AAAA;EAAA;
|
|
1
|
+
{"version":3,"names":["_notifications","data","require","_default","NotificationsAspect","exports","default"],"sources":["index.ts"],"sourcesContent":["import { NotificationsAspect } from './notifications.aspect';\n\nexport type { default as NotificationUI } from './notification.ui.runtime';\n\nexport { NotificationsAspect };\nexport default NotificationsAspect;\n"],"mappings":";;;;;;;;;;;;AAAA,SAAAA,eAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,cAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAA6D,IAAAE,QAAA,GAK9CC,oCAAmB;AAAAC,OAAA,CAAAC,OAAA,GAAAH,QAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["notificationReducer","state","action","type","filter","x","id","content","concat"],"sources":["notification-reducer.tsx"],"sourcesContent":["import { Message } from '@teambit/ui-foundation.ui.notifications.store';\n\nexport type NotificationAction = {\n type: 'add' | 'dismiss' | 'clear';\n content?: Message;\n id?: string;\n};\n\nexport function notificationReducer(state: Message[], action: NotificationAction) {\n switch (action.type) {\n case 'dismiss':\n return state.filter((x) => x.id !== action.id);\n case 'add':\n if (!action.content) return state;\n return state.concat(action.content);\n case 'clear':\n return [];\n default:\n return state;\n }\n}\n"],"mappings":";;;;;;AAQO,SAASA,
|
|
1
|
+
{"version":3,"names":["notificationReducer","state","action","type","filter","x","id","content","concat"],"sources":["notification-reducer.tsx"],"sourcesContent":["import { Message } from '@teambit/ui-foundation.ui.notifications.store';\n\nexport type NotificationAction = {\n type: 'add' | 'dismiss' | 'clear';\n content?: Message;\n id?: string;\n};\n\nexport function notificationReducer(state: Message[], action: NotificationAction) {\n switch (action.type) {\n case 'dismiss':\n return state.filter((x) => x.id !== action.id);\n case 'add':\n if (!action.content) return state;\n return state.concat(action.content);\n case 'clear':\n return [];\n default:\n return state;\n }\n}\n"],"mappings":";;;;;;AAQO,SAASA,mBAAmBA,CAACC,KAAgB,EAAEC,MAA0B,EAAE;EAChF,QAAQA,MAAM,CAACC,IAAI;IACjB,KAAK,SAAS;MACZ,OAAOF,KAAK,CAACG,MAAM,CAAEC,CAAC,IAAKA,CAAC,CAACC,EAAE,KAAKJ,MAAM,CAACI,EAAE,CAAC;IAChD,KAAK,KAAK;MACR,IAAI,CAACJ,MAAM,CAACK,OAAO,EAAE,OAAON,KAAK;MACjC,OAAOA,KAAK,CAACO,MAAM,CAACN,MAAM,CAACK,OAAO,CAAC;IACrC,KAAK,OAAO;MACV,OAAO,EAAE;IACX;MACE,OAAON,KAAK;EAChB;AACF"}
|
|
@@ -88,6 +88,7 @@ class NotificationUI {
|
|
|
88
88
|
}
|
|
89
89
|
constructor(uiRuntimeExtension) {
|
|
90
90
|
(0, _defineProperty2().default)(this, "dispatch", void 0);
|
|
91
|
+
/** adds a full message to the log */
|
|
91
92
|
(0, _defineProperty2().default)(this, "add", (message, level) => {
|
|
92
93
|
var _this$dispatch;
|
|
93
94
|
const id = (0, _uuid().v1)();
|
|
@@ -102,10 +103,15 @@ class NotificationUI {
|
|
|
102
103
|
});
|
|
103
104
|
return id;
|
|
104
105
|
});
|
|
106
|
+
/** adds a message with level "info" to the log */
|
|
105
107
|
(0, _defineProperty2().default)(this, "log", message => this.add(message, _uiFoundationUiNotifications3().MessageLevel.info));
|
|
108
|
+
/** adds a message with level "warning" to the log */
|
|
106
109
|
(0, _defineProperty2().default)(this, "warn", message => this.add(message, _uiFoundationUiNotifications3().MessageLevel.warning));
|
|
110
|
+
/** adds a message with level "error" to the log */
|
|
107
111
|
(0, _defineProperty2().default)(this, "error", message => this.add(message, _uiFoundationUiNotifications3().MessageLevel.error));
|
|
112
|
+
/** adds a message with level "success" to the log */
|
|
108
113
|
(0, _defineProperty2().default)(this, "success", message => this.add(message, _uiFoundationUiNotifications3().MessageLevel.success));
|
|
114
|
+
/** removes all notifications */
|
|
109
115
|
(0, _defineProperty2().default)(this, "clear", () => {
|
|
110
116
|
var _this$dispatch2;
|
|
111
117
|
(_this$dispatch2 = this.dispatch) === null || _this$dispatch2 === void 0 ? void 0 : _this$dispatch2.call(this, {
|
|
@@ -142,8 +148,6 @@ class NotificationUI {
|
|
|
142
148
|
id
|
|
143
149
|
});
|
|
144
150
|
}
|
|
145
|
-
|
|
146
|
-
/** adds a message with level "info" to the log */
|
|
147
151
|
}
|
|
148
152
|
exports.default = NotificationUI;
|
|
149
153
|
(0, _defineProperty2().default)(NotificationUI, "dependencies", [_ui().UIAspect]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["NotificationUI","provider","uiRuntimeExtension","constructor","message","level","id","v1","dispatch","type","content","time","Date","toISOString","add","MessageLevel","info","warning","error","success","props","messages","useReducer","notificationReducer","children","registerHudItem","registerRenderHooks","reactContext","renderContext","dismiss","UIAspect","UIRuntime","NotificationsAspect","addRuntime"],"sources":["notification.ui.runtime.tsx"],"sourcesContent":["import { UIAspect, UIRuntime, UiUI } from '@teambit/ui';\nimport React, { ReactNode, useReducer } from 'react';\nimport { v1 } from 'uuid';\n\nimport { NotificationContext } from '@teambit/ui-foundation.ui.notifications.notification-context';\nimport {\n NotificationCenter,\n NotificationCenterProps,\n} from '@teambit/ui-foundation.ui.notifications.notification-center';\nimport { MessageLevel, NotificationsStore } from '@teambit/ui-foundation.ui.notifications.store';\nimport { NotificationAction, notificationReducer } from './notification-reducer';\nimport { NotificationsAspect } from './notifications.aspect';\n\n/**\n * extension\n */\nexport default class NotificationUI implements NotificationsStore {\n static dependencies = [UIAspect];\n\n static runtime = UIRuntime;\n\n static async provider([uiRuntimeExtension]: [UiUI]) {\n return new NotificationUI(uiRuntimeExtension);\n }\n\n constructor(uiRuntimeExtension: UiUI) {\n uiRuntimeExtension.registerHudItem(<this.render key=\"NotificationUI\" />);\n uiRuntimeExtension.registerRenderHooks({ reactContext: this.renderContext });\n }\n\n private dispatch?: React.Dispatch<NotificationAction>;\n\n /** adds a full message to the log */\n add = (message: string, level: MessageLevel) => {\n const id = v1();\n\n this.dispatch?.({\n type: 'add',\n content: {\n id,\n message,\n level,\n time: new Date().toISOString(),\n },\n });\n\n return id;\n };\n\n /** removes/archives a message from the log */\n dismiss(id: string) {\n this.dispatch?.({\n type: 'dismiss',\n id,\n });\n }\n\n /** adds a message with level \"info\" to the log */\n log = (message: string) => this.add(message, MessageLevel.info);\n /** adds a message with level \"warning\" to the log */\n warn = (message: string) => this.add(message, MessageLevel.warning);\n /** adds a message with level \"error\" to the log */\n error = (message: string) => this.add(message, MessageLevel.error);\n /** adds a message with level \"success\" to the log */\n success = (message: string) => this.add(message, MessageLevel.success);\n\n /** removes all notifications */\n clear = () => {\n this.dispatch?.({\n type: 'clear',\n });\n };\n\n private render = (props: Omit<NotificationCenterProps, 'notifications'>) => {\n // this code assumes a single place of render per instance of NotificationUI\n const [messages, dispatch] = useReducer(notificationReducer, []);\n this.dispatch = dispatch;\n\n return <NotificationCenter {...props} notifications={messages} />;\n };\n\n private renderContext = ({ children }: { children: ReactNode }) => {\n return <NotificationContext.Provider value={this}>{children}</NotificationContext.Provider>;\n };\n}\n\nNotificationsAspect.addRuntime(NotificationUI);\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAAA;EAAA;
|
|
1
|
+
{"version":3,"names":["_ui","data","require","_react","_interopRequireWildcard","_uuid","_uiFoundationUiNotifications","_uiFoundationUiNotifications2","_uiFoundationUiNotifications3","_notificationReducer","_notifications","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","NotificationUI","provider","uiRuntimeExtension","constructor","_defineProperty2","message","level","_this$dispatch","id","v1","dispatch","type","content","time","Date","toISOString","add","MessageLevel","info","warning","error","success","_this$dispatch2","props","messages","useReducer","notificationReducer","createElement","NotificationCenter","_extends2","notifications","children","NotificationContext","Provider","value","registerHudItem","render","registerRenderHooks","reactContext","renderContext","dismiss","_this$dispatch3","exports","UIAspect","UIRuntime","NotificationsAspect","addRuntime"],"sources":["notification.ui.runtime.tsx"],"sourcesContent":["import { UIAspect, UIRuntime, UiUI } from '@teambit/ui';\nimport React, { ReactNode, useReducer } from 'react';\nimport { v1 } from 'uuid';\n\nimport { NotificationContext } from '@teambit/ui-foundation.ui.notifications.notification-context';\nimport {\n NotificationCenter,\n NotificationCenterProps,\n} from '@teambit/ui-foundation.ui.notifications.notification-center';\nimport { MessageLevel, NotificationsStore } from '@teambit/ui-foundation.ui.notifications.store';\nimport { NotificationAction, notificationReducer } from './notification-reducer';\nimport { NotificationsAspect } from './notifications.aspect';\n\n/**\n * extension\n */\nexport default class NotificationUI implements NotificationsStore {\n static dependencies = [UIAspect];\n\n static runtime = UIRuntime;\n\n static async provider([uiRuntimeExtension]: [UiUI]) {\n return new NotificationUI(uiRuntimeExtension);\n }\n\n constructor(uiRuntimeExtension: UiUI) {\n uiRuntimeExtension.registerHudItem(<this.render key=\"NotificationUI\" />);\n uiRuntimeExtension.registerRenderHooks({ reactContext: this.renderContext });\n }\n\n private dispatch?: React.Dispatch<NotificationAction>;\n\n /** adds a full message to the log */\n add = (message: string, level: MessageLevel) => {\n const id = v1();\n\n this.dispatch?.({\n type: 'add',\n content: {\n id,\n message,\n level,\n time: new Date().toISOString(),\n },\n });\n\n return id;\n };\n\n /** removes/archives a message from the log */\n dismiss(id: string) {\n this.dispatch?.({\n type: 'dismiss',\n id,\n });\n }\n\n /** adds a message with level \"info\" to the log */\n log = (message: string) => this.add(message, MessageLevel.info);\n /** adds a message with level \"warning\" to the log */\n warn = (message: string) => this.add(message, MessageLevel.warning);\n /** adds a message with level \"error\" to the log */\n error = (message: string) => this.add(message, MessageLevel.error);\n /** adds a message with level \"success\" to the log */\n success = (message: string) => this.add(message, MessageLevel.success);\n\n /** removes all notifications */\n clear = () => {\n this.dispatch?.({\n type: 'clear',\n });\n };\n\n private render = (props: Omit<NotificationCenterProps, 'notifications'>) => {\n // this code assumes a single place of render per instance of NotificationUI\n const [messages, dispatch] = useReducer(notificationReducer, []);\n this.dispatch = dispatch;\n\n return <NotificationCenter {...props} notifications={messages} />;\n };\n\n private renderContext = ({ children }: { children: ReactNode }) => {\n return <NotificationContext.Provider value={this}>{children}</NotificationContext.Provider>;\n };\n}\n\nNotificationsAspect.addRuntime(NotificationUI);\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAAA,SAAAA,IAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,GAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAE,OAAA;EAAA,MAAAF,IAAA,GAAAG,uBAAA,CAAAF,OAAA;EAAAC,MAAA,YAAAA,CAAA;IAAA,OAAAF,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAI,MAAA;EAAA,MAAAJ,IAAA,GAAAC,OAAA;EAAAG,KAAA,YAAAA,CAAA;IAAA,OAAAJ,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEA,SAAAK,6BAAA;EAAA,MAAAL,IAAA,GAAAC,OAAA;EAAAI,4BAAA,YAAAA,CAAA;IAAA,OAAAL,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAM,8BAAA;EAAA,MAAAN,IAAA,GAAAC,OAAA;EAAAK,6BAAA,YAAAA,CAAA;IAAA,OAAAN,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAIA,SAAAO,8BAAA;EAAA,MAAAP,IAAA,GAAAC,OAAA;EAAAM,6BAAA,YAAAA,CAAA;IAAA,OAAAP,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAQ,qBAAA;EAAA,MAAAR,IAAA,GAAAC,OAAA;EAAAO,oBAAA,YAAAA,CAAA;IAAA,OAAAR,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAS,eAAA;EAAA,MAAAT,IAAA,GAAAC,OAAA;EAAAQ,cAAA,YAAAA,CAAA;IAAA,OAAAT,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAA6D,SAAAU,yBAAAC,WAAA,eAAAC,OAAA,kCAAAC,iBAAA,OAAAD,OAAA,QAAAE,gBAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,WAAA,WAAAA,WAAA,GAAAG,gBAAA,GAAAD,iBAAA,KAAAF,WAAA;AAAA,SAAAR,wBAAAY,GAAA,EAAAJ,WAAA,SAAAA,WAAA,IAAAI,GAAA,IAAAA,GAAA,CAAAC,UAAA,WAAAD,GAAA,QAAAA,GAAA,oBAAAA,GAAA,wBAAAA,GAAA,4BAAAE,OAAA,EAAAF,GAAA,UAAAG,KAAA,GAAAR,wBAAA,CAAAC,WAAA,OAAAO,KAAA,IAAAA,KAAA,CAAAC,GAAA,CAAAJ,GAAA,YAAAG,KAAA,CAAAE,GAAA,CAAAL,GAAA,SAAAM,MAAA,WAAAC,qBAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,GAAA,IAAAX,GAAA,QAAAW,GAAA,kBAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAd,GAAA,EAAAW,GAAA,SAAAI,IAAA,GAAAR,qBAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAV,GAAA,EAAAW,GAAA,cAAAI,IAAA,KAAAA,IAAA,CAAAV,GAAA,IAAAU,IAAA,CAAAC,GAAA,KAAAR,MAAA,CAAAC,cAAA,CAAAH,MAAA,EAAAK,GAAA,EAAAI,IAAA,YAAAT,MAAA,CAAAK,GAAA,IAAAX,GAAA,CAAAW,GAAA,SAAAL,MAAA,CAAAJ,OAAA,GAAAF,GAAA,MAAAG,KAAA,IAAAA,KAAA,CAAAa,GAAA,CAAAhB,GAAA,EAAAM,MAAA,YAAAA,MAAA;AAE7D;AACA;AACA;AACe,MAAMW,cAAc,CAA+B;EAKhE,aAAaC,QAAQA,CAAC,CAACC,kBAAkB,CAAS,EAAE;IAClD,OAAO,IAAIF,cAAc,CAACE,kBAAkB,CAAC;EAC/C;EAEAC,WAAWA,CAACD,kBAAwB,EAAE;IAAA,IAAAE,gBAAA,GAAAnB,OAAA;IAOtC;IAAA,IAAAmB,gBAAA,GAAAnB,OAAA,eACM,CAACoB,OAAe,EAAEC,KAAmB,KAAK;MAAA,IAAAC,cAAA;MAC9C,MAAMC,EAAE,GAAG,IAAAC,UAAE,EAAC,CAAC;MAEf,CAAAF,cAAA,OAAI,CAACG,QAAQ,cAAAH,cAAA,uBAAbA,cAAA,CAAAV,IAAA,KAAI,EAAY;QACdc,IAAI,EAAE,KAAK;QACXC,OAAO,EAAE;UACPJ,EAAE;UACFH,OAAO;UACPC,KAAK;UACLO,IAAI,EAAE,IAAIC,IAAI,CAAC,CAAC,CAACC,WAAW,CAAC;QAC/B;MACF,CAAC,CAAC;MAEF,OAAOP,EAAE;IACX,CAAC;IAUD;IAAA,IAAAJ,gBAAA,GAAAnB,OAAA,eACOoB,OAAe,IAAK,IAAI,CAACW,GAAG,CAACX,OAAO,EAAEY,4CAAY,CAACC,IAAI,CAAC;IAC/D;IAAA,IAAAd,gBAAA,GAAAnB,OAAA,gBACQoB,OAAe,IAAK,IAAI,CAACW,GAAG,CAACX,OAAO,EAAEY,4CAAY,CAACE,OAAO,CAAC;IACnE;IAAA,IAAAf,gBAAA,GAAAnB,OAAA,iBACSoB,OAAe,IAAK,IAAI,CAACW,GAAG,CAACX,OAAO,EAAEY,4CAAY,CAACG,KAAK,CAAC;IAClE;IAAA,IAAAhB,gBAAA,GAAAnB,OAAA,mBACWoB,OAAe,IAAK,IAAI,CAACW,GAAG,CAACX,OAAO,EAAEY,4CAAY,CAACI,OAAO,CAAC;IAEtE;IAAA,IAAAjB,gBAAA,GAAAnB,OAAA,iBACQ,MAAM;MAAA,IAAAqC,eAAA;MACZ,CAAAA,eAAA,OAAI,CAACZ,QAAQ,cAAAY,eAAA,uBAAbA,eAAA,CAAAzB,IAAA,KAAI,EAAY;QACdc,IAAI,EAAE;MACR,CAAC,CAAC;IACJ,CAAC;IAAA,IAAAP,gBAAA,GAAAnB,OAAA,kBAEiBsC,KAAqD,IAAK;MAC1E;MACA,MAAM,CAACC,QAAQ,EAAEd,QAAQ,CAAC,GAAG,IAAAe,mBAAU,EAACC,0CAAmB,EAAE,EAAE,CAAC;MAChE,IAAI,CAAChB,QAAQ,GAAGA,QAAQ;MAExB,oBAAOxC,MAAA,GAAAe,OAAA,CAAA0C,aAAA,CAACrD,6BAAA,GAAAsD,kBAAkB,MAAAC,SAAA,GAAA5C,OAAA,MAAKsC,KAAK;QAAEO,aAAa,EAAEN;MAAS,EAAE,CAAC;IACnE,CAAC;IAAA,IAAApB,gBAAA,GAAAnB,OAAA,yBAEuB,CAAC;MAAE8C;IAAkC,CAAC,KAAK;MACjE,oBAAO7D,MAAA,GAAAe,OAAA,CAAA0C,aAAA,CAACtD,4BAAA,GAAA2D,mBAAmB,CAACC,QAAQ;QAACC,KAAK,EAAE;MAAK,GAAEH,QAAuC,CAAC;IAC7F,CAAC;IAzDC7B,kBAAkB,CAACiC,eAAe,eAACjE,MAAA,GAAAe,OAAA,CAAA0C,aAAA,MAAMS,MAAM;MAAC1C,GAAG,EAAC;IAAgB,CAAE,CAAC,CAAC;IACxEQ,kBAAkB,CAACmC,mBAAmB,CAAC;MAAEC,YAAY,EAAE,IAAI,CAACC;IAAc,CAAC,CAAC;EAC9E;EAqBA;EACAC,OAAOA,CAAChC,EAAU,EAAE;IAAA,IAAAiC,eAAA;IAClB,CAAAA,eAAA,OAAI,CAAC/B,QAAQ,cAAA+B,eAAA,uBAAbA,eAAA,CAAA5C,IAAA,KAAI,EAAY;MACdc,IAAI,EAAE,SAAS;MACfH;IACF,CAAC,CAAC;EACJ;AA6BF;AAACkC,OAAA,CAAAzD,OAAA,GAAAe,cAAA;AAAA,IAAAI,gBAAA,GAAAnB,OAAA,EApEoBe,cAAc,kBACX,CAAC2C,cAAQ,CAAC;AAAA,IAAAvC,gBAAA,GAAAnB,OAAA,EADbe,cAAc,aAGhB4C,eAAS;AAmE5BC,oCAAmB,CAACC,UAAU,CAAC9C,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["NotificationsAspect","Aspect","create","id"],"sources":["notifications.aspect.ts"],"sourcesContent":["import { Aspect } from '@teambit/harmony';\n\nexport const NotificationsAspect = Aspect.create({\n id: 'teambit.ui-foundation/notifications',\n});\n\nexport default NotificationsAspect;\n"],"mappings":";;;;;;AAAA;EAAA;
|
|
1
|
+
{"version":3,"names":["_harmony","data","require","NotificationsAspect","Aspect","create","id","exports","_default","default"],"sources":["notifications.aspect.ts"],"sourcesContent":["import { Aspect } from '@teambit/harmony';\n\nexport const NotificationsAspect = Aspect.create({\n id: 'teambit.ui-foundation/notifications',\n});\n\nexport default NotificationsAspect;\n"],"mappings":";;;;;;AAAA,SAAAA,SAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,QAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEO,MAAME,mBAAmB,GAAGC,iBAAM,CAACC,MAAM,CAAC;EAC/CC,EAAE,EAAE;AACN,CAAC,CAAC;AAACC,OAAA,CAAAJ,mBAAA,GAAAA,mBAAA;AAAA,IAAAK,QAAA,GAEYL,mBAAmB;AAAAI,OAAA,CAAAE,OAAA,GAAAD,QAAA"}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/notifications",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.1115",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/ui-foundation/notifications",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.ui-foundation",
|
|
8
8
|
"name": "notifications",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.1115"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"uuid": "8.3.2",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@teambit/ui-foundation.ui.notifications.store": "0.0.495",
|
|
17
17
|
"@teambit/ui-foundation.ui.notifications.notification-center": "0.0.515",
|
|
18
18
|
"@teambit/ui-foundation.ui.notifications.notification-context": "0.0.496",
|
|
19
|
-
"@teambit/ui": "0.0.
|
|
19
|
+
"@teambit/ui": "0.0.1115"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/react": "^17.0.8",
|
|
Binary file
|
|
File without changes
|