@maggioli-design-system/mds-push-notification 5.2.1 → 5.2.2
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/collection/components/mds-push-notification/test/mds-push-notification.stories.js +24 -18
- package/dist/documentation.json +1 -1
- package/dist/stats.json +1 -1
- package/dist/types/components/mds-push-notification/test/mds-push-notification.stories.d.ts +15 -3
- package/dist/types/dictionary/icon.d.ts +1 -1
- package/documentation.json +2 -2
- package/package.json +2 -2
- package/src/components/mds-push-notification/test/mds-push-notification.stories.tsx +164 -76
- package/src/fixtures/icons.json +0 -176
package/dist/collection/components/mds-push-notification/test/mds-push-notification.stories.js
CHANGED
|
@@ -30,14 +30,14 @@ const exampleNotifications = [
|
|
|
30
30
|
},
|
|
31
31
|
];
|
|
32
32
|
const PushNotificationElement = ({ index }) => {
|
|
33
|
-
return h("mds-push-notification-item", { icon: "mi/baseline/attachment", subject: `Notification ${index + 1}`, message: "Sto preparando il documento che mi hai richiesto, dovrei finire in giornata, fammi sapere se hai altri aggiornamenti al riguardo cos\u00EC non mi perdo pezzi per la strada." });
|
|
33
|
+
return (h("mds-push-notification-item", { icon: "mi/baseline/attachment", subject: `Notification ${index + 1}`, message: "Sto preparando il documento che mi hai richiesto, dovrei finire in giornata, fammi sapere se hai altri aggiornamenti al riguardo cos\u00EC non mi perdo pezzi per la strada." }));
|
|
34
34
|
};
|
|
35
35
|
const GetNotifications = ({ notifications }) => {
|
|
36
36
|
// console.log('getNotifications', notifications)
|
|
37
37
|
if (notifications.length > 0) {
|
|
38
|
-
return h(Fragment, null, notifications.map((n, i) => {
|
|
39
|
-
return h("mds-push-notification-item", { key: i, preview: n.preview, src: n.src, subject: n.subject, message: n.message }, h("mds-button", { slot: "actions", variant: "primary", tone: "weak", size: "sm" }, "Rispondi"));
|
|
40
|
-
}));
|
|
38
|
+
return (h(Fragment, null, notifications.map((n, i) => {
|
|
39
|
+
return (h("mds-push-notification-item", { key: i, preview: n.preview, src: n.src, subject: n.subject, message: n.message }, h("mds-button", { slot: "actions", variant: "primary", tone: "weak", size: "sm" }, "Rispondi")));
|
|
40
|
+
})));
|
|
41
41
|
}
|
|
42
42
|
};
|
|
43
43
|
const Template = args => {
|
|
@@ -70,30 +70,36 @@ const Template = args => {
|
|
|
70
70
|
setNotifications([...notifications, n]);
|
|
71
71
|
// console.log(notifications)
|
|
72
72
|
}
|
|
73
|
-
return h("div", { class: "-m-600" }, h("div", { class: "fixed top-600 left-600 flex gap-100" }, visible
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
return (h("div", { class: "grid gap-25", key: index }, h("mds-text", { typography:
|
|
77
|
-
}))));
|
|
73
|
+
return (h("div", { class: "-m-600" }, h("div", { class: "fixed top-600 left-600 flex gap-100" }, visible ? (h("mds-button", { class: "shadow-outline-50 shadow-tone-neutral", onClick: () => setVisible(false), icon: "mdi/eye-off-outline", variant: "error" }, "Hide notifications")) : (h("mds-button", { class: "shadow-outline-50 shadow-tone-neutral", onClick: () => setVisible(true), icon: "mi/baseline/remove-red-eye", variant: "primary" }, "Show notifications")), h("mds-button", { class: "shadow-outline-50 shadow-tone-neutral", variant: "success", onClick: pushN }, "Carica altre...")), h("mds-push-notification", { class: "mds-push-notification", visible: visible === false ? undefined : true, behavior: args.behavior }, h(GetNotifications, { notifications: notifications })), h("div", { class: "p-1200 flex justify-center" }, h("div", { class: "grid gap-600 grid-cols-3 max-mobile:grid-cols-1 max-w-screen-desktop" }, Array(18)
|
|
74
|
+
.fill(null)
|
|
75
|
+
.map((_item, index) => {
|
|
76
|
+
return (h("div", { class: "grid gap-25", key: index }, h("mds-text", { typography: "h5", tag: "h2" }, "This is a section title"), h("mds-text", null, "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus iure, ratione beatae quam optio cumque rerum modi consectetur odit eligendi omnis veniam fuga non ipsam voluptatum a ut neque illum.")));
|
|
77
|
+
})))));
|
|
78
78
|
};
|
|
79
79
|
const TemplateAddNotifications = () => {
|
|
80
80
|
const [items, setItem] = useState(0);
|
|
81
|
-
return h("div", null, h("mds-button", { onClick: () => setItem(items + 1) }, "Add notifications"), h("mds-push-notification", null, Array.from(Array(items).keys()).map((_item, index) => h(PushNotificationElement, { index: index }))));
|
|
81
|
+
return (h("div", null, h("mds-button", { onClick: () => setItem(items + 1) }, "Add notifications"), h("mds-push-notification", null, Array.from(Array(items).keys()).map((_item, index) => (h(PushNotificationElement, { index: index }))))));
|
|
82
82
|
};
|
|
83
83
|
const TemplateAddMultipleNotifications = args => {
|
|
84
84
|
const [items, setItem] = useState(0);
|
|
85
85
|
const addItems = () => {
|
|
86
86
|
setItem(items + 3);
|
|
87
87
|
};
|
|
88
|
-
return h("div", null, h("mds-button", { onClick: addItems.bind(this) }, "Carica notifiche..."), h("mds-push-notification", Object.assign({}, args), h("mds-button", { slot: "top", variant: "dark", onClick: addItems.bind(this) }, "Carica notifiche..."), Array.from(Array(items).keys()).map((_item, index) => h(PushNotificationElement, { index: index })), h("mds-button", { slot: "bottom", variant: "dark" }, "Cancella notifiche")));
|
|
88
|
+
return (h("div", null, h("mds-button", { onClick: addItems.bind(this) }, "Carica notifiche..."), h("mds-push-notification", Object.assign({}, args), h("mds-button", { slot: "top", variant: "dark", onClick: addItems.bind(this) }, "Carica notifiche..."), Array.from(Array(items).keys()).map((_item, index) => (h(PushNotificationElement, { index: index }))), h("mds-button", { slot: "bottom", variant: "dark" }, "Cancella notifiche"))));
|
|
89
89
|
};
|
|
90
|
-
export const Default =
|
|
91
|
-
|
|
92
|
-
AddNotifications.args = {
|
|
93
|
-
visible: true,
|
|
90
|
+
export const Default = {
|
|
91
|
+
render: Template,
|
|
94
92
|
};
|
|
95
|
-
export const
|
|
96
|
-
|
|
97
|
-
|
|
93
|
+
export const AddNotifications = {
|
|
94
|
+
render: TemplateAddNotifications,
|
|
95
|
+
args: {
|
|
96
|
+
visible: true,
|
|
97
|
+
},
|
|
98
|
+
};
|
|
99
|
+
export const AddMultipleNotifications = {
|
|
100
|
+
render: TemplateAddMultipleNotifications,
|
|
101
|
+
args: {
|
|
102
|
+
visible: true,
|
|
103
|
+
},
|
|
98
104
|
};
|
|
99
105
|
export const ManualNotification = Template.bind({}, { behavior: 'manual' });
|
package/dist/documentation.json
CHANGED
package/dist/stats.json
CHANGED
|
@@ -10,7 +10,19 @@ declare const _default: {
|
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
12
|
export default _default;
|
|
13
|
-
export declare const Default:
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
export declare const Default: {
|
|
14
|
+
render: (args: any) => any;
|
|
15
|
+
};
|
|
16
|
+
export declare const AddNotifications: {
|
|
17
|
+
render: () => any;
|
|
18
|
+
args: {
|
|
19
|
+
visible: boolean;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
export declare const AddMultipleNotifications: {
|
|
23
|
+
render: (args: any) => any;
|
|
24
|
+
args: {
|
|
25
|
+
visible: boolean;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
16
28
|
export declare const ManualNotification: any;
|
package/documentation.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "
|
|
2
|
+
"timestamp": "2026-01-16T12:28:24",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.27.2",
|
|
@@ -425,7 +425,7 @@
|
|
|
425
425
|
"path": "src/type/variant.ts"
|
|
426
426
|
},
|
|
427
427
|
"src/components/mds-chip/meta/interface.ts::MdsChipEvent": {
|
|
428
|
-
"declaration": "interface MdsChipEvent {\n event: Event\n element: HTMLMdsChipElement\n}",
|
|
428
|
+
"declaration": "interface MdsChipEvent {\n event: Event\n selected?: boolean\n element: HTMLMdsChipElement\n}",
|
|
429
429
|
"docstring": "",
|
|
430
430
|
"path": "src/components/mds-chip/meta/interface.ts"
|
|
431
431
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/mds-push-notification",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.2",
|
|
4
4
|
"description": "mds-push-notification is a web-component from Magma Design System, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScript framework you are using.",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"test": "stencil test --spec --e2e"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@maggioli-design-system/mds-push-notification-item": "1.2.
|
|
27
|
+
"@maggioli-design-system/mds-push-notification-item": "1.2.2",
|
|
28
28
|
"@maggioli-design-system/styles": "15.11.0",
|
|
29
29
|
"@stencil/core": "4.27.2",
|
|
30
30
|
"clsx": "2.1.0"
|
|
@@ -12,21 +12,22 @@ export default {
|
|
|
12
12
|
},
|
|
13
13
|
}
|
|
14
14
|
interface Notification {
|
|
15
|
-
message: string
|
|
16
|
-
|
|
17
|
-
datetime?: string
|
|
18
|
-
preview?: NotificationItemPreviewType
|
|
19
|
-
icon?: string
|
|
20
|
-
initial?: string
|
|
21
|
-
src?: string
|
|
22
|
-
subject?: string
|
|
15
|
+
message: string;
|
|
16
|
+
|
|
17
|
+
datetime?: string;
|
|
18
|
+
preview?: NotificationItemPreviewType;
|
|
19
|
+
icon?: string;
|
|
20
|
+
initial?: string;
|
|
21
|
+
src?: string;
|
|
22
|
+
subject?: string;
|
|
23
23
|
}
|
|
24
24
|
const exampleNotifications: Notification[] = [
|
|
25
25
|
{
|
|
26
26
|
preview: 'avatar',
|
|
27
27
|
src: '/avatar-05-200x200.jpeg',
|
|
28
28
|
subject: 'Sarah Ho',
|
|
29
|
-
message:
|
|
29
|
+
message:
|
|
30
|
+
'Sto preparando il documento che mi hai richiesto, dovrei finire in giornata, fammi sapere se hai altri aggiornamenti al riguardo così non mi perdo pezzi per la strada.',
|
|
30
31
|
},
|
|
31
32
|
{
|
|
32
33
|
preview: 'avatar',
|
|
@@ -38,45 +39,75 @@ const exampleNotifications: Notification[] = [
|
|
|
38
39
|
preview: 'avatar',
|
|
39
40
|
src: '/avatar-06-200x200.jpeg',
|
|
40
41
|
subject: 'JamPushNotificationElementes Millennial',
|
|
41
|
-
message:
|
|
42
|
+
message:
|
|
43
|
+
'Domani ci sei alla riunione che ha organizzato Gigetto? Ho saputo che ci sarà anche Puppo.',
|
|
42
44
|
},
|
|
43
45
|
]
|
|
44
46
|
|
|
45
|
-
const PushNotificationElement = (
|
|
46
|
-
return
|
|
47
|
+
const PushNotificationElement = ({ index }) => {
|
|
48
|
+
return (
|
|
49
|
+
<mds-push-notification-item
|
|
50
|
+
icon="mi/baseline/attachment"
|
|
51
|
+
subject={`Notification ${index + 1}`}
|
|
52
|
+
message="Sto preparando il documento che mi hai richiesto, dovrei finire in giornata, fammi sapere se hai altri aggiornamenti al riguardo così non mi perdo pezzi per la strada."
|
|
53
|
+
></mds-push-notification-item>
|
|
54
|
+
)
|
|
47
55
|
}
|
|
48
56
|
|
|
49
57
|
type GetNotificationsProps = {
|
|
50
|
-
notifications: Notification[]
|
|
51
|
-
}
|
|
58
|
+
notifications: Notification[];
|
|
59
|
+
};
|
|
52
60
|
const GetNotifications = ({ notifications }: GetNotificationsProps) => {
|
|
53
61
|
// console.log('getNotifications', notifications)
|
|
54
62
|
if (notifications.length > 0) {
|
|
55
|
-
return
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
63
|
+
return (
|
|
64
|
+
<Fragment>
|
|
65
|
+
{notifications.map((n, i) => {
|
|
66
|
+
return (
|
|
67
|
+
<mds-push-notification-item
|
|
68
|
+
key={i}
|
|
69
|
+
preview={n.preview}
|
|
70
|
+
src={n.src}
|
|
71
|
+
subject={n.subject}
|
|
72
|
+
message={n.message}
|
|
73
|
+
>
|
|
74
|
+
<mds-button
|
|
75
|
+
slot="actions"
|
|
76
|
+
variant="primary"
|
|
77
|
+
tone="weak"
|
|
78
|
+
size="sm"
|
|
79
|
+
>
|
|
80
|
+
Rispondi
|
|
81
|
+
</mds-button>
|
|
82
|
+
</mds-push-notification-item>
|
|
83
|
+
)
|
|
84
|
+
})}
|
|
85
|
+
</Fragment>
|
|
86
|
+
)
|
|
62
87
|
}
|
|
63
88
|
}
|
|
64
89
|
|
|
65
90
|
const Template = args => {
|
|
66
|
-
const [notifications, setNotifications] =
|
|
91
|
+
const [notifications, setNotifications] =
|
|
92
|
+
useState<Notification[]>(exampleNotifications)
|
|
67
93
|
const [visible, setVisible] = useState(args.visible || false)
|
|
68
94
|
|
|
69
95
|
useEffect(() => {
|
|
70
|
-
const pushNotificationsElement = document.querySelector(
|
|
96
|
+
const pushNotificationsElement = document.querySelector(
|
|
97
|
+
'.mds-push-notification',
|
|
98
|
+
)
|
|
71
99
|
if (pushNotificationsElement === null) {
|
|
72
100
|
// eslint-disable-next-line no-alert
|
|
73
101
|
alert('Push notifications element not found')
|
|
74
102
|
return
|
|
75
103
|
}
|
|
76
|
-
pushNotificationsElement.addEventListener(
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
104
|
+
pushNotificationsElement.addEventListener(
|
|
105
|
+
'mdsPushNotificationChange',
|
|
106
|
+
(e: CustomEvent) => {
|
|
107
|
+
console.info('mdsPushNotificationChange', e.detail)
|
|
108
|
+
setVisible(e.detail)
|
|
109
|
+
},
|
|
110
|
+
)
|
|
80
111
|
|
|
81
112
|
pushNotificationsElement.addEventListener('mdsPushNotificationShow', () => {
|
|
82
113
|
console.info('mdsPushNotificationShow')
|
|
@@ -91,48 +122,89 @@ const Template = args => {
|
|
|
91
122
|
|
|
92
123
|
function pushN () {
|
|
93
124
|
const n: Notification = {
|
|
94
|
-
message:
|
|
125
|
+
message:
|
|
126
|
+
'Sto preparando il documento che mi hai richiesto, dovrei finire in giornata, fammi sapere se hai altri aggiornamenti al riguardo così non mi perdo pezzi per la strada.',
|
|
95
127
|
}
|
|
96
128
|
setNotifications([...notifications, n])
|
|
97
129
|
// console.log(notifications)
|
|
98
130
|
}
|
|
99
|
-
return
|
|
100
|
-
<div class="
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
131
|
+
return (
|
|
132
|
+
<div class="-m-600">
|
|
133
|
+
<div class="fixed top-600 left-600 flex gap-100">
|
|
134
|
+
{visible ? (
|
|
135
|
+
<mds-button
|
|
136
|
+
class="shadow-outline-50 shadow-tone-neutral"
|
|
137
|
+
onClick={() => setVisible(false)}
|
|
138
|
+
icon="mdi/eye-off-outline"
|
|
139
|
+
variant="error"
|
|
140
|
+
>
|
|
141
|
+
Hide notifications
|
|
142
|
+
</mds-button>
|
|
143
|
+
) : (
|
|
144
|
+
<mds-button
|
|
145
|
+
class="shadow-outline-50 shadow-tone-neutral"
|
|
146
|
+
onClick={() => setVisible(true)}
|
|
147
|
+
icon="mi/baseline/remove-red-eye"
|
|
148
|
+
variant="primary"
|
|
149
|
+
>
|
|
150
|
+
Show notifications
|
|
151
|
+
</mds-button>
|
|
152
|
+
)}
|
|
153
|
+
<mds-button
|
|
154
|
+
class="shadow-outline-50 shadow-tone-neutral"
|
|
155
|
+
variant="success"
|
|
156
|
+
onClick={pushN}
|
|
157
|
+
>
|
|
158
|
+
Carica altre...
|
|
159
|
+
</mds-button>
|
|
160
|
+
</div>
|
|
161
|
+
<mds-push-notification
|
|
162
|
+
class="mds-push-notification"
|
|
163
|
+
visible={visible === false ? undefined : true}
|
|
164
|
+
behavior={args.behavior}
|
|
165
|
+
>
|
|
166
|
+
{/* <mds-button slot="top" variant="dark" onClick={deleteNotifications}>Cancella notifiche</mds-button> */}
|
|
167
|
+
<GetNotifications notifications={notifications} />
|
|
168
|
+
</mds-push-notification>
|
|
169
|
+
<div class="p-1200 flex justify-center">
|
|
170
|
+
<div class="grid gap-600 grid-cols-3 max-mobile:grid-cols-1 max-w-screen-desktop">
|
|
171
|
+
{Array(18)
|
|
172
|
+
.fill(null)
|
|
173
|
+
.map((_item, index) => {
|
|
174
|
+
return (
|
|
175
|
+
<div class="grid gap-25" key={index}>
|
|
176
|
+
<mds-text typography="h5" tag="h2">
|
|
177
|
+
This is a section title
|
|
178
|
+
</mds-text>
|
|
179
|
+
<mds-text>
|
|
180
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
|
|
181
|
+
Accusamus iure, ratione beatae quam optio cumque rerum modi
|
|
182
|
+
consectetur odit eligendi omnis veniam fuga non ipsam
|
|
183
|
+
voluptatum a ut neque illum.
|
|
184
|
+
</mds-text>
|
|
185
|
+
</div>
|
|
186
|
+
)
|
|
187
|
+
})}
|
|
188
|
+
</div>
|
|
121
189
|
</div>
|
|
122
190
|
</div>
|
|
123
|
-
|
|
191
|
+
)
|
|
124
192
|
}
|
|
125
193
|
|
|
126
194
|
const TemplateAddNotifications = () => {
|
|
127
195
|
const [items, setItem] = useState(0)
|
|
128
|
-
return
|
|
129
|
-
<
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
196
|
+
return (
|
|
197
|
+
<div>
|
|
198
|
+
<mds-button onClick={() => setItem(items + 1)}>
|
|
199
|
+
Add notifications
|
|
200
|
+
</mds-button>
|
|
201
|
+
<mds-push-notification>
|
|
202
|
+
{Array.from(Array(items).keys()).map((_item, index) => (
|
|
203
|
+
<PushNotificationElement index={index} />
|
|
204
|
+
))}
|
|
205
|
+
</mds-push-notification>
|
|
206
|
+
</div>
|
|
207
|
+
)
|
|
136
208
|
}
|
|
137
209
|
|
|
138
210
|
const TemplateAddMultipleNotifications = args => {
|
|
@@ -140,26 +212,42 @@ const TemplateAddMultipleNotifications = args => {
|
|
|
140
212
|
const addItems = () => {
|
|
141
213
|
setItem(items + 3)
|
|
142
214
|
}
|
|
143
|
-
return
|
|
144
|
-
<
|
|
145
|
-
|
|
146
|
-
<mds-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
215
|
+
return (
|
|
216
|
+
<div>
|
|
217
|
+
<mds-button onClick={addItems.bind(this)}>Carica notifiche...</mds-button>
|
|
218
|
+
<mds-push-notification {...args}>
|
|
219
|
+
<mds-button slot="top" variant="dark" onClick={addItems.bind(this)}>
|
|
220
|
+
Carica notifiche...
|
|
221
|
+
</mds-button>
|
|
222
|
+
{Array.from(Array(items).keys()).map((_item, index) => (
|
|
223
|
+
<PushNotificationElement index={index} />
|
|
224
|
+
))}
|
|
225
|
+
<mds-button slot="bottom" variant="dark">
|
|
226
|
+
Cancella notifiche
|
|
227
|
+
</mds-button>
|
|
228
|
+
</mds-push-notification>
|
|
229
|
+
</div>
|
|
230
|
+
)
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export const Default = {
|
|
234
|
+
render: Template,
|
|
153
235
|
}
|
|
154
236
|
|
|
155
|
-
export const
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
237
|
+
export const AddNotifications = {
|
|
238
|
+
render: TemplateAddNotifications,
|
|
239
|
+
|
|
240
|
+
args: {
|
|
241
|
+
visible: true,
|
|
242
|
+
},
|
|
159
243
|
}
|
|
160
|
-
|
|
161
|
-
AddMultipleNotifications
|
|
162
|
-
|
|
244
|
+
|
|
245
|
+
export const AddMultipleNotifications = {
|
|
246
|
+
render: TemplateAddMultipleNotifications,
|
|
247
|
+
|
|
248
|
+
args: {
|
|
249
|
+
visible: true,
|
|
250
|
+
},
|
|
163
251
|
}
|
|
164
252
|
|
|
165
253
|
export const ManualNotification = Template.bind({}, { behavior: 'manual' })
|
package/src/fixtures/icons.json
DELETED
|
@@ -1,176 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
"mdi/alien",
|
|
3
|
-
"mdi/apple",
|
|
4
|
-
"mdi/apple-keyboard-shift",
|
|
5
|
-
"mdi/barley",
|
|
6
|
-
"mdi/baseball",
|
|
7
|
-
"mdi/crown",
|
|
8
|
-
"mdi/delete",
|
|
9
|
-
"mdi/dots-vertical",
|
|
10
|
-
"mdi/email",
|
|
11
|
-
"mdi/eye-off-outline",
|
|
12
|
-
"mdi/file-document-remove-outline",
|
|
13
|
-
"mdi/file-download-outline",
|
|
14
|
-
"mdi/file-upload-outline",
|
|
15
|
-
"mdi/folder-open",
|
|
16
|
-
"mdi/handshake",
|
|
17
|
-
"mdi/harddisk",
|
|
18
|
-
"mdi/keyboard-space",
|
|
19
|
-
"mdi/license",
|
|
20
|
-
"mdi/map-marker",
|
|
21
|
-
"mdi/npm",
|
|
22
|
-
"mdi/numeric-1",
|
|
23
|
-
"mdi/numeric-2",
|
|
24
|
-
"mdi/numeric-3",
|
|
25
|
-
"mdi/numeric-4",
|
|
26
|
-
"mdi/numeric-5",
|
|
27
|
-
"mdi/numeric-6",
|
|
28
|
-
"mdi/numeric-7",
|
|
29
|
-
"mdi/numeric-8",
|
|
30
|
-
"mdi/replay",
|
|
31
|
-
"mdi/vector-curve",
|
|
32
|
-
"mgg/ai-brain",
|
|
33
|
-
"mgg/ai-chatbot",
|
|
34
|
-
"mgg/ai-chatbot-outline",
|
|
35
|
-
"mgg/check-small",
|
|
36
|
-
"mgg/consumption-high",
|
|
37
|
-
"mgg/consumption-low",
|
|
38
|
-
"mgg/consumption-medium",
|
|
39
|
-
"mgg/google-book-large",
|
|
40
|
-
"mgg/historic-building",
|
|
41
|
-
"mgg/list-dot",
|
|
42
|
-
"mi/baseline/account-balance",
|
|
43
|
-
"mi/baseline/account-balance-wallet",
|
|
44
|
-
"mi/baseline/add",
|
|
45
|
-
"mi/baseline/add-circle",
|
|
46
|
-
"mi/baseline/adobe",
|
|
47
|
-
"mi/baseline/agriculture",
|
|
48
|
-
"mi/baseline/alternate-email",
|
|
49
|
-
"mi/baseline/animation",
|
|
50
|
-
"mi/baseline/arrow-back",
|
|
51
|
-
"mi/baseline/arrow-back-ios-new",
|
|
52
|
-
"mi/baseline/arrow-forward",
|
|
53
|
-
"mi/baseline/arrow-forward-ios",
|
|
54
|
-
"mi/baseline/attach-file",
|
|
55
|
-
"mi/baseline/attachment",
|
|
56
|
-
"mi/baseline/audiotrack",
|
|
57
|
-
"mi/baseline/auto-awesome",
|
|
58
|
-
"mi/baseline/badge",
|
|
59
|
-
"mi/baseline/block",
|
|
60
|
-
"mi/baseline/book",
|
|
61
|
-
"mi/baseline/border-all",
|
|
62
|
-
"mi/baseline/broken-image",
|
|
63
|
-
"mi/baseline/calendar-today",
|
|
64
|
-
"mi/baseline/call",
|
|
65
|
-
"mi/baseline/cancel",
|
|
66
|
-
"mi/baseline/category",
|
|
67
|
-
"mi/baseline/check",
|
|
68
|
-
"mi/baseline/check-box",
|
|
69
|
-
"mi/baseline/check-box-outline-blank",
|
|
70
|
-
"mi/baseline/check-circle",
|
|
71
|
-
"mi/baseline/chevron-right",
|
|
72
|
-
"mi/baseline/close",
|
|
73
|
-
"mi/baseline/contrast",
|
|
74
|
-
"mi/baseline/css",
|
|
75
|
-
"mi/baseline/dark-mode",
|
|
76
|
-
"mi/baseline/delete",
|
|
77
|
-
"mi/baseline/description",
|
|
78
|
-
"mi/baseline/desk",
|
|
79
|
-
"mi/baseline/directions-run",
|
|
80
|
-
"mi/baseline/directions-walk",
|
|
81
|
-
"mi/baseline/done",
|
|
82
|
-
"mi/baseline/done-all",
|
|
83
|
-
"mi/baseline/downhill-skiing",
|
|
84
|
-
"mi/baseline/draw",
|
|
85
|
-
"mi/baseline/eco",
|
|
86
|
-
"mi/baseline/edit",
|
|
87
|
-
"mi/baseline/email",
|
|
88
|
-
"mi/baseline/error",
|
|
89
|
-
"mi/baseline/expand-more",
|
|
90
|
-
"mi/baseline/explore",
|
|
91
|
-
"mi/baseline/favorite",
|
|
92
|
-
"mi/baseline/favorite-border",
|
|
93
|
-
"mi/baseline/file-download-done",
|
|
94
|
-
"mi/baseline/folder",
|
|
95
|
-
"mi/baseline/folder-zip",
|
|
96
|
-
"mi/baseline/horizontal-rule",
|
|
97
|
-
"mi/baseline/indeterminate-check-box",
|
|
98
|
-
"mi/baseline/info",
|
|
99
|
-
"mi/baseline/insert-drive-file",
|
|
100
|
-
"mi/baseline/ios-share",
|
|
101
|
-
"mi/baseline/keyboard",
|
|
102
|
-
"mi/baseline/keyboard-arrow-down",
|
|
103
|
-
"mi/baseline/keyboard-arrow-left",
|
|
104
|
-
"mi/baseline/keyboard-arrow-right",
|
|
105
|
-
"mi/baseline/keyboard-arrow-up",
|
|
106
|
-
"mi/baseline/keyboard-capslock",
|
|
107
|
-
"mi/baseline/keyboard-command-key",
|
|
108
|
-
"mi/baseline/keyboard-option-key",
|
|
109
|
-
"mi/baseline/keyboard-return",
|
|
110
|
-
"mi/baseline/keyboard-tab",
|
|
111
|
-
"mi/baseline/light-mode",
|
|
112
|
-
"mi/baseline/list-alt",
|
|
113
|
-
"mi/baseline/local-activity",
|
|
114
|
-
"mi/baseline/location-city",
|
|
115
|
-
"mi/baseline/lock-open",
|
|
116
|
-
"mi/baseline/login",
|
|
117
|
-
"mi/baseline/logout",
|
|
118
|
-
"mi/baseline/meeting-room",
|
|
119
|
-
"mi/baseline/more-vert",
|
|
120
|
-
"mi/baseline/navigate-next",
|
|
121
|
-
"mi/baseline/north",
|
|
122
|
-
"mi/baseline/panorama",
|
|
123
|
-
"mi/baseline/person",
|
|
124
|
-
"mi/baseline/pets",
|
|
125
|
-
"mi/baseline/print",
|
|
126
|
-
"mi/baseline/privacy-tip",
|
|
127
|
-
"mi/baseline/radio-button-checked",
|
|
128
|
-
"mi/baseline/radio-button-unchecked",
|
|
129
|
-
"mi/baseline/remove",
|
|
130
|
-
"mi/baseline/remove-circle",
|
|
131
|
-
"mi/baseline/remove-red-eye",
|
|
132
|
-
"mi/baseline/route",
|
|
133
|
-
"mi/baseline/search",
|
|
134
|
-
"mi/baseline/send",
|
|
135
|
-
"mi/baseline/settings",
|
|
136
|
-
"mi/baseline/south",
|
|
137
|
-
"mi/baseline/sports",
|
|
138
|
-
"mi/baseline/sports-soccer",
|
|
139
|
-
"mi/baseline/stadium",
|
|
140
|
-
"mi/baseline/terminal",
|
|
141
|
-
"mi/baseline/text-format",
|
|
142
|
-
"mi/baseline/text-rotate-up",
|
|
143
|
-
"mi/baseline/timer",
|
|
144
|
-
"mi/baseline/tv",
|
|
145
|
-
"mi/baseline/undo",
|
|
146
|
-
"mi/baseline/unfold-less",
|
|
147
|
-
"mi/baseline/unfold-more",
|
|
148
|
-
"mi/baseline/vertical-align-bottom",
|
|
149
|
-
"mi/baseline/vertical-align-top",
|
|
150
|
-
"mi/baseline/videocam",
|
|
151
|
-
"mi/baseline/visibility",
|
|
152
|
-
"mi/baseline/visibility-off",
|
|
153
|
-
"mi/baseline/warning",
|
|
154
|
-
"mi/baseline/warning-amber",
|
|
155
|
-
"mi/baseline/web",
|
|
156
|
-
"mi/baseline/wrap-text",
|
|
157
|
-
"mi/baseline/wysiwyg",
|
|
158
|
-
"mi/outline/auto-awesome",
|
|
159
|
-
"mi/outline/backspace",
|
|
160
|
-
"mi/outline/circle",
|
|
161
|
-
"mi/outline/dark-mode",
|
|
162
|
-
"mi/outline/help-outline",
|
|
163
|
-
"mi/outline/ios-share",
|
|
164
|
-
"mi/outline/mic",
|
|
165
|
-
"mi/outline/mic-off",
|
|
166
|
-
"mi/outline/policy",
|
|
167
|
-
"mi/outline/schedule",
|
|
168
|
-
"mi/outline/thumb-down",
|
|
169
|
-
"mi/outline/thumb-up",
|
|
170
|
-
"mi/round/arrow-circle-down",
|
|
171
|
-
"mi/round/email",
|
|
172
|
-
"mi/round/menu",
|
|
173
|
-
"mi/round/more-vert",
|
|
174
|
-
"mi/round/person",
|
|
175
|
-
"mi/sharp/window"
|
|
176
|
-
]
|