@snack-uikit/notification 0.7.59 → 0.7.60-preview-ba12ca94.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/cjs/components/NotificationCard/NotificationCard.js +156 -0
- package/dist/cjs/components/NotificationCard/components/NotificationCardFunction.js +64 -0
- package/dist/cjs/components/NotificationCard/components/NotificationCardSkeleton.js +60 -0
- package/dist/cjs/components/NotificationCard/components/index.js +26 -0
- package/dist/cjs/components/NotificationCard/constants.js +28 -0
- package/dist/cjs/components/NotificationCard/helpers.js +32 -0
- package/dist/cjs/components/NotificationCard/index.js +25 -0
- package/dist/cjs/components/NotificationCard/types.js +5 -0
- package/dist/cjs/components/NotificationPanel/NotificationPanel.js +112 -0
- package/dist/cjs/components/NotificationPanel/components/NotificationPanelBlank/NotificationPanelBlank.js +42 -0
- package/dist/cjs/components/NotificationPanel/components/NotificationPanelBlank/index.js +25 -0
- package/dist/cjs/components/NotificationPanel/components/NotificationPanelDivider/NotificationPanelDivider.js +37 -0
- package/dist/cjs/components/NotificationPanel/components/NotificationPanelDivider/index.js +25 -0
- package/dist/cjs/components/NotificationPanel/components/NotificationPanelSettings/NotificationPanelSettings.js +29 -0
- package/dist/cjs/components/NotificationPanel/components/NotificationPanelSettings/NotificationPanelSettingsDroplist.js +50 -0
- package/dist/cjs/components/NotificationPanel/components/NotificationPanelSettings/index.js +25 -0
- package/dist/cjs/components/NotificationPanel/components/index.js +26 -0
- package/dist/cjs/components/NotificationPanel/constants.js +18 -0
- package/dist/cjs/components/NotificationPanel/index.js +25 -0
- package/dist/cjs/components/NotificationPanelPopover/NotificationPanelPopover.js +53 -0
- package/dist/cjs/components/NotificationPanelPopover/index.js +25 -0
- package/dist/cjs/components/index.js +27 -0
- package/dist/cjs/index.js +25 -0
- package/dist/esm/components/NotificationCard/NotificationCard.d.ts +43 -0
- package/dist/esm/components/NotificationCard/components/NotificationCardFunction.d.ts +7 -0
- package/dist/esm/components/NotificationCard/components/NotificationCardSkeleton.d.ts +1 -0
- package/dist/esm/components/NotificationCard/components/index.js +2 -0
- package/dist/esm/components/NotificationCard/constants.d.ts +22 -0
- package/dist/esm/components/NotificationCard/helpers.d.ts +2 -0
- package/dist/esm/components/NotificationCard/index.js +1 -0
- package/dist/esm/components/NotificationCard/styles.module.css +135 -0
- package/dist/esm/components/NotificationCard/types.d.ts +3 -0
- package/dist/esm/components/NotificationPanel/NotificationPanel.d.ts +43 -0
- package/dist/esm/components/NotificationPanel/components/NotificationPanelBlank/NotificationPanelBlank.d.ts +4 -0
- package/dist/esm/components/NotificationPanel/components/NotificationPanelBlank/index.js +1 -0
- package/dist/esm/components/NotificationPanel/components/NotificationPanelBlank/styles.module.css +3 -0
- package/dist/esm/components/NotificationPanel/components/NotificationPanelDivider/NotificationPanelDivider.d.ts +8 -0
- package/dist/esm/components/NotificationPanel/components/NotificationPanelDivider/index.js +1 -0
- package/dist/esm/components/NotificationPanel/components/NotificationPanelDivider/styles.module.css +10 -0
- package/dist/esm/components/NotificationPanel/components/NotificationPanelSettings/NotificationPanelSettings.d.ts +9 -0
- package/dist/esm/components/NotificationPanel/components/NotificationPanelSettings/NotificationPanelSettingsDroplist.d.ts +13 -0
- package/dist/esm/components/NotificationPanel/components/NotificationPanelSettings/index.js +1 -0
- package/dist/esm/components/NotificationPanel/components/index.js +2 -0
- package/dist/esm/components/NotificationPanel/constants.d.ts +12 -0
- package/dist/esm/components/NotificationPanel/index.js +1 -0
- package/dist/esm/components/NotificationPanel/styles.module.css +111 -0
- package/dist/esm/components/NotificationPanelPopover/NotificationPanelPopover.d.ts +11 -0
- package/dist/esm/components/NotificationPanelPopover/index.js +1 -0
- package/dist/esm/components/NotificationPanelPopover/styles.module.css +20 -0
- package/dist/esm/components/index.js +3 -0
- package/dist/esm/index.js +1 -0
- package/package.json +22 -18
- /package/dist/{components → cjs/components}/NotificationCard/NotificationCard.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationCard/components/NotificationCardFunction.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationCard/components/NotificationCardSkeleton.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationCard/components/index.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationCard/constants.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationCard/helpers.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationCard/index.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationCard/styles.module.css +0 -0
- /package/dist/{components → cjs/components}/NotificationCard/types.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/NotificationPanel.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/NotificationPanelBlank/NotificationPanelBlank.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/NotificationPanelBlank/index.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/NotificationPanelBlank/styles.module.css +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/NotificationPanelDivider/NotificationPanelDivider.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/NotificationPanelDivider/index.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/NotificationPanelDivider/styles.module.css +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/NotificationPanelSettings/NotificationPanelSettings.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/NotificationPanelSettings/NotificationPanelSettingsDroplist.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/NotificationPanelSettings/index.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/components/index.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/constants.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/index.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanel/styles.module.css +0 -0
- /package/dist/{components → cjs/components}/NotificationPanelPopover/NotificationPanelPopover.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanelPopover/index.d.ts +0 -0
- /package/dist/{components → cjs/components}/NotificationPanelPopover/styles.module.css +0 -0
- /package/dist/{components → cjs/components}/index.d.ts +0 -0
- /package/dist/{index.d.ts → cjs/index.d.ts} +0 -0
- /package/dist/{components → esm/components}/NotificationCard/NotificationCard.js +0 -0
- /package/dist/{components → esm/components}/NotificationCard/components/NotificationCardFunction.js +0 -0
- /package/dist/{components → esm/components}/NotificationCard/components/NotificationCardSkeleton.js +0 -0
- /package/dist/{components/NotificationCard/components/index.js → esm/components/NotificationCard/components/index.d.ts} +0 -0
- /package/dist/{components → esm/components}/NotificationCard/constants.js +0 -0
- /package/dist/{components → esm/components}/NotificationCard/helpers.js +0 -0
- /package/dist/{components/NotificationCard/index.js → esm/components/NotificationCard/index.d.ts} +0 -0
- /package/dist/{components → esm/components}/NotificationCard/types.js +0 -0
- /package/dist/{components → esm/components}/NotificationPanel/NotificationPanel.js +0 -0
- /package/dist/{components → esm/components}/NotificationPanel/components/NotificationPanelBlank/NotificationPanelBlank.js +0 -0
- /package/dist/{components/NotificationPanel/components/NotificationPanelBlank/index.js → esm/components/NotificationPanel/components/NotificationPanelBlank/index.d.ts} +0 -0
- /package/dist/{components → esm/components}/NotificationPanel/components/NotificationPanelDivider/NotificationPanelDivider.js +0 -0
- /package/dist/{components/NotificationPanel/components/NotificationPanelDivider/index.js → esm/components/NotificationPanel/components/NotificationPanelDivider/index.d.ts} +0 -0
- /package/dist/{components → esm/components}/NotificationPanel/components/NotificationPanelSettings/NotificationPanelSettings.js +0 -0
- /package/dist/{components → esm/components}/NotificationPanel/components/NotificationPanelSettings/NotificationPanelSettingsDroplist.js +0 -0
- /package/dist/{components/NotificationPanel/components/NotificationPanelSettings/index.js → esm/components/NotificationPanel/components/NotificationPanelSettings/index.d.ts} +0 -0
- /package/dist/{components/NotificationPanel/components/index.js → esm/components/NotificationPanel/components/index.d.ts} +0 -0
- /package/dist/{components → esm/components}/NotificationPanel/constants.js +0 -0
- /package/dist/{components/NotificationPanel/index.js → esm/components/NotificationPanel/index.d.ts} +0 -0
- /package/dist/{components → esm/components}/NotificationPanelPopover/NotificationPanelPopover.js +0 -0
- /package/dist/{components/NotificationPanelPopover/index.js → esm/components/NotificationPanelPopover/index.d.ts} +0 -0
- /package/dist/{components/index.js → esm/components/index.d.ts} +0 -0
- /package/dist/{index.js → esm/index.d.ts} +0 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
.notificationPanelHeader{
|
|
2
|
+
padding-left:var(--space-notification-panel-header-horizontal-padding, 24px);
|
|
3
|
+
padding-right:var(--space-notification-panel-header-horizontal-padding, 24px);
|
|
4
|
+
padding-top:var(--space-notification-panel-header-padding-top, 24px);
|
|
5
|
+
padding-bottom:var(--space-notification-panel-header-padding-bottom, 16px);
|
|
6
|
+
gap:var(--space-notification-panel-header-gap, 16px);
|
|
7
|
+
border-bottom-width:var(--border-width-notification-panel-container, 1px);
|
|
8
|
+
position:relative;
|
|
9
|
+
display:flex;
|
|
10
|
+
flex-direction:column;
|
|
11
|
+
border-bottom-color:var(--sys-neutral-decor-default, #dde0ea);
|
|
12
|
+
border-bottom-style:solid;
|
|
13
|
+
}
|
|
14
|
+
.notificationPanelHeader::before{
|
|
15
|
+
pointer-events:none;
|
|
16
|
+
content:"";
|
|
17
|
+
position:absolute;
|
|
18
|
+
top:0;
|
|
19
|
+
left:0;
|
|
20
|
+
box-sizing:border-box;
|
|
21
|
+
width:100%;
|
|
22
|
+
height:calc(100% + var(--border-width-notification-panel-container, 1px));
|
|
23
|
+
opacity:var(--opacity-a004, 0.04);
|
|
24
|
+
background-color:var(--sys-neutral-accent-default, #787b8a);
|
|
25
|
+
border-radius:inherit;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.notificationPanelChips{
|
|
29
|
+
gap:var(--space-notification-panel-header-chips-gap, 8px);
|
|
30
|
+
display:flex;
|
|
31
|
+
align-items:center;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.notificationPanelHeaderFunctions{
|
|
35
|
+
display:flex;
|
|
36
|
+
align-items:center;
|
|
37
|
+
justify-content:space-between;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.notificationPanelHeadline{
|
|
41
|
+
gap:var(--space-notification-panel-header-headline-gap, 16px);
|
|
42
|
+
display:flex;
|
|
43
|
+
align-items:center;
|
|
44
|
+
color:var(--sys-neutral-text-main, #41424e);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.notificationPanelTitle{
|
|
48
|
+
flex:1 1 auto;
|
|
49
|
+
min-width:0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.notificationPanelBody{
|
|
53
|
+
flex:1 1 auto;
|
|
54
|
+
min-height:0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.notificationPanelCard:last-of-type{
|
|
58
|
+
border-bottom:none;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.notificationPanelFooterButton{
|
|
62
|
+
border-top-width:var(--border-width-notification-panel-container, 1px);
|
|
63
|
+
border-bottom-right-radius:var(--radius-notification-panel-footer-radius-bottom, 16px);
|
|
64
|
+
border-bottom-left-radius:var(--radius-notification-panel-footer-radius-bottom, 16px);
|
|
65
|
+
height:var(--size-notification-panel-button, 32px);
|
|
66
|
+
cursor:pointer;
|
|
67
|
+
flex-shrink:0;
|
|
68
|
+
box-sizing:border-box;
|
|
69
|
+
width:100%;
|
|
70
|
+
margin:0;
|
|
71
|
+
padding:0;
|
|
72
|
+
color:var(--sys-neutral-text-light, #8b8e9b);
|
|
73
|
+
background:none;
|
|
74
|
+
border-color:var(--sys-neutral-decor-default, #dde0ea);
|
|
75
|
+
border-top-style:solid;
|
|
76
|
+
border-right:none;
|
|
77
|
+
border-bottom:none;
|
|
78
|
+
border-left:none;
|
|
79
|
+
outline:0;
|
|
80
|
+
outline-offset:0;
|
|
81
|
+
}
|
|
82
|
+
.notificationPanelFooterButton:hover{
|
|
83
|
+
color:var(--sys-neutral-text-support, #6d707f);
|
|
84
|
+
}
|
|
85
|
+
.notificationPanelFooterButton:focus-visible{
|
|
86
|
+
outline-width:var(--border-state-focus-s-border-width, 2px);
|
|
87
|
+
outline-style:var(--border-state-focus-s-border-style, solid);
|
|
88
|
+
outline-color:var(--border-state-focus-s-border-color, );
|
|
89
|
+
outline-offset:calc(var(--border-state-focus-s-border-width, 2px) * -1);
|
|
90
|
+
color:var(--sys-neutral-text-support, #6d707f);
|
|
91
|
+
border-color:transparent;
|
|
92
|
+
outline-color:var(--sys-available-complementary, #1c1c24);
|
|
93
|
+
}
|
|
94
|
+
.notificationPanelFooterButton:active{
|
|
95
|
+
color:var(--sys-neutral-text-main, #41424e);
|
|
96
|
+
border-color:var(--sys-neutral-decor-default, #dde0ea);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.wrapper{
|
|
100
|
+
box-sizing:border-box;
|
|
101
|
+
width:100%;
|
|
102
|
+
height:100%;
|
|
103
|
+
display:flex;
|
|
104
|
+
flex-direction:column;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.scrollStub{
|
|
108
|
+
height:calc(var(--dimension-025m, 2px) / 2);
|
|
109
|
+
margin-top:calc(var(--dimension-025m, 2px) / -2);
|
|
110
|
+
background:transparent;
|
|
111
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ReactElement } from 'react';
|
|
2
|
+
import { PopoverPrivateProps } from '@snack-uikit/popover-private';
|
|
3
|
+
import { WithSupportProps } from '@snack-uikit/utils';
|
|
4
|
+
import { NotificationPanel, NotificationPanelProps } from '../NotificationPanel';
|
|
5
|
+
export type NotificationPanelPopoverProps = WithSupportProps<{
|
|
6
|
+
content: ReactElement<NotificationPanelProps, typeof NotificationPanel>;
|
|
7
|
+
/** CSS-класс для элемента содержащего контент */
|
|
8
|
+
contentClassName?: string;
|
|
9
|
+
} & Pick<PopoverPrivateProps, 'className' | 'triggerClassName' | 'open' | 'onOpenChange' | 'hoverDelayOpen' | 'hoverDelayClose' | 'offset' | 'children' | 'closeOnEscapeKey' | 'triggerClickByKeys' | 'triggerRef'> & Partial<Pick<PopoverPrivateProps, 'trigger' | 'placement'>>>;
|
|
10
|
+
/** Компонент-обёртка для NotificationPanel для использования как выпадающий элемент */
|
|
11
|
+
export declare function NotificationPanelPopover({ content, trigger, placement, children, contentClassName, ...otherProps }: NotificationPanelPopoverProps): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './NotificationPanelPopover';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.notificationPanelPopoverWrap{
|
|
2
|
+
padding-top:var(--space-notification-panel-container-padding-top, 4px);
|
|
3
|
+
padding-bottom:var(--space-notification-panel-container-padding-bottom, 24px);
|
|
4
|
+
min-height:var(--size-notification-panel-container, 388px);
|
|
5
|
+
display:flex;
|
|
6
|
+
flex-direction:column;
|
|
7
|
+
box-sizing:border-box;
|
|
8
|
+
height:100%;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.notificationPanelPopover{
|
|
12
|
+
border-radius:var(--radius-notification-panel-panel, 16px);
|
|
13
|
+
width:var(--size-notification-panel-panel, 464px);
|
|
14
|
+
overflow:hidden;
|
|
15
|
+
display:flex;
|
|
16
|
+
flex-direction:column;
|
|
17
|
+
height:100%;
|
|
18
|
+
background-color:var(--sys-neutral-background2-level, #ffffff);
|
|
19
|
+
box-shadow:var(--box-shadow-elevation-level2, 0px 0px 4px 0px rgba(0, 0, 0, 0.0392156863), 0px 4px 8px 0px rgba(0, 0, 0, 0.0392156863));
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|
package/package.json
CHANGED
|
@@ -4,15 +4,18 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Notification",
|
|
7
|
-
"version": "0.7.
|
|
7
|
+
"version": "0.7.60-preview-ba12ca94.0",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
11
11
|
"*.woff2"
|
|
12
12
|
],
|
|
13
13
|
"description": "",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
14
|
+
"types": "./dist/esm/index.d.ts",
|
|
15
|
+
"exports": {
|
|
16
|
+
"import": "./dist/esm/index.js",
|
|
17
|
+
"require": "./dist/cjs/index.js"
|
|
18
|
+
},
|
|
16
19
|
"homepage": "https://github.com/cloud-ru-tech/snack-uikit/tree/master/packages/notification",
|
|
17
20
|
"repository": {
|
|
18
21
|
"type": "git",
|
|
@@ -24,7 +27,8 @@
|
|
|
24
27
|
"Белов Алексей <anbelov@cloud.ru>"
|
|
25
28
|
],
|
|
26
29
|
"files": [
|
|
27
|
-
"dist",
|
|
30
|
+
"dist/cjs",
|
|
31
|
+
"dist/esm",
|
|
28
32
|
"src",
|
|
29
33
|
"./CHANGELOG.md",
|
|
30
34
|
"./LICENSE"
|
|
@@ -32,20 +36,20 @@
|
|
|
32
36
|
"license": "Apache-2.0",
|
|
33
37
|
"scripts": {},
|
|
34
38
|
"dependencies": {
|
|
35
|
-
"@snack-uikit/button": "0.17.
|
|
36
|
-
"@snack-uikit/chips": "0.16.
|
|
37
|
-
"@snack-uikit/icons": "0.22.
|
|
38
|
-
"@snack-uikit/info-block": "0.4.
|
|
39
|
-
"@snack-uikit/link": "0.13.
|
|
40
|
-
"@snack-uikit/list": "0.18.0",
|
|
41
|
-
"@snack-uikit/popover-private": "0.13.
|
|
42
|
-
"@snack-uikit/scroll": "0.6.
|
|
43
|
-
"@snack-uikit/skeleton": "0.3.
|
|
44
|
-
"@snack-uikit/tag": "0.9.
|
|
45
|
-
"@snack-uikit/truncate-string": "0.4.
|
|
46
|
-
"@snack-uikit/typography": "0.6.
|
|
47
|
-
"@snack-uikit/utils": "3.4.0",
|
|
39
|
+
"@snack-uikit/button": "0.17.6-preview-ba12ca94.0",
|
|
40
|
+
"@snack-uikit/chips": "0.16.4-preview-ba12ca94.0",
|
|
41
|
+
"@snack-uikit/icons": "0.22.2-preview-ba12ca94.0",
|
|
42
|
+
"@snack-uikit/info-block": "0.4.10-preview-ba12ca94.0",
|
|
43
|
+
"@snack-uikit/link": "0.13.5-preview-ba12ca94.0",
|
|
44
|
+
"@snack-uikit/list": "0.18.1-preview-ba12ca94.0",
|
|
45
|
+
"@snack-uikit/popover-private": "0.13.8-preview-ba12ca94.0",
|
|
46
|
+
"@snack-uikit/scroll": "0.6.3-preview-ba12ca94.0",
|
|
47
|
+
"@snack-uikit/skeleton": "0.3.6-preview-ba12ca94.0",
|
|
48
|
+
"@snack-uikit/tag": "0.9.12-preview-ba12ca94.0",
|
|
49
|
+
"@snack-uikit/truncate-string": "0.4.25-preview-ba12ca94.0",
|
|
50
|
+
"@snack-uikit/typography": "0.6.4-preview-ba12ca94.0",
|
|
51
|
+
"@snack-uikit/utils": "3.4.1-preview-ba12ca94.0",
|
|
48
52
|
"classnames": "2.3.2"
|
|
49
53
|
},
|
|
50
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "9ac0a3e5e530c09fa4dc050f9bc08d1849962129"
|
|
51
55
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{components → cjs/components}/NotificationPanelPopover/NotificationPanelPopover.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{components → esm/components}/NotificationCard/components/NotificationCardFunction.js
RENAMED
|
File without changes
|
/package/dist/{components → esm/components}/NotificationCard/components/NotificationCardSkeleton.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{components/NotificationCard/index.js → esm/components/NotificationCard/index.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{components/NotificationPanel/index.js → esm/components/NotificationPanel/index.d.ts}
RENAMED
|
File without changes
|
/package/dist/{components → esm/components}/NotificationPanelPopover/NotificationPanelPopover.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|