@teambit/notifications 1.0.107 → 1.0.109
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/artifacts/preview/teambit_ui_foundation_notifications-preview.js +1 -0
- package/dist/notification-reducer.d.ts +1 -1
- package/dist/notification.ui.runtime.js +3 -6
- package/dist/notification.ui.runtime.js.map +1 -1
- package/package.json +12 -19
- package/tsconfig.json +16 -21
- package/types/asset.d.ts +15 -3
- /package/dist/{preview-1703590665075.js → preview-1703698405864.js} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o():"function"==typeof define&&define.amd?define([],o):"object"==typeof exports?exports["teambit.ui-foundation/notifications-preview"]=o():e["teambit.ui-foundation/notifications-preview"]=o()}(self,(()=>(()=>{"use strict";var e={d:(o,t)=>{for(var i in t)e.o(t,i)&&!e.o(o,i)&&Object.defineProperty(o,i,{enumerable:!0,get:t[i]})},o:(e,o)=>Object.prototype.hasOwnProperty.call(e,o),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},o={};e.r(o),e.d(o,{compositions:()=>t,compositions_metadata:()=>n,overview:()=>i});const t=[],i=[],n={compositions:[]};return o})()));
|
|
@@ -77,9 +77,8 @@ class NotificationUI {
|
|
|
77
77
|
_defineProperty(this, "dispatch", void 0);
|
|
78
78
|
/** adds a full message to the log */
|
|
79
79
|
_defineProperty(this, "add", (message, level) => {
|
|
80
|
-
var _this$dispatch;
|
|
81
80
|
const id = (0, _uuid().v1)();
|
|
82
|
-
|
|
81
|
+
this.dispatch?.({
|
|
83
82
|
type: 'add',
|
|
84
83
|
content: {
|
|
85
84
|
id,
|
|
@@ -100,8 +99,7 @@ class NotificationUI {
|
|
|
100
99
|
_defineProperty(this, "success", message => this.add(message, _uiFoundationUiNotifications3().MessageLevel.success));
|
|
101
100
|
/** removes all notifications */
|
|
102
101
|
_defineProperty(this, "clear", () => {
|
|
103
|
-
|
|
104
|
-
(_this$dispatch2 = this.dispatch) === null || _this$dispatch2 === void 0 || _this$dispatch2.call(this, {
|
|
102
|
+
this.dispatch?.({
|
|
105
103
|
type: 'clear'
|
|
106
104
|
});
|
|
107
105
|
});
|
|
@@ -129,8 +127,7 @@ class NotificationUI {
|
|
|
129
127
|
}
|
|
130
128
|
/** removes/archives a message from the log */
|
|
131
129
|
dismiss(id) {
|
|
132
|
-
|
|
133
|
-
(_this$dispatch3 = this.dispatch) === null || _this$dispatch3 === void 0 || _this$dispatch3.call(this, {
|
|
130
|
+
this.dispatch?.({
|
|
134
131
|
type: 'dismiss',
|
|
135
132
|
id
|
|
136
133
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_ui","data","require","_react","_interopRequireWildcard","_uuid","_uiFoundationUiNotifications","_uiFoundationUiNotifications2","_uiFoundationUiNotifications3","_notificationReducer","_notifications","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","_extends","assign","bind","target","arguments","length","source","key","apply","_defineProperty","obj","value","_toPropertyKey","enumerable","configurable","writable","_toPrimitive","String","Symbol","toPrimitive","TypeError","Number","NotificationUI","provider","uiRuntimeExtension","constructor","message","level","
|
|
1
|
+
{"version":3,"names":["_ui","data","require","_react","_interopRequireWildcard","_uuid","_uiFoundationUiNotifications","_uiFoundationUiNotifications2","_uiFoundationUiNotifications3","_notificationReducer","_notifications","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","_extends","assign","bind","target","arguments","length","source","key","apply","_defineProperty","obj","value","_toPropertyKey","enumerable","configurable","writable","_toPrimitive","String","Symbol","toPrimitive","TypeError","Number","NotificationUI","provider","uiRuntimeExtension","constructor","message","level","id","v1","dispatch","type","content","time","Date","toISOString","add","MessageLevel","info","warning","error","success","props","messages","useReducer","notificationReducer","createElement","NotificationCenter","notifications","children","NotificationContext","Provider","registerHudItem","render","registerRenderHooks","reactContext","renderContext","dismiss","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":"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"}
|
package/package.json
CHANGED
|
@@ -1,36 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/notifications",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.109",
|
|
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": "1.0.
|
|
9
|
+
"version": "1.0.109"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"uuid": "8.3.2",
|
|
13
|
-
"core-js": "^3.0.0",
|
|
14
|
-
"@babel/runtime": "7.20.0",
|
|
15
13
|
"@teambit/ui-foundation.ui.notifications.store": "0.0.500",
|
|
16
14
|
"@teambit/ui-foundation.ui.notifications.notification-center": "0.0.523",
|
|
17
15
|
"@teambit/ui-foundation.ui.notifications.notification-context": "0.0.501",
|
|
18
16
|
"@teambit/harmony": "0.4.6",
|
|
19
|
-
"@teambit/ui": "1.0.
|
|
17
|
+
"@teambit/ui": "1.0.109"
|
|
20
18
|
},
|
|
21
19
|
"devDependencies": {
|
|
22
|
-
"@types/react": "^17.0.8",
|
|
23
20
|
"@types/uuid": "8.3.4",
|
|
24
21
|
"@types/mocha": "9.1.0",
|
|
25
|
-
"@types/
|
|
26
|
-
"@types/
|
|
27
|
-
"@
|
|
28
|
-
"@types/testing-library__jest-dom": "5.9.5"
|
|
22
|
+
"@types/jest": "^29.2.2",
|
|
23
|
+
"@types/testing-library__jest-dom": "^5.9.5",
|
|
24
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.14"
|
|
29
25
|
},
|
|
30
26
|
"peerDependencies": {
|
|
31
|
-
"
|
|
32
|
-
"react": "^
|
|
33
|
-
"
|
|
27
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
28
|
+
"@types/react": "^18.2.12",
|
|
29
|
+
"@teambit/legacy": "1.0.624"
|
|
34
30
|
},
|
|
35
31
|
"license": "Apache-2.0",
|
|
36
32
|
"optionalDependencies": {},
|
|
@@ -44,7 +40,7 @@
|
|
|
44
40
|
},
|
|
45
41
|
"private": false,
|
|
46
42
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
43
|
+
"node": ">=16.0.0"
|
|
48
44
|
},
|
|
49
45
|
"repository": {
|
|
50
46
|
"type": "git",
|
|
@@ -53,12 +49,9 @@
|
|
|
53
49
|
"keywords": [
|
|
54
50
|
"bit",
|
|
55
51
|
"bit-aspect",
|
|
52
|
+
"bit-core-aspect",
|
|
56
53
|
"components",
|
|
57
54
|
"collaboration",
|
|
58
|
-
"web"
|
|
59
|
-
"react",
|
|
60
|
-
"react-components",
|
|
61
|
-
"angular",
|
|
62
|
-
"angular-components"
|
|
55
|
+
"web"
|
|
63
56
|
]
|
|
64
57
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,38 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"lib": [
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"DOM.Iterable",
|
|
8
|
-
"ScriptHost"
|
|
4
|
+
"esnext",
|
|
5
|
+
"dom",
|
|
6
|
+
"dom.Iterable"
|
|
9
7
|
],
|
|
10
|
-
"target": "
|
|
11
|
-
"module": "
|
|
12
|
-
"jsx": "react",
|
|
13
|
-
"allowJs": true,
|
|
14
|
-
"composite": true,
|
|
8
|
+
"target": "es2020",
|
|
9
|
+
"module": "es2020",
|
|
10
|
+
"jsx": "react-jsx",
|
|
15
11
|
"declaration": true,
|
|
16
12
|
"sourceMap": true,
|
|
17
|
-
"skipLibCheck": true,
|
|
18
13
|
"experimentalDecorators": true,
|
|
19
|
-
"
|
|
14
|
+
"skipLibCheck": true,
|
|
20
15
|
"moduleResolution": "node",
|
|
21
16
|
"esModuleInterop": true,
|
|
22
|
-
"rootDir": ".",
|
|
23
17
|
"resolveJsonModule": true,
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"strictPropertyInitialization": false,
|
|
28
|
-
"strict": true,
|
|
29
|
-
"noImplicitAny": false,
|
|
30
|
-
"preserveConstEnums": true
|
|
18
|
+
"allowJs": true,
|
|
19
|
+
"outDir": "dist",
|
|
20
|
+
"emitDeclarationOnly": true
|
|
31
21
|
},
|
|
32
22
|
"exclude": [
|
|
23
|
+
"artifacts",
|
|
24
|
+
"public",
|
|
33
25
|
"dist",
|
|
26
|
+
"node_modules",
|
|
27
|
+
"package.json",
|
|
34
28
|
"esm.mjs",
|
|
35
|
-
"
|
|
29
|
+
"**/*.cjs",
|
|
30
|
+
"./dist"
|
|
36
31
|
],
|
|
37
32
|
"include": [
|
|
38
33
|
"**/*",
|
package/types/asset.d.ts
CHANGED
|
@@ -5,12 +5,12 @@ declare module '*.png' {
|
|
|
5
5
|
declare module '*.svg' {
|
|
6
6
|
import type { FunctionComponent, SVGProps } from 'react';
|
|
7
7
|
|
|
8
|
-
export const ReactComponent: FunctionComponent<
|
|
8
|
+
export const ReactComponent: FunctionComponent<
|
|
9
|
+
SVGProps<SVGSVGElement> & { title?: string }
|
|
10
|
+
>;
|
|
9
11
|
const src: string;
|
|
10
12
|
export default src;
|
|
11
13
|
}
|
|
12
|
-
|
|
13
|
-
// @TODO Gilad
|
|
14
14
|
declare module '*.jpg' {
|
|
15
15
|
const value: any;
|
|
16
16
|
export = value;
|
|
@@ -27,3 +27,15 @@ declare module '*.bmp' {
|
|
|
27
27
|
const value: any;
|
|
28
28
|
export = value;
|
|
29
29
|
}
|
|
30
|
+
declare module '*.otf' {
|
|
31
|
+
const value: any;
|
|
32
|
+
export = value;
|
|
33
|
+
}
|
|
34
|
+
declare module '*.woff' {
|
|
35
|
+
const value: any;
|
|
36
|
+
export = value;
|
|
37
|
+
}
|
|
38
|
+
declare module '*.woff2' {
|
|
39
|
+
const value: any;
|
|
40
|
+
export = value;
|
|
41
|
+
}
|
|
File without changes
|