Box.js

Box for modal / toast

נכון ליום 18-07-2022. ראה הגרסה האחרונה.

אין להתקין סקריפט זה ישירות. זוהי ספריה עבור סקריפטים אחרים // @require https://update.greasyfork.org/scripts/447483/1071404/Boxjs.js

יוצר
invobzvr
גרסה
0.5
נוצר
06-07-2022
עודכן
18-07-2022
Size
6.89 קילו-בייט
רישיון
GPL-3.0

Box.js

Description

Box for modal / toast

Example

await new Box({
    title: 'Demo Box',
    html: `<input class="box-input" value="Hello, Box!">`,
    actions: {
        OK: model => model.querySelector('input').value, // "Hello, Box!"
        Cancel: () => {}, // undefined
    },
});
const Toast = Box.mixin({
    title: 'Demo Toast',
    toast: true,
    time: 3e3,
});

new Toast({ text: 'Hello, Toast!' });