@vandenberghinc/volt 1.1.26 → 1.1.28
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/backend/dist/cjs/{blacklist.d.ts → backend/src/blacklist.d.ts} +5 -3
- package/backend/dist/cjs/{blacklist.js → backend/src/blacklist.js} +8 -5
- package/backend/dist/cjs/{cli.js → backend/src/cli.js} +29 -47
- package/backend/dist/cjs/backend/src/database/collection.d.ts +1543 -0
- package/backend/dist/cjs/backend/src/database/collection.js +3042 -0
- package/backend/dist/cjs/backend/src/database/database.d.ts +66 -0
- package/backend/dist/cjs/{database → backend/src/database}/database.js +48 -43
- package/backend/dist/cjs/backend/src/database/filters/filters.d.ts +6 -0
- package/backend/dist/cjs/backend/src/database/filters/filters.js +15 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter.d.ts +223 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter.js +15 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_test.js +443 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_test_v0.js +15 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_v0.d.ts +50 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_v0.js +15 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_v1.d.ts +76 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_v1.js +15 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_v2.d.ts +75 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_v2.js +15 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_v3.d.ts +219 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_filter_v3.js +15 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_update_filter.d.ts +165 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_update_filter.js +15 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_update_filter_test.d.ts +5 -0
- package/backend/dist/cjs/backend/src/database/filters/strict_update_filter_test.js +355 -0
- package/backend/dist/cjs/backend/src/database/flatten.d.ts +75 -0
- package/backend/dist/cjs/{logger.js → backend/src/database/flatten.js} +18 -7
- package/backend/dist/cjs/backend/src/database/flatten_test.js +175 -0
- package/backend/dist/cjs/backend/src/database/quota/quota.d.ts +461 -0
- package/backend/dist/cjs/backend/src/database/quota/quota.js +1014 -0
- package/backend/dist/cjs/backend/src/database/quota/quota_v1.d.ts +534 -0
- package/backend/dist/cjs/backend/src/database/quota/quota_v1.js +1087 -0
- package/backend/dist/cjs/backend/src/database/quota/safe_int.d.ts +293 -0
- package/backend/dist/cjs/backend/src/database/quota/safe_int.js +573 -0
- package/backend/dist/{esm → cjs/backend/src}/endpoint.d.ts +69 -46
- package/backend/dist/cjs/{endpoint.js → backend/src/endpoint.js} +87 -101
- package/backend/dist/cjs/backend/src/errors/index.d.ts +7 -0
- package/backend/dist/cjs/backend/src/errors/index.js +25 -0
- package/backend/dist/{esm/utils.d.ts → cjs/backend/src/errors/internal_external.d.ts} +14 -22
- package/backend/dist/cjs/backend/src/errors/internal_external.js +85 -0
- package/backend/dist/cjs/backend/src/errors/invalid_usage_error.d.ts +38 -0
- package/backend/dist/cjs/{mutex.js → backend/src/errors/invalid_usage_error.js} +20 -37
- package/backend/dist/cjs/backend/src/errors/system_error.d.ts +230 -0
- package/backend/dist/cjs/backend/src/errors/system_error.js +393 -0
- package/backend/dist/cjs/backend/src/events.d.ts +54 -0
- package/backend/dist/cjs/backend/src/events.js +15 -0
- package/backend/dist/cjs/{frontend.js → backend/src/frontend.js} +1 -1
- package/backend/dist/cjs/{image_endpoint.d.ts → backend/src/image_endpoint.d.ts} +16 -1
- package/backend/dist/cjs/{image_endpoint.js → backend/src/image_endpoint.js} +3 -5
- package/backend/dist/cjs/backend/src/logger.d.ts +5 -0
- package/backend/dist/cjs/backend/src/logger.js +15 -0
- package/backend/dist/cjs/backend/src/meta.d.ts +64 -0
- package/backend/dist/cjs/{meta.js → backend/src/meta.js} +9 -12
- package/backend/dist/cjs/backend/src/payments/paddle.d.ts +326 -0
- package/backend/dist/cjs/{payments → backend/src/payments}/paddle.js +377 -327
- package/backend/dist/cjs/backend/src/plugins/browser.d.ts +1 -0
- package/backend/dist/cjs/backend/src/plugins/browser.js +15 -0
- package/backend/dist/cjs/backend/src/plugins/mail/mail.d.ts +248 -0
- package/backend/dist/cjs/backend/src/plugins/mail/mail.js +379 -0
- package/backend/dist/{esm → cjs/backend/src}/plugins/mail/ui.d.ts +23 -0
- package/backend/dist/cjs/backend/src/plugins/pdf.d.ts +1 -0
- package/backend/dist/cjs/backend/src/rate_limit.d.ts +145 -0
- package/backend/dist/cjs/backend/src/rate_limit.js +549 -0
- package/backend/dist/cjs/{route.d.ts → backend/src/route.d.ts} +3 -10
- package/backend/dist/cjs/{route.js → backend/src/route.js} +23 -21
- package/backend/dist/cjs/backend/src/server.d.ts +485 -0
- package/backend/dist/cjs/{server.js → backend/src/server.js} +688 -873
- package/backend/dist/cjs/backend/src/splash_screen.d.ts +80 -0
- package/backend/dist/cjs/{splash_screen.js → backend/src/splash_screen.js} +24 -3
- package/backend/dist/cjs/backend/src/status.d.ts +74 -0
- package/backend/dist/cjs/{status.js → backend/src/status.js} +64 -64
- package/backend/dist/cjs/backend/src/stream.d.ts +376 -0
- package/backend/dist/cjs/{stream.js → backend/src/stream.js} +299 -276
- package/backend/dist/cjs/backend/src/users.d.ts +807 -0
- package/backend/dist/cjs/backend/src/users.js +1971 -0
- package/backend/dist/cjs/backend/src/utils.d.ts +16 -0
- package/backend/dist/cjs/{utils.js → backend/src/utils.js} +14 -77
- package/backend/dist/{esm → cjs/backend/src}/view.d.ts +33 -11
- package/backend/dist/cjs/backend/src/view.js +508 -0
- package/backend/dist/{esm → cjs/backend/src}/volt.d.ts +10 -1
- package/backend/dist/cjs/{volt.js → backend/src/volt.js} +8 -5
- package/backend/dist/cjs/frontend/src/modules/request.d.ts +70 -0
- package/backend/dist/cjs/frontend/src/modules/request.js +99 -0
- package/backend/dist/esm/{blacklist.d.ts → backend/src/blacklist.d.ts} +5 -3
- package/backend/dist/esm/{blacklist.js → backend/src/blacklist.js} +9 -6
- package/backend/dist/esm/{cli.js → backend/src/cli.js} +43 -60
- package/backend/dist/esm/backend/src/database/collection.d.ts +1543 -0
- package/backend/dist/esm/backend/src/database/collection.js +3510 -0
- package/backend/dist/esm/backend/src/database/database.d.ts +66 -0
- package/backend/dist/esm/{database → backend/src/database}/database.js +62 -103
- package/backend/dist/esm/backend/src/database/document.d.ts +1 -0
- package/backend/dist/esm/backend/src/database/document.js +558 -0
- package/backend/dist/esm/backend/src/database/filters/filters.d.ts +6 -0
- package/backend/dist/esm/backend/src/database/filters/filters.js +1 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter.d.ts +223 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter.js +3 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_test.d.ts +1 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_test.js +505 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_test_v0.d.ts +1 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_test_v0.js +712 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_v0.d.ts +50 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_v0.js +5 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_v1.d.ts +76 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_v1.js +44 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_v2.d.ts +75 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_v2.js +5 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_v3.d.ts +219 -0
- package/backend/dist/esm/backend/src/database/filters/strict_filter_v3.js +1 -0
- package/backend/dist/esm/backend/src/database/filters/strict_update_filter.d.ts +165 -0
- package/backend/dist/esm/backend/src/database/filters/strict_update_filter.js +5 -0
- package/backend/dist/esm/backend/src/database/filters/strict_update_filter_test.d.ts +5 -0
- package/backend/dist/esm/backend/src/database/filters/strict_update_filter_test.js +405 -0
- package/backend/dist/esm/backend/src/database/flatten.d.ts +75 -0
- package/backend/dist/esm/backend/src/database/flatten.js +22 -0
- package/backend/dist/esm/backend/src/database/flatten_test.d.ts +1 -0
- package/backend/dist/esm/backend/src/database/flatten_test.js +174 -0
- package/backend/dist/esm/backend/src/database/quota/quota.d.ts +461 -0
- package/backend/dist/esm/backend/src/database/quota/quota.js +1118 -0
- package/backend/dist/esm/backend/src/database/quota/quota_v1.d.ts +534 -0
- package/backend/dist/esm/backend/src/database/quota/quota_v1.js +1242 -0
- package/backend/dist/esm/backend/src/database/quota/safe_int.d.ts +293 -0
- package/backend/dist/esm/backend/src/database/quota/safe_int.js +602 -0
- package/backend/dist/{cjs → esm/backend/src}/endpoint.d.ts +69 -46
- package/backend/dist/esm/{endpoint.js → backend/src/endpoint.js} +136 -127
- package/backend/dist/esm/backend/src/errors/index.d.ts +7 -0
- package/backend/dist/esm/backend/src/errors/index.js +7 -0
- package/backend/dist/{cjs/utils.d.ts → esm/backend/src/errors/internal_external.d.ts} +14 -22
- package/backend/dist/esm/backend/src/errors/internal_external.js +70 -0
- package/backend/dist/esm/backend/src/errors/invalid_usage_error.d.ts +38 -0
- package/backend/dist/esm/backend/src/errors/invalid_usage_error.js +30 -0
- package/backend/dist/esm/backend/src/errors/system_error.d.ts +230 -0
- package/backend/dist/esm/backend/src/errors/system_error.js +402 -0
- package/backend/dist/esm/backend/src/events.d.ts +54 -0
- package/backend/dist/esm/backend/src/events.js +5 -0
- package/backend/dist/esm/{frontend.js → backend/src/frontend.js} +1 -1
- package/backend/dist/esm/{image_endpoint.d.ts → backend/src/image_endpoint.d.ts} +16 -1
- package/backend/dist/esm/{image_endpoint.js → backend/src/image_endpoint.js} +16 -20
- package/backend/dist/esm/backend/src/logger.d.ts +5 -0
- package/backend/dist/esm/backend/src/logger.js +8 -0
- package/backend/dist/esm/backend/src/meta.d.ts +64 -0
- package/backend/dist/esm/{meta.js → backend/src/meta.js} +15 -54
- package/backend/dist/esm/backend/src/payments/paddle.d.ts +326 -0
- package/backend/dist/esm/{payments → backend/src/payments}/paddle.js +417 -452
- package/backend/dist/esm/backend/src/plugins/browser.d.ts +1 -0
- package/backend/dist/esm/backend/src/plugins/browser.js +170 -0
- package/backend/dist/esm/backend/src/plugins/mail/mail.d.ts +248 -0
- package/backend/dist/esm/backend/src/plugins/mail/mail.js +389 -0
- package/backend/dist/{cjs → esm/backend/src}/plugins/mail/ui.d.ts +23 -0
- package/backend/dist/esm/{plugins → backend/src/plugins}/mail/ui.js +3 -6
- package/backend/dist/esm/backend/src/plugins/pdf.d.ts +1 -0
- package/backend/dist/esm/{plugins → backend/src/plugins}/pdf.js +3 -3
- package/backend/dist/esm/backend/src/rate_limit.d.ts +145 -0
- package/backend/dist/esm/backend/src/rate_limit.js +667 -0
- package/backend/dist/esm/{route.d.ts → backend/src/route.d.ts} +3 -10
- package/backend/dist/esm/{route.js → backend/src/route.js} +26 -21
- package/backend/dist/esm/backend/src/server.d.ts +485 -0
- package/backend/dist/esm/{server.js → backend/src/server.js} +891 -1441
- package/backend/dist/esm/backend/src/splash_screen.d.ts +80 -0
- package/backend/dist/esm/{splash_screen.js → backend/src/splash_screen.js} +42 -55
- package/backend/dist/esm/backend/src/status.d.ts +74 -0
- package/backend/dist/esm/backend/src/status.js +199 -0
- package/backend/dist/esm/backend/src/stream.d.ts +376 -0
- package/backend/dist/esm/{stream.js → backend/src/stream.js} +327 -292
- package/backend/dist/esm/backend/src/users.d.ts +809 -0
- package/backend/dist/esm/backend/src/users.js +2140 -0
- package/backend/dist/esm/backend/src/utils.d.ts +16 -0
- package/backend/dist/esm/{utils.js → backend/src/utils.js} +20 -81
- package/backend/dist/{cjs → esm/backend/src}/view.d.ts +33 -11
- package/backend/dist/esm/{view.js → backend/src/view.js} +266 -86
- package/backend/dist/{cjs → esm/backend/src}/volt.d.ts +10 -1
- package/backend/dist/esm/{volt.js → backend/src/volt.js} +7 -4
- package/backend/dist/esm/frontend/src/modules/request.d.ts +70 -0
- package/backend/dist/esm/frontend/src/modules/request.js +117 -0
- package/frontend/dist/backend/src/database/collection.d.ts +1543 -0
- package/frontend/dist/backend/src/database/collection.js +3510 -0
- package/frontend/dist/backend/src/database/database.d.ts +66 -0
- package/frontend/dist/backend/src/database/database.js +196 -0
- package/frontend/dist/backend/src/database/filters/filters.d.ts +6 -0
- package/frontend/dist/backend/src/database/filters/filters.js +1 -0
- package/frontend/dist/backend/src/database/filters/strict_filter.d.ts +223 -0
- package/frontend/dist/backend/src/database/filters/strict_filter.js +3 -0
- package/frontend/dist/backend/src/database/filters/strict_update_filter.d.ts +165 -0
- package/frontend/dist/backend/src/database/filters/strict_update_filter.js +5 -0
- package/frontend/dist/backend/src/database/flatten.d.ts +75 -0
- package/frontend/dist/backend/src/database/flatten.js +22 -0
- package/frontend/dist/backend/src/endpoint.d.ts +204 -0
- package/frontend/dist/backend/src/endpoint.js +570 -0
- package/frontend/dist/backend/src/errors/index.d.ts +7 -0
- package/frontend/dist/backend/src/errors/index.js +7 -0
- package/frontend/dist/backend/src/errors/internal_external.d.ts +38 -0
- package/frontend/dist/backend/src/errors/internal_external.js +70 -0
- package/frontend/dist/backend/src/errors/invalid_usage_error.d.ts +38 -0
- package/frontend/dist/backend/src/errors/invalid_usage_error.js +30 -0
- package/frontend/dist/backend/src/errors/system_error.d.ts +230 -0
- package/frontend/dist/backend/src/errors/system_error.js +402 -0
- package/frontend/dist/backend/src/events.d.ts +54 -0
- package/frontend/dist/backend/src/events.js +5 -0
- package/frontend/dist/backend/src/frontend.d.ts +11 -0
- package/frontend/dist/backend/src/frontend.js +12 -0
- package/frontend/dist/backend/src/image_endpoint.d.ts +39 -0
- package/frontend/dist/backend/src/image_endpoint.js +202 -0
- package/frontend/dist/backend/src/meta.d.ts +64 -0
- package/frontend/dist/backend/src/meta.js +110 -0
- package/frontend/dist/backend/src/payments/paddle.d.ts +326 -0
- package/frontend/dist/backend/src/payments/paddle.js +2256 -0
- package/frontend/dist/backend/src/plugins/mail/mail.d.ts +248 -0
- package/frontend/dist/backend/src/plugins/mail/mail.js +389 -0
- package/{backend/dist/esm/plugins/mail.d.ts → frontend/dist/backend/src/plugins/mail/ui.d.ts} +23 -0
- package/{backend/dist/esm/plugins/mail.js → frontend/dist/backend/src/plugins/mail/ui.js} +3 -6
- package/frontend/dist/backend/src/rate_limit.d.ts +145 -0
- package/frontend/dist/backend/src/rate_limit.js +673 -0
- package/frontend/dist/backend/src/route.d.ts +35 -0
- package/frontend/dist/backend/src/route.js +212 -0
- package/frontend/dist/backend/src/server.d.ts +485 -0
- package/frontend/dist/backend/src/server.js +2670 -0
- package/frontend/dist/backend/src/splash_screen.d.ts +80 -0
- package/frontend/dist/backend/src/splash_screen.js +135 -0
- package/frontend/dist/backend/src/status.d.ts +74 -0
- package/frontend/dist/backend/src/status.js +199 -0
- package/frontend/dist/backend/src/stream.d.ts +376 -0
- package/frontend/dist/backend/src/stream.js +1007 -0
- package/frontend/dist/backend/src/users.d.ts +807 -0
- package/frontend/dist/backend/src/users.js +2118 -0
- package/frontend/dist/backend/src/utils.d.ts +16 -0
- package/frontend/dist/backend/src/utils.js +241 -0
- package/frontend/dist/backend/src/view.d.ts +162 -0
- package/frontend/dist/backend/src/view.js +720 -0
- package/frontend/dist/frontend/src/elements/base.d.ts +4414 -0
- package/frontend/dist/{elements → frontend/src/elements}/base.js +3624 -260
- package/frontend/dist/frontend/src/elements/module.d.ts +95 -0
- package/frontend/dist/{elements → frontend/src/elements}/module.js +53 -52
- package/frontend/dist/frontend/src/elements/types.d.ts +52 -0
- package/frontend/dist/frontend/src/elements/types.js +5 -0
- package/frontend/dist/frontend/src/modules/attachment.d.ts +126 -0
- package/frontend/dist/frontend/src/modules/attachment.js +306 -0
- package/frontend/dist/frontend/src/modules/auth.d.ts +44 -0
- package/frontend/dist/frontend/src/modules/auth.js +80 -0
- package/frontend/dist/{modules → frontend/src/modules}/color.js +2 -2
- package/frontend/dist/frontend/src/modules/compression.d.ts +39 -0
- package/frontend/dist/frontend/src/modules/compression.js +102 -0
- package/frontend/dist/frontend/src/modules/cookies.d.ts +44 -0
- package/frontend/dist/frontend/src/modules/cookies.js +143 -0
- package/frontend/dist/frontend/src/modules/events.d.ts +31 -0
- package/frontend/dist/frontend/src/modules/events.js +74 -0
- package/frontend/dist/frontend/src/modules/google.d.ts +23 -0
- package/frontend/dist/frontend/src/modules/google.js +52 -0
- package/frontend/dist/frontend/src/modules/meta.d.ts +14 -0
- package/frontend/dist/{modules → frontend/src/modules}/meta.js +9 -7
- package/frontend/dist/{modules → frontend/src/modules}/paddle.d.ts +37 -134
- package/frontend/dist/{modules → frontend/src/modules}/paddle.js +620 -568
- package/frontend/dist/frontend/src/modules/request.d.ts +70 -0
- package/frontend/dist/frontend/src/modules/request.js +117 -0
- package/frontend/dist/frontend/src/modules/settings.d.ts +3 -0
- package/frontend/dist/frontend/src/modules/settings.js +5 -0
- package/frontend/dist/frontend/src/modules/statics.d.ts +21 -0
- package/frontend/dist/{modules → frontend/src/modules}/statics.js +15 -18
- package/frontend/dist/frontend/src/modules/support.d.ts +30 -0
- package/frontend/dist/frontend/src/modules/support.js +53 -0
- package/frontend/dist/{modules → frontend/src/modules}/theme.d.ts +67 -0
- package/frontend/dist/{modules → frontend/src/modules}/theme.js +68 -38
- package/frontend/dist/frontend/src/modules/themes.d.ts +12 -0
- package/frontend/dist/frontend/src/modules/themes.js +22 -0
- package/frontend/dist/frontend/src/modules/user.d.ts +164 -0
- package/frontend/dist/frontend/src/modules/user.js +268 -0
- package/frontend/dist/frontend/src/modules/utils.d.ts +176 -0
- package/frontend/dist/frontend/src/modules/utils.js +569 -0
- package/frontend/dist/frontend/src/types/gradient.d.ts +29 -0
- package/frontend/dist/{types → frontend/src/types}/gradient.js +14 -18
- package/frontend/dist/frontend/src/ui/border_button.d.ts +94 -0
- package/frontend/dist/{ui → frontend/src/ui}/border_button.js +7 -13
- package/frontend/dist/frontend/src/ui/button.d.ts +28 -0
- package/frontend/dist/{ui → frontend/src/ui}/button.js +21 -12
- package/frontend/dist/frontend/src/ui/canvas.d.ts +138 -0
- package/frontend/dist/{ui → frontend/src/ui}/canvas.js +88 -55
- package/frontend/dist/frontend/src/ui/checkbox.d.ts +74 -0
- package/frontend/dist/{ui → frontend/src/ui}/checkbox.js +80 -41
- package/frontend/dist/{ui → frontend/src/ui}/code.d.ts +73 -6
- package/frontend/dist/{ui → frontend/src/ui}/code.js +55 -52
- package/frontend/dist/{ui → frontend/src/ui}/context_menu.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/context_menu.js +12 -17
- package/frontend/dist/{ui → frontend/src/ui}/css.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/css.js +3 -3
- package/frontend/dist/{ui → frontend/src/ui}/divider.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/divider.js +3 -3
- package/frontend/dist/{ui → frontend/src/ui}/dropdown.d.ts +57 -2
- package/frontend/dist/{ui → frontend/src/ui}/dropdown.js +87 -94
- package/frontend/dist/{ui → frontend/src/ui}/for_each.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/for_each.js +3 -3
- package/frontend/dist/{ui → frontend/src/ui}/form.d.ts +6 -2
- package/frontend/dist/{ui → frontend/src/ui}/form.js +10 -7
- package/frontend/dist/frontend/src/ui/frame_modes.d.ts +37 -0
- package/frontend/dist/{ui → frontend/src/ui}/frame_modes.js +16 -22
- package/frontend/dist/{ui → frontend/src/ui}/google_map.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/google_map.js +4 -4
- package/frontend/dist/{ui → frontend/src/ui}/gradient.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/gradient.js +3 -3
- package/frontend/dist/{ui → frontend/src/ui}/image.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/image.js +5 -5
- package/frontend/dist/frontend/src/ui/input.d.ts +392 -0
- package/frontend/dist/{ui → frontend/src/ui}/input.js +346 -360
- package/frontend/dist/{ui → frontend/src/ui}/link.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/link.js +3 -3
- package/frontend/dist/{ui → frontend/src/ui}/list.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/list.js +12 -6
- package/frontend/dist/frontend/src/ui/loader_button.d.ts +80 -0
- package/frontend/dist/{ui → frontend/src/ui}/loader_button.js +35 -47
- package/frontend/dist/frontend/src/ui/loaders.d.ts +57 -0
- package/frontend/dist/{ui → frontend/src/ui}/loaders.js +11 -11
- package/frontend/dist/{ui → frontend/src/ui}/popup.d.ts +11 -6
- package/frontend/dist/{ui → frontend/src/ui}/popup.js +32 -18
- package/frontend/dist/frontend/src/ui/pseudo.d.ts +44 -0
- package/frontend/dist/{ui → frontend/src/ui}/pseudo.js +84 -8
- package/frontend/dist/{ui → frontend/src/ui}/scroller.d.ts +14 -2
- package/frontend/dist/{ui → frontend/src/ui}/scroller.js +37 -43
- package/frontend/dist/{ui → frontend/src/ui}/slider.d.ts +5 -1
- package/frontend/dist/{ui → frontend/src/ui}/slider.js +4 -4
- package/frontend/dist/{ui → frontend/src/ui}/spacer.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/spacer.js +3 -3
- package/frontend/dist/{ui → frontend/src/ui}/span.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/span.js +3 -3
- package/frontend/dist/{ui → frontend/src/ui}/stack.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/stack.js +3 -9
- package/frontend/dist/frontend/src/ui/steps.d.ts +131 -0
- package/frontend/dist/{ui → frontend/src/ui}/steps.js +30 -45
- package/frontend/dist/{ui → frontend/src/ui}/style.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/style.js +3 -3
- package/frontend/dist/{ui → frontend/src/ui}/switch.d.ts +5 -1
- package/frontend/dist/{ui → frontend/src/ui}/switch.js +4 -4
- package/frontend/dist/{ui → frontend/src/ui}/table.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/table.js +6 -6
- package/frontend/dist/{ui → frontend/src/ui}/tabs.d.ts +45 -3
- package/frontend/dist/{ui → frontend/src/ui}/tabs.js +65 -40
- package/frontend/dist/{ui → frontend/src/ui}/text.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/text.js +3 -3
- package/frontend/dist/frontend/src/ui/title.d.ts +91 -0
- package/frontend/dist/frontend/src/ui/title.js +272 -0
- package/frontend/dist/{ui → frontend/src/ui}/view.d.ts +4 -0
- package/frontend/dist/{ui → frontend/src/ui}/view.js +3 -3
- package/frontend/dist/{volt.d.ts → frontend/src/volt.d.ts} +3 -0
- package/frontend/dist/{volt.js → frontend/src/volt.js} +4 -0
- package/frontend/tools/bundle_d_ts.js +71 -0
- package/frontend/tools/convert_to_jsdoc_input.txt +9452 -0
- package/frontend/tools/convert_to_jsdoc_output.txt +7626 -0
- package/frontend/tools/convert_to_jsdoc_tmp.js +345 -0
- package/package.json +11 -12
- package/backend/dist/cjs/database/collection.d.ts +0 -160
- package/backend/dist/cjs/database/collection.js +0 -842
- package/backend/dist/cjs/database/database.d.ts +0 -121
- package/backend/dist/cjs/database/document.d.ts +0 -131
- package/backend/dist/cjs/database/document.js +0 -224
- package/backend/dist/cjs/database.d.ts +0 -502
- package/backend/dist/cjs/database.js +0 -2248
- package/backend/dist/cjs/logger.d.ts +0 -3
- package/backend/dist/cjs/meta.d.ts +0 -50
- package/backend/dist/cjs/mutex.d.ts +0 -24
- package/backend/dist/cjs/payments/paddle.d.ts +0 -160
- package/backend/dist/cjs/plugins/browser.d.ts +0 -36
- package/backend/dist/cjs/plugins/browser.js +0 -198
- package/backend/dist/cjs/plugins/css.d.ts +0 -11
- package/backend/dist/cjs/plugins/css.js +0 -80
- package/backend/dist/cjs/plugins/mail.d.ts +0 -277
- package/backend/dist/cjs/plugins/mail.js +0 -1370
- package/backend/dist/cjs/plugins/ts/compiler.d.ts +0 -139
- package/backend/dist/cjs/plugins/ts/compiler.js +0 -750
- package/backend/dist/cjs/plugins/ts/preprocessing.d.ts +0 -14
- package/backend/dist/cjs/plugins/ts/preprocessing.js +0 -440
- package/backend/dist/cjs/rate_limit.d.ts +0 -63
- package/backend/dist/cjs/rate_limit.js +0 -348
- package/backend/dist/cjs/request.deprc.d.ts +0 -48
- package/backend/dist/cjs/request.deprc.js +0 -572
- package/backend/dist/cjs/response.deprc.d.ts +0 -55
- package/backend/dist/cjs/response.deprc.js +0 -275
- package/backend/dist/cjs/server.d.ts +0 -342
- package/backend/dist/cjs/splash_screen.d.ts +0 -35
- package/backend/dist/cjs/status.d.ts +0 -61
- package/backend/dist/cjs/stream.d.ts +0 -79
- package/backend/dist/cjs/users.d.ts +0 -111
- package/backend/dist/cjs/users.js +0 -1817
- package/backend/dist/cjs/view.js +0 -352
- package/backend/dist/cjs/vinc.dev.d.ts +0 -3
- package/backend/dist/cjs/vinc.dev.js +0 -7
- package/backend/dist/css/adyen.css +0 -92
- package/backend/dist/css/volt.css +0 -70
- package/backend/dist/esm/database/collection.d.ts +0 -160
- package/backend/dist/esm/database/collection.js +0 -1328
- package/backend/dist/esm/database/database.d.ts +0 -121
- package/backend/dist/esm/database/document.d.ts +0 -131
- package/backend/dist/esm/database/document.js +0 -247
- package/backend/dist/esm/database.d.ts +0 -502
- package/backend/dist/esm/database.js +0 -2423
- package/backend/dist/esm/file_watcher.js +0 -329
- package/backend/dist/esm/logger.d.ts +0 -3
- package/backend/dist/esm/logger.js +0 -11
- package/backend/dist/esm/meta.d.ts +0 -50
- package/backend/dist/esm/mutex.d.ts +0 -24
- package/backend/dist/esm/mutex.js +0 -48
- package/backend/dist/esm/payments/paddle.d.ts +0 -160
- package/backend/dist/esm/plugins/browser.d.ts +0 -36
- package/backend/dist/esm/plugins/browser.js +0 -176
- package/backend/dist/esm/plugins/css.d.ts +0 -11
- package/backend/dist/esm/plugins/css.js +0 -90
- package/backend/dist/esm/plugins/ts/compiler.d.ts +0 -139
- package/backend/dist/esm/plugins/ts/compiler.js +0 -1194
- package/backend/dist/esm/plugins/ts/preprocessing.d.ts +0 -14
- package/backend/dist/esm/plugins/ts/preprocessing.js +0 -726
- package/backend/dist/esm/rate_limit.d.ts +0 -63
- package/backend/dist/esm/rate_limit.js +0 -417
- package/backend/dist/esm/request.deprc.d.ts +0 -48
- package/backend/dist/esm/request.deprc.js +0 -572
- package/backend/dist/esm/response.deprc.d.ts +0 -55
- package/backend/dist/esm/response.deprc.js +0 -275
- package/backend/dist/esm/server.d.ts +0 -342
- package/backend/dist/esm/splash_screen.d.ts +0 -35
- package/backend/dist/esm/status.d.ts +0 -61
- package/backend/dist/esm/status.js +0 -197
- package/backend/dist/esm/stream.d.ts +0 -79
- package/backend/dist/esm/users.d.ts +0 -111
- package/backend/dist/esm/users.js +0 -1935
- package/backend/dist/esm/vinc.dev.d.ts +0 -3
- package/backend/dist/esm/vinc.dev.js +0 -7
- package/frontend/dist/elements/base.d.ts +0 -9889
- package/frontend/dist/elements/module.d.ts +0 -30
- package/frontend/dist/modules/array.d.ts +0 -94
- package/frontend/dist/modules/array.js +0 -634
- package/frontend/dist/modules/auth.d.ts +0 -46
- package/frontend/dist/modules/auth.js +0 -139
- package/frontend/dist/modules/colors.d.ts +0 -1
- package/frontend/dist/modules/colors.js +0 -417
- package/frontend/dist/modules/compression.d.ts +0 -6
- package/frontend/dist/modules/compression.js +0 -999
- package/frontend/dist/modules/cookies.d.ts +0 -18
- package/frontend/dist/modules/cookies.js +0 -167
- package/frontend/dist/modules/date.d.ts +0 -142
- package/frontend/dist/modules/date.js +0 -493
- package/frontend/dist/modules/events.d.ts +0 -8
- package/frontend/dist/modules/events.js +0 -91
- package/frontend/dist/modules/google.d.ts +0 -11
- package/frontend/dist/modules/google.js +0 -54
- package/frontend/dist/modules/meta.d.ts +0 -10
- package/frontend/dist/modules/mutex.d.ts +0 -7
- package/frontend/dist/modules/mutex.js +0 -51
- package/frontend/dist/modules/number.d.ts +0 -16
- package/frontend/dist/modules/number.js +0 -23
- package/frontend/dist/modules/object.d.ts +0 -52
- package/frontend/dist/modules/object.js +0 -383
- package/frontend/dist/modules/scheme.d.ts +0 -227
- package/frontend/dist/modules/scheme.js +0 -531
- package/frontend/dist/modules/settings.d.ts +0 -3
- package/frontend/dist/modules/settings.js +0 -4
- package/frontend/dist/modules/statics.d.ts +0 -5
- package/frontend/dist/modules/string.d.ts +0 -124
- package/frontend/dist/modules/string.js +0 -745
- package/frontend/dist/modules/support.d.ts +0 -19
- package/frontend/dist/modules/support.js +0 -103
- package/frontend/dist/modules/themes.d.ts +0 -8
- package/frontend/dist/modules/themes.js +0 -18
- package/frontend/dist/modules/user.d.ts +0 -59
- package/frontend/dist/modules/user.js +0 -280
- package/frontend/dist/modules/utils.d.ts +0 -87
- package/frontend/dist/modules/utils.js +0 -923
- package/frontend/dist/types/gradient.d.ts +0 -12
- package/frontend/dist/ui/border_button.d.ts +0 -152
- package/frontend/dist/ui/button.d.ts +0 -21
- package/frontend/dist/ui/canvas.d.ts +0 -56
- package/frontend/dist/ui/checkbox.d.ts +0 -52
- package/frontend/dist/ui/frame_modes.d.ts +0 -25
- package/frontend/dist/ui/input.d.ts +0 -241
- package/frontend/dist/ui/loader_button.d.ts +0 -93
- package/frontend/dist/ui/loaders.d.ts +0 -57
- package/frontend/dist/ui/pseudo.d.ts +0 -16
- package/frontend/dist/ui/steps.d.ts +0 -59
- package/frontend/dist/ui/title.d.ts +0 -21
- package/frontend/dist/ui/title.js +0 -121
- package/frontend/examples/dashboard/dashboard.ts +0 -776
- /package/backend/dist/cjs/{cli.d.ts → backend/src/cli.d.ts} +0 -0
- /package/backend/dist/cjs/{file_watcher.d.ts → backend/src/database/document.d.ts} +0 -0
- /package/backend/dist/cjs/{file_watcher.js → backend/src/database/document.js} +0 -0
- /package/backend/dist/cjs/{plugins/pdf.d.ts → backend/src/database/filters/strict_filter_test.d.ts} +0 -0
- /package/backend/dist/{esm/file_watcher.d.ts → cjs/backend/src/database/filters/strict_filter_test_v0.d.ts} +0 -0
- /package/backend/dist/{esm/plugins/pdf.d.ts → cjs/backend/src/database/flatten_test.d.ts} +0 -0
- /package/backend/dist/cjs/{frontend.d.ts → backend/src/frontend.d.ts} +0 -0
- /package/backend/dist/cjs/{plugins → backend/src/plugins}/communication.d.ts +0 -0
- /package/backend/dist/cjs/{plugins → backend/src/plugins}/communication.js +0 -0
- /package/backend/dist/cjs/{plugins → backend/src/plugins}/mail/ui.js +0 -0
- /package/backend/dist/cjs/{plugins → backend/src/plugins}/pdf.js +0 -0
- /package/backend/dist/cjs/{plugins → backend/src/plugins}/thread_monitor.d.ts +0 -0
- /package/backend/dist/cjs/{plugins → backend/src/plugins}/thread_monitor.js +0 -0
- /package/backend/dist/cjs/{vinc.d.ts → backend/src/vinc.d.ts} +0 -0
- /package/backend/dist/cjs/{vinc.js → backend/src/vinc.js} +0 -0
- /package/backend/dist/esm/{cli.d.ts → backend/src/cli.d.ts} +0 -0
- /package/backend/dist/esm/{frontend.d.ts → backend/src/frontend.d.ts} +0 -0
- /package/backend/dist/esm/{plugins → backend/src/plugins}/communication.d.ts +0 -0
- /package/backend/dist/esm/{plugins → backend/src/plugins}/communication.js +0 -0
- /package/backend/dist/esm/{plugins → backend/src/plugins}/thread_monitor.d.ts +0 -0
- /package/backend/dist/esm/{plugins → backend/src/plugins}/thread_monitor.js +0 -0
- /package/backend/dist/esm/{vinc.d.ts → backend/src/vinc.d.ts} +0 -0
- /package/backend/dist/esm/{vinc.js → backend/src/vinc.js} +0 -0
- /package/frontend/dist/{elements → frontend/src/elements}/register_element.d.ts +0 -0
- /package/frontend/dist/{elements → frontend/src/elements}/register_element.js +0 -0
- /package/frontend/dist/{modules → frontend/src/modules}/color.d.ts +0 -0
- /package/frontend/dist/{ui → frontend/src/ui}/ui.d.ts +0 -0
- /package/frontend/dist/{ui → frontend/src/ui}/ui.js +0 -0
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export declare class GradientType {
|
|
2
|
-
gradient?: string;
|
|
3
|
-
type?: string;
|
|
4
|
-
degree?: string;
|
|
5
|
-
colors?: {
|
|
6
|
-
color: string;
|
|
7
|
-
stop?: string;
|
|
8
|
-
}[];
|
|
9
|
-
constructor(gradient: string);
|
|
10
|
-
constructor(type: string, ...colors: string[]);
|
|
11
|
-
toString(): string;
|
|
12
|
-
}
|
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
import { VDivElement, VElementTagMap } from "../elements/module.js";
|
|
2
|
-
/**
|
|
3
|
-
* Supports a gradient color for the border combined with border radius.
|
|
4
|
-
* Warning: this class is still experimental and may be subject to future change.
|
|
5
|
-
*/
|
|
6
|
-
export declare class BorderButtonElement extends VElementTagMap.a {
|
|
7
|
-
nodes: {
|
|
8
|
-
border: VDivElement;
|
|
9
|
-
text: VDivElement;
|
|
10
|
-
[key: string]: any;
|
|
11
|
-
};
|
|
12
|
-
/**
|
|
13
|
-
* @docs:
|
|
14
|
-
* @title: Constructor
|
|
15
|
-
* @desc: Initializes a new instance of the BorderButton element with the provided text.
|
|
16
|
-
* @param:
|
|
17
|
-
* @name: text
|
|
18
|
-
* @descr: The text to be displayed on the BorderButton.
|
|
19
|
-
* @type: string
|
|
20
|
-
* @return:
|
|
21
|
-
* @type: void
|
|
22
|
-
* @description This constructor does not return a value.
|
|
23
|
-
*/
|
|
24
|
-
constructor(text?: string);
|
|
25
|
-
/**
|
|
26
|
-
* @docs:
|
|
27
|
-
* @title: Gradient
|
|
28
|
-
* @desc: Set the gradient color for the border element. If no value is provided, it retrieves the current background.
|
|
29
|
-
* @param:
|
|
30
|
-
* @name: value
|
|
31
|
-
* @descr: The color value to set for the gradient.
|
|
32
|
-
* @type: string, null
|
|
33
|
-
* @return:
|
|
34
|
-
* @type: string | this
|
|
35
|
-
* @description When an argument is passed this function returns the instance of the element for chaining. Otherwise, it returns the current background value.
|
|
36
|
-
* @funcs: 2
|
|
37
|
-
*/
|
|
38
|
-
gradient(): string;
|
|
39
|
-
gradient(value: string | null): this;
|
|
40
|
-
/**
|
|
41
|
-
* @docs:
|
|
42
|
-
* @title: Border Color
|
|
43
|
-
* @desc: Sets the border color of the element. If no value is provided, it retrieves the current border color.
|
|
44
|
-
* @param:
|
|
45
|
-
* @name: value
|
|
46
|
-
* @descr: The color value to set for the border.
|
|
47
|
-
* @type: string, null
|
|
48
|
-
* @return:
|
|
49
|
-
* @type: string | this
|
|
50
|
-
* @description When an argument is passed, this function returns the instance of the element for chaining. Otherwise, it returns the current border color.
|
|
51
|
-
* @funcs: 2
|
|
52
|
-
*/
|
|
53
|
-
border_color(): string;
|
|
54
|
-
border_color(value: string | null): this;
|
|
55
|
-
/**
|
|
56
|
-
* @docs:
|
|
57
|
-
* @title: Border Width
|
|
58
|
-
* @desc: Sets or retrieves the border width of the element. If no argument is passed, it returns the current padding.
|
|
59
|
-
* @param:
|
|
60
|
-
* @name: value
|
|
61
|
-
* @descr: The value of the border width to set.
|
|
62
|
-
* @type: number, null
|
|
63
|
-
* @return:
|
|
64
|
-
* @type: number | this
|
|
65
|
-
* @description When an argument is passed, this function returns the instance of the element for chaining. Otherwise, it returns the current border width.
|
|
66
|
-
* @funcs: 2
|
|
67
|
-
*/
|
|
68
|
-
border_width(): string;
|
|
69
|
-
border_width(value: string | number): this;
|
|
70
|
-
/**
|
|
71
|
-
* @docs:
|
|
72
|
-
* @title: Border Radius
|
|
73
|
-
* @desc: Sets the border radius for the element. If no value is provided, it retrieves the current border radius.
|
|
74
|
-
* @param:
|
|
75
|
-
* @name: value
|
|
76
|
-
* @descr: The value for the border radius to set.
|
|
77
|
-
* @type: number, null
|
|
78
|
-
* @return:
|
|
79
|
-
* @type: number | this
|
|
80
|
-
* @description Returns the current border radius if no argument is passed, otherwise returns the instance for chaining.
|
|
81
|
-
* @funcs: 2
|
|
82
|
-
*/
|
|
83
|
-
border_radius(): string;
|
|
84
|
-
border_radius(value: string | number): this;
|
|
85
|
-
/**
|
|
86
|
-
* @docs:
|
|
87
|
-
* @title: Color
|
|
88
|
-
* @desc: Sets or retrieves the color of the child text. When a value is provided, it updates the color; when no value is provided, it returns the current color.
|
|
89
|
-
* @param:
|
|
90
|
-
* @name: value
|
|
91
|
-
* @descr: The color value to set for the child text.
|
|
92
|
-
* @type: string, null
|
|
93
|
-
* @return:
|
|
94
|
-
* @type: string | this
|
|
95
|
-
* @description Returns the current color if no argument is passed; otherwise, returns the instance of the element for chaining.
|
|
96
|
-
* @funcs: 2
|
|
97
|
-
*/
|
|
98
|
-
color(): string;
|
|
99
|
-
color(value: string): this;
|
|
100
|
-
/**
|
|
101
|
-
* @docs:
|
|
102
|
-
* @title: Styles
|
|
103
|
-
* @desc: Retrieves or sets the styling attributes for the element. If no argument is provided, it computes styles based on child elements.
|
|
104
|
-
* @param:
|
|
105
|
-
* @name: style_dict
|
|
106
|
-
* @descr: A dictionary of styles to set. If null, the method computes styles based on child elements.
|
|
107
|
-
* @type: object | null
|
|
108
|
-
* @return:
|
|
109
|
-
* @type: object
|
|
110
|
-
* @description Returns the computed styles when no argument is passed, or the result of the super method when an argument is provided.
|
|
111
|
-
* @funcs: 2
|
|
112
|
-
*/
|
|
113
|
-
styles(): Record<string, string>;
|
|
114
|
-
styles(style_dict: Record<string, any>): this;
|
|
115
|
-
/**
|
|
116
|
-
* @docs:
|
|
117
|
-
* @title: Text
|
|
118
|
-
* @desc: Set or get the text of the element. If a value is provided, it sets the text; otherwise, it retrieves the current text.
|
|
119
|
-
* @param:
|
|
120
|
-
* @name: val
|
|
121
|
-
* @descr: The value to set as text or null to retrieve the current text.
|
|
122
|
-
* @type: string, null
|
|
123
|
-
* @return:
|
|
124
|
-
* @type: string | this
|
|
125
|
-
* @description When a value is passed, this function returns the instance for chaining. If no value is passed, it returns the current text.
|
|
126
|
-
* @funcs: 2
|
|
127
|
-
*/
|
|
128
|
-
text(): string;
|
|
129
|
-
text(val: string): this;
|
|
130
|
-
/**
|
|
131
|
-
* @docs:
|
|
132
|
-
* @title: Transition Border Color
|
|
133
|
-
* @desc: Sets or retrieves the transition for the border color of the element.
|
|
134
|
-
* @param:
|
|
135
|
-
* @name: val
|
|
136
|
-
* @descr: The value to set for the transition or to retrieve the current transition.
|
|
137
|
-
* @type: string, number, null
|
|
138
|
-
* @return:
|
|
139
|
-
* @type: this | string
|
|
140
|
-
* @description When an argument is passed, this function returns the instance of the element for chaining. Otherwise, it returns the already set transition value.
|
|
141
|
-
* @funcs: 2
|
|
142
|
-
*/
|
|
143
|
-
transition_border_color(): string;
|
|
144
|
-
transition_border_color(val: string): this;
|
|
145
|
-
}
|
|
146
|
-
export declare const BorderButton: <Extensions extends object = {}>(text?: string | undefined) => BorderButtonElement & Extensions;
|
|
147
|
-
export declare const NullBorderButton: <Extensions extends object = {}>() => BorderButtonElement & Extensions;
|
|
148
|
-
declare module './any_element.d.ts' {
|
|
149
|
-
interface AnyElementMap {
|
|
150
|
-
BorderButtonElement: BorderButtonElement;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { VElementTagMap } from "../elements/module.js";
|
|
2
|
-
export declare class ButtonElement extends VElementTagMap.a {
|
|
3
|
-
/**
|
|
4
|
-
* @docs:
|
|
5
|
-
* @nav: Frontend
|
|
6
|
-
* @chapter: Buttons
|
|
7
|
-
* @title: Button
|
|
8
|
-
* @desc: Initializes the Button element with the provided text.
|
|
9
|
-
* @param:
|
|
10
|
-
* @name: text
|
|
11
|
-
* @description The text to display on the button.
|
|
12
|
-
*/
|
|
13
|
-
constructor(text?: string);
|
|
14
|
-
}
|
|
15
|
-
export declare const Button: <Extensions extends object = {}>(text?: string | undefined) => ButtonElement & Extensions;
|
|
16
|
-
export declare const NullButton: <Extensions extends object = {}>() => ButtonElement & Extensions;
|
|
17
|
-
declare module './any_element.d.ts' {
|
|
18
|
-
interface AnyElementMap {
|
|
19
|
-
ButtonElement: ButtonElement;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import { VElementTagMap } from "../elements/module.js";
|
|
2
|
-
import { GradientType } from "../types/gradient.js";
|
|
3
|
-
type PointObject = {
|
|
4
|
-
x: number;
|
|
5
|
-
y: number;
|
|
6
|
-
tension?: number;
|
|
7
|
-
};
|
|
8
|
-
export declare class CanvasElement extends VElementTagMap.canvas {
|
|
9
|
-
_e: any;
|
|
10
|
-
ctx_2d: any;
|
|
11
|
-
constructor();
|
|
12
|
-
height(): string | number;
|
|
13
|
-
height(value: string | number, check_attribute?: boolean): this;
|
|
14
|
-
min_height(): string | number;
|
|
15
|
-
min_height(value: string | number): this;
|
|
16
|
-
max_height(): string;
|
|
17
|
-
max_height(value: string | number): this;
|
|
18
|
-
width(): string | number;
|
|
19
|
-
width(value: string | number, check_attribute?: boolean): this;
|
|
20
|
-
min_width(): string | number;
|
|
21
|
-
min_width(value: string | number): this;
|
|
22
|
-
max_width(): string;
|
|
23
|
-
max_width(value: string | number): this;
|
|
24
|
-
getContext(...args: any[]): any;
|
|
25
|
-
draw_lines(ctx: any, points?: PointObject[], tension?: number): this;
|
|
26
|
-
create_gradient(ctx: any, gradient: GradientType, start_x: number, start_y: number, end_x: number, end_y: number): any;
|
|
27
|
-
lines({ points, tension, color, width, fill, scale, dots, }: {
|
|
28
|
-
points: PointObject[];
|
|
29
|
-
tension?: number;
|
|
30
|
-
color?: string;
|
|
31
|
-
width?: number;
|
|
32
|
-
fill?: string | GradientType;
|
|
33
|
-
scale?: boolean;
|
|
34
|
-
dots?: {
|
|
35
|
-
width?: number;
|
|
36
|
-
color?: string | GradientType;
|
|
37
|
-
};
|
|
38
|
-
}): this;
|
|
39
|
-
clear(): this;
|
|
40
|
-
shadow_color(): string;
|
|
41
|
-
shadow_color(val: string): this;
|
|
42
|
-
shadow_blur(): string;
|
|
43
|
-
shadow_blur(val: string): this;
|
|
44
|
-
shadow_offset_x(): string;
|
|
45
|
-
shadow_offset_x(val: number | string): this;
|
|
46
|
-
shadow_offset_y(): string;
|
|
47
|
-
shadow_offset_y(val: number | string): this;
|
|
48
|
-
}
|
|
49
|
-
export declare const Canvas: <Extensions extends object = {}>() => CanvasElement & Extensions;
|
|
50
|
-
export declare const NullCanvas: <Extensions extends object = {}>() => CanvasElement & Extensions;
|
|
51
|
-
declare module './any_element.d.ts' {
|
|
52
|
-
interface AnyElementMap {
|
|
53
|
-
CanvasElement: CanvasElement;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
export {};
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { VElementBaseSignature } from "../elements/module.js";
|
|
2
|
-
import { HStackElement } from "./stack";
|
|
3
|
-
import { TextElement } from "./text";
|
|
4
|
-
declare const CheckBoxElement_base: VElementBaseSignature;
|
|
5
|
-
export declare class CheckBoxElement extends CheckBoxElement_base {
|
|
6
|
-
_border_color: string;
|
|
7
|
-
_inner_bg: string;
|
|
8
|
-
_focus_color: string;
|
|
9
|
-
_missing_color: string;
|
|
10
|
-
_missing: boolean;
|
|
11
|
-
_required: boolean;
|
|
12
|
-
private _circle;
|
|
13
|
-
text: TextElement;
|
|
14
|
-
content: HStackElement;
|
|
15
|
-
error: TextElement;
|
|
16
|
-
constructor(text_or_obj?: string | {
|
|
17
|
-
text: string;
|
|
18
|
-
required: boolean;
|
|
19
|
-
id?: string;
|
|
20
|
-
});
|
|
21
|
-
border_color(): string;
|
|
22
|
-
border_color(val: string): this;
|
|
23
|
-
inner_bg(): string;
|
|
24
|
-
inner_bg(val: string): this;
|
|
25
|
-
styles(): Record<string, string>;
|
|
26
|
-
styles(style_dict: Record<string, any>): this;
|
|
27
|
-
set_default(): this;
|
|
28
|
-
toggle(): this;
|
|
29
|
-
value(): boolean;
|
|
30
|
-
value(to: boolean): this;
|
|
31
|
-
required(): boolean;
|
|
32
|
-
required(to: boolean): this;
|
|
33
|
-
focus_color(): string;
|
|
34
|
-
focus_color(val: string): this;
|
|
35
|
-
missing_color(): string;
|
|
36
|
-
missing_color(val: string): this;
|
|
37
|
-
missing(): boolean;
|
|
38
|
-
missing(to: boolean): this;
|
|
39
|
-
submit(): boolean;
|
|
40
|
-
}
|
|
41
|
-
export declare const CheckBox: <Extensions extends object = {}>(text_or_obj?: string | {
|
|
42
|
-
text: string;
|
|
43
|
-
required: boolean;
|
|
44
|
-
id?: string;
|
|
45
|
-
} | undefined) => CheckBoxElement & Extensions;
|
|
46
|
-
export declare const NullCheckBox: <Extensions extends object = {}>() => CheckBoxElement & Extensions;
|
|
47
|
-
declare module './any_element.d.ts' {
|
|
48
|
-
interface AnyElementMap {
|
|
49
|
-
CheckBoxElement: CheckBoxElement;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
export {};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { VElement } from "../elements/module.js";
|
|
2
|
-
export declare class FrameNodes extends Array<VElement> {
|
|
3
|
-
constructor(...children: VElement[]);
|
|
4
|
-
}
|
|
5
|
-
type OnSet = (mode: string, nodes: FrameNodes) => any;
|
|
6
|
-
export declare class FrameModes {
|
|
7
|
-
modes: Record<string, FrameNodes>;
|
|
8
|
-
active?: string;
|
|
9
|
-
_on_set?: OnSet;
|
|
10
|
-
constructor(...modes: string[]);
|
|
11
|
-
get(mode: string): FrameNodes;
|
|
12
|
-
set(mode: string): this;
|
|
13
|
-
switch(mode: string): this;
|
|
14
|
-
on_set(): undefined | OnSet;
|
|
15
|
-
on_set(callback: OnSet): this;
|
|
16
|
-
on_switch(): undefined | OnSet;
|
|
17
|
-
on_switch(callback: OnSet): this;
|
|
18
|
-
}
|
|
19
|
-
declare global {
|
|
20
|
-
interface VElementExtensions {
|
|
21
|
-
frame_mode(frame_mode: FrameNodes): this;
|
|
22
|
-
frame_mode(frame_modes: FrameModes, mode_name: string): this;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
@@ -1,241 +0,0 @@
|
|
|
1
|
-
import { VElementBaseSignature, VElementTagMap, ElementKeyboardEvent, ElementEvent } from "../elements/module.js";
|
|
2
|
-
import { HStackElement } from "./stack";
|
|
3
|
-
import { TextElement } from "./text";
|
|
4
|
-
import { ImageMaskElement } from "./image";
|
|
5
|
-
import { GradientBorderElement } from "./gradient";
|
|
6
|
-
import { ScrollerElement } from "./scroller";
|
|
7
|
-
export declare class InputElement extends VElementTagMap.input {
|
|
8
|
-
private _e;
|
|
9
|
-
constructor(placeholder?: string, type?: string, value?: string);
|
|
10
|
-
value(): string;
|
|
11
|
-
value(val: string | number): this;
|
|
12
|
-
required(): boolean;
|
|
13
|
-
required(val: boolean): this;
|
|
14
|
-
type(): string;
|
|
15
|
-
type(val: string): this;
|
|
16
|
-
placeholder(): string;
|
|
17
|
-
placeholder(val: string): this;
|
|
18
|
-
resize(): string;
|
|
19
|
-
resize(val: string): this;
|
|
20
|
-
padding(): string;
|
|
21
|
-
padding(value: undefstrnr): this;
|
|
22
|
-
padding(top_bottom: undefstrnr, left_right: undefstrnr): this;
|
|
23
|
-
padding(top: undefstrnr, right: undefstrnr, bottom: undefstrnr, left: undefstrnr): this;
|
|
24
|
-
}
|
|
25
|
-
export declare const Input: <Extensions extends object = {}>(placeholder?: string | undefined, type?: string | undefined, value?: string | undefined) => InputElement & Extensions;
|
|
26
|
-
export declare const NullInput: <Extensions extends object = {}>() => InputElement & Extensions;
|
|
27
|
-
declare module './any_element.d.ts' {
|
|
28
|
-
interface AnyElementMap {
|
|
29
|
-
InputElement: InputElement;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
export declare class InputBoxElement extends VElementTagMap.textarea {
|
|
33
|
-
_e?: HTMLTextAreaElement;
|
|
34
|
-
constructor(placeholder?: string);
|
|
35
|
-
value(): string;
|
|
36
|
-
value(val: string | number): this;
|
|
37
|
-
required(): boolean;
|
|
38
|
-
required(val: boolean): this;
|
|
39
|
-
type(): string;
|
|
40
|
-
type(val: string): this;
|
|
41
|
-
placeholder(): string;
|
|
42
|
-
placeholder(val: string): this;
|
|
43
|
-
resize(): string;
|
|
44
|
-
resize(val: string): this;
|
|
45
|
-
padding(): string;
|
|
46
|
-
padding(value: undefstrnr): this;
|
|
47
|
-
padding(top_bottom: undefstrnr, left_right: undefstrnr): this;
|
|
48
|
-
padding(top: undefstrnr, right: undefstrnr, bottom: undefstrnr, left: undefstrnr): this;
|
|
49
|
-
}
|
|
50
|
-
export declare const InputBox: <Extensions extends object = {}>(placeholder?: string | undefined) => InputBoxElement & Extensions;
|
|
51
|
-
export declare const NullInputBox: <Extensions extends object = {}>() => InputBoxElement & Extensions;
|
|
52
|
-
declare module './any_element.d.ts' {
|
|
53
|
-
interface AnyElementMap {
|
|
54
|
-
InputBoxElement: InputBoxElement;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
declare const ExtendedInputElement_base: VElementBaseSignature;
|
|
58
|
-
export declare class ExtendedInputElement extends ExtendedInputElement_base {
|
|
59
|
-
private _focus_color;
|
|
60
|
-
private _missing_color;
|
|
61
|
-
private _mask_color;
|
|
62
|
-
private _initial_border_color;
|
|
63
|
-
private _hover_border_color;
|
|
64
|
-
label: TextElement;
|
|
65
|
-
image: ImageMaskElement;
|
|
66
|
-
input: (InputElement | InputBoxElement);
|
|
67
|
-
input_border: GradientBorderElement;
|
|
68
|
-
container: HStackElement;
|
|
69
|
-
error: TextElement;
|
|
70
|
-
is_missing: boolean;
|
|
71
|
-
is_focused: boolean;
|
|
72
|
-
constructor({ label, image, alt, placeholder, id, readonly, required, type, value, }: {
|
|
73
|
-
label?: string;
|
|
74
|
-
image?: string;
|
|
75
|
-
alt?: string;
|
|
76
|
-
placeholder?: string;
|
|
77
|
-
id?: string;
|
|
78
|
-
readonly?: boolean;
|
|
79
|
-
required?: boolean;
|
|
80
|
-
type?: string;
|
|
81
|
-
value?: string;
|
|
82
|
-
});
|
|
83
|
-
styles(): Record<string, string>;
|
|
84
|
-
styles(style_dict: Record<string, any>): this;
|
|
85
|
-
set_default(): this;
|
|
86
|
-
focus_color(): string;
|
|
87
|
-
focus_color(val: string): this;
|
|
88
|
-
missing_color(): string;
|
|
89
|
-
missing_color(val: string): this;
|
|
90
|
-
missing(): boolean;
|
|
91
|
-
missing(to: boolean, err?: string): this;
|
|
92
|
-
set_error(err?: string): this;
|
|
93
|
-
submit(): string;
|
|
94
|
-
mask_color(): string;
|
|
95
|
-
mask_color(val: string): this;
|
|
96
|
-
show_error(err?: string): this;
|
|
97
|
-
hide_error(): this;
|
|
98
|
-
readonly(): boolean;
|
|
99
|
-
readonly(val: boolean): this;
|
|
100
|
-
text(): string;
|
|
101
|
-
text(val: string): this;
|
|
102
|
-
value(): string;
|
|
103
|
-
value(val: string): this;
|
|
104
|
-
required(): boolean;
|
|
105
|
-
required(val: boolean): this;
|
|
106
|
-
on_enter(): undefined | ElementKeyboardEvent<this>;
|
|
107
|
-
on_enter(val: ElementKeyboardEvent<this>): this;
|
|
108
|
-
on_input(): undefined | ElementEvent<this>;
|
|
109
|
-
on_input(val: ElementEvent<this>): this;
|
|
110
|
-
border_radius(): string;
|
|
111
|
-
border_radius(val: string): this;
|
|
112
|
-
border_color(): string;
|
|
113
|
-
border_color(val: string): this;
|
|
114
|
-
hover_border_color(): string;
|
|
115
|
-
hover_border_color(val: string): this;
|
|
116
|
-
border_width(): string;
|
|
117
|
-
border_width(val: string): this;
|
|
118
|
-
border_style(): string;
|
|
119
|
-
border_style(val: string): this;
|
|
120
|
-
background(): string;
|
|
121
|
-
background(val: string): this;
|
|
122
|
-
padding(): string;
|
|
123
|
-
padding(value: undefstrnr): this;
|
|
124
|
-
padding(top_bottom: undefstrnr, left_right: undefstrnr): this;
|
|
125
|
-
padding(top: undefstrnr, right: undefstrnr, bottom: undefstrnr, left: undefstrnr): this;
|
|
126
|
-
border(): string;
|
|
127
|
-
border(value: string): this;
|
|
128
|
-
border(width: string | number, color: string): this;
|
|
129
|
-
border(width: string | number, style: string, color: string): this;
|
|
130
|
-
}
|
|
131
|
-
export declare const ExtendedInput: <Extensions extends object = {}>(args_0: {
|
|
132
|
-
label?: string;
|
|
133
|
-
image?: string;
|
|
134
|
-
alt?: string;
|
|
135
|
-
placeholder?: string;
|
|
136
|
-
id?: string;
|
|
137
|
-
readonly?: boolean;
|
|
138
|
-
required?: boolean;
|
|
139
|
-
type?: string;
|
|
140
|
-
value?: string;
|
|
141
|
-
}) => ExtendedInputElement & Extensions;
|
|
142
|
-
export declare const NullExtendedInput: <Extensions extends object = {}>() => ExtendedInputElement & Extensions;
|
|
143
|
-
declare module './any_element.d.ts' {
|
|
144
|
-
interface AnyElementMap {
|
|
145
|
-
ExtendedInputElement: ExtendedInputElement;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
interface ExtendedSelectItem {
|
|
149
|
-
id: string;
|
|
150
|
-
text?: string;
|
|
151
|
-
image?: null;
|
|
152
|
-
stack?: HStackElement;
|
|
153
|
-
}
|
|
154
|
-
type ExtendedSelectOnChange = (element: ExtendedSelectElement, id: string) => any;
|
|
155
|
-
declare const ExtendedSelectElement_base: VElementBaseSignature;
|
|
156
|
-
export declare class ExtendedSelectElement extends ExtendedSelectElement_base {
|
|
157
|
-
_focus_color: string;
|
|
158
|
-
_missing_color: string;
|
|
159
|
-
_mask_color: string;
|
|
160
|
-
_border_color: string;
|
|
161
|
-
_hover_bg: string;
|
|
162
|
-
items: ExtendedSelectItem[];
|
|
163
|
-
label: TextElement;
|
|
164
|
-
image: ImageMaskElement;
|
|
165
|
-
input: InputElement;
|
|
166
|
-
container: HStackElement;
|
|
167
|
-
error: TextElement;
|
|
168
|
-
dropdown: ScrollerElement;
|
|
169
|
-
is_missing: boolean;
|
|
170
|
-
_on_change_callback?: ExtendedSelectOnChange;
|
|
171
|
-
private _on_dropdown_close;
|
|
172
|
-
_dropdown_height?: string | number;
|
|
173
|
-
_value?: string;
|
|
174
|
-
constructor({ label, image, alt, placeholder, id, required, items, }: {
|
|
175
|
-
label?: string;
|
|
176
|
-
image?: string;
|
|
177
|
-
alt?: string;
|
|
178
|
-
placeholder?: string;
|
|
179
|
-
id?: string;
|
|
180
|
-
required?: boolean;
|
|
181
|
-
items: ExtendedSelectItem[] | Record<string, string> | Record<string, ExtendedSelectItem>;
|
|
182
|
-
});
|
|
183
|
-
dropdown_height(): undefined | string | number;
|
|
184
|
-
dropdown_height(val: string | number): this;
|
|
185
|
-
styles(): Record<string, string>;
|
|
186
|
-
styles(style_dict: Record<string, any>): this;
|
|
187
|
-
set_default(): this;
|
|
188
|
-
focus_color(): string;
|
|
189
|
-
focus_color(val: string): this;
|
|
190
|
-
missing_color(): string;
|
|
191
|
-
missing_color(val: string): this;
|
|
192
|
-
missing(): boolean;
|
|
193
|
-
missing(to: boolean, err?: string): this;
|
|
194
|
-
set_error(err?: string): this;
|
|
195
|
-
submit(): string;
|
|
196
|
-
expand(): this;
|
|
197
|
-
value(): string;
|
|
198
|
-
value(val: string): this;
|
|
199
|
-
mask_color(): string;
|
|
200
|
-
mask_color(val: string): this;
|
|
201
|
-
background(): string;
|
|
202
|
-
background(val: string): this;
|
|
203
|
-
border_radius(): string;
|
|
204
|
-
border_radius(val: string | number): this;
|
|
205
|
-
border_color(): string;
|
|
206
|
-
border_color(val: string): this;
|
|
207
|
-
border_width(): string;
|
|
208
|
-
border_width(val: number | string): this;
|
|
209
|
-
border_style(): string;
|
|
210
|
-
border_style(val: string): this;
|
|
211
|
-
padding(): string;
|
|
212
|
-
padding(value: undefstrnr): this;
|
|
213
|
-
padding(top_bottom: undefstrnr, left_right: undefstrnr): this;
|
|
214
|
-
padding(top: undefstrnr, right: undefstrnr, bottom: undefstrnr, left: undefstrnr): this;
|
|
215
|
-
border(): string;
|
|
216
|
-
border(value: string): this;
|
|
217
|
-
border(width: string | number, color: string): this;
|
|
218
|
-
border(width: string | number, style: string, color: string): this;
|
|
219
|
-
on_change(): undefined | ExtendedSelectOnChange;
|
|
220
|
-
on_change(callback: ExtendedSelectOnChange): this;
|
|
221
|
-
text(): string;
|
|
222
|
-
text(val: string): this;
|
|
223
|
-
required(): boolean;
|
|
224
|
-
required(val: boolean): this;
|
|
225
|
-
}
|
|
226
|
-
export declare const ExtendedSelect: <Extensions extends object = {}>(args_0: {
|
|
227
|
-
label?: string;
|
|
228
|
-
image?: string;
|
|
229
|
-
alt?: string;
|
|
230
|
-
placeholder?: string;
|
|
231
|
-
id?: string;
|
|
232
|
-
required?: boolean;
|
|
233
|
-
items: ExtendedSelectItem[] | Record<string, string> | Record<string, ExtendedSelectItem>;
|
|
234
|
-
}) => ExtendedSelectElement & Extensions;
|
|
235
|
-
export declare const NullExtendedSelect: <Extensions extends object = {}>() => ExtendedSelectElement & Extensions;
|
|
236
|
-
declare module './any_element.d.ts' {
|
|
237
|
-
interface AnyElementMap {
|
|
238
|
-
ExtendedSelectElement: ExtendedSelectElement;
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
export {};
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
import { VElementBaseSignature, VDivElement } from "../elements/module.js";
|
|
2
|
-
import { RingLoaderElement } from "./loaders";
|
|
3
|
-
declare const LoaderButtonElement_base: VElementBaseSignature;
|
|
4
|
-
/**
|
|
5
|
-
* @warning: you should not use function "LoaderButton.loader.hide() / LoaderButton.loader.show()" use "LoaderButton.hide_loader() / LoaderButton.show_loader()" instead.
|
|
6
|
-
* @warning: This class is still experimental and may be subject to future change.
|
|
7
|
-
*/
|
|
8
|
-
export declare class LoaderButtonElement extends LoaderButtonElement_base {
|
|
9
|
-
nodes: {
|
|
10
|
-
text: VDivElement;
|
|
11
|
-
loader: RingLoaderElement;
|
|
12
|
-
[key: string]: any;
|
|
13
|
-
};
|
|
14
|
-
text: VDivElement;
|
|
15
|
-
loader: RingLoaderElement;
|
|
16
|
-
/**
|
|
17
|
-
* @docs:
|
|
18
|
-
* @title: Loader Button Constructor
|
|
19
|
-
* @desc: Initializes the LoaderButton element with the provided text and loader.
|
|
20
|
-
* @param:
|
|
21
|
-
* @name: text
|
|
22
|
-
* @descr: The text to display on the loader button.
|
|
23
|
-
* @type: string
|
|
24
|
-
* @param:
|
|
25
|
-
* @name: loader
|
|
26
|
-
* @descr: The loader function to create the loading animation.
|
|
27
|
-
* @type: Function
|
|
28
|
-
* @return:
|
|
29
|
-
* @type: void
|
|
30
|
-
* @description This constructor does not return a value.
|
|
31
|
-
*/
|
|
32
|
-
constructor(text?: string, loader?: () => any);
|
|
33
|
-
/**
|
|
34
|
-
* @docs:
|
|
35
|
-
* @title: Styles
|
|
36
|
-
* @desc: Retrieves or sets the styling attributes for the loader element. If no argument is provided, it returns the current styles including default loader dimensions.
|
|
37
|
-
* @param:
|
|
38
|
-
* @name: style_dict
|
|
39
|
-
* @descr: An optional dictionary of styles to set.
|
|
40
|
-
* @type: object | null
|
|
41
|
-
* @return:
|
|
42
|
-
* @type: object
|
|
43
|
-
* @description When no argument is passed, returns the current styles including loader dimensions. When an argument is provided, returns the result of the super class's styles method.
|
|
44
|
-
* @funcs: 2
|
|
45
|
-
*/
|
|
46
|
-
styles(): Record<string, string>;
|
|
47
|
-
styles(style_dict: Record<string, any>): this;
|
|
48
|
-
/**
|
|
49
|
-
* @docs:
|
|
50
|
-
* @title: Set Default
|
|
51
|
-
* @desc: Sets the default configuration for the LoaderButtonElement by calling the parent method.
|
|
52
|
-
* @return:
|
|
53
|
-
* @type: this
|
|
54
|
-
* @description Returns the instance of the element for chaining.
|
|
55
|
-
*/
|
|
56
|
-
set_default(): this;
|
|
57
|
-
/**
|
|
58
|
-
* @docs:
|
|
59
|
-
* @title: Show Loader
|
|
60
|
-
* @desc: Displays the loader and disables the button when clicked.
|
|
61
|
-
* @return:
|
|
62
|
-
* @type: this
|
|
63
|
-
* @description Returns the instance of the element for chaining.
|
|
64
|
-
*/
|
|
65
|
-
show_loader(): this;
|
|
66
|
-
/**
|
|
67
|
-
* @docs:
|
|
68
|
-
* @title: Start
|
|
69
|
-
* @desc: Initiates the loading process by showing the loader.
|
|
70
|
-
* @return:
|
|
71
|
-
* @type: this
|
|
72
|
-
* @description Returns the instance of the element for chaining.
|
|
73
|
-
*/
|
|
74
|
-
start(): this;
|
|
75
|
-
/**
|
|
76
|
-
* @docs:
|
|
77
|
-
* @title: Hide Loader
|
|
78
|
-
* @desc: Hides the loader, enables the button, and shows the text on click event.
|
|
79
|
-
* @return:
|
|
80
|
-
* @type: this
|
|
81
|
-
* @description Returns the instance of the element for chaining.
|
|
82
|
-
*/
|
|
83
|
-
hide_loader(): this;
|
|
84
|
-
stop(): this;
|
|
85
|
-
}
|
|
86
|
-
export declare const LoaderButton: <Extensions extends object = {}>(text?: string | undefined, loader?: (() => any) | undefined) => LoaderButtonElement & Extensions;
|
|
87
|
-
export declare const NullLoaderButton: <Extensions extends object = {}>() => LoaderButtonElement & Extensions;
|
|
88
|
-
declare module './any_element.d.ts' {
|
|
89
|
-
interface AnyElementMap {
|
|
90
|
-
LoaderButtonElement: LoaderButtonElement;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
export {};
|