@loftyshaky/shared-app 1.1.0 → 1.2.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/LICENSE.md +21 -0
- package/_locales/de/messages.json +1 -1
- package/_locales/en/messages.json +44 -20
- package/_locales/ru/messages.json +6 -18
- package/announcement.d.ts +2 -2
- package/announcement.js +5 -1
- package/app.d.ts +1 -5
- package/app.js +5 -1
- package/chunk-main.js +22 -0
- package/chunk-main2.js +5 -0
- package/chunk-main3.js +5 -0
- package/chunk-main4.js +5 -0
- package/chunk-pickr.min.js +5 -0
- package/dependencies.d.ts +2 -0
- package/dependencies.js +5 -0
- package/dependencies.txt +863 -0
- package/ext.d.ts +1 -5
- package/ext.js +5 -1
- package/fonts/NotoSans-Regular.ttf +0 -0
- package/globals.d.ts +49 -0
- package/html/dependencies.html +13 -0
- package/index.d.ts +3 -3
- package/index.js +5 -1
- package/inputs.d.ts +2 -2
- package/inputs.js +5 -1
- package/js/apps.js +63 -63
- package/js/dependencies.js +56 -0
- package/js/package/plugins/rollup-plugin-copy.js +169 -169
- package/js/package/plugins/watcher.js +56 -56
- package/js/package/terser.js +18 -18
- package/js/task_scheduler.js +39 -39
- package/js/tsc_alias.js +19 -0
- package/js/webpack.config.js +26 -3
- package/package.json +1 -1
- package/scss/dependencies/body.scss +3 -0
- package/scss/dependencies/hr.scss +3 -0
- package/scss/dependencies/index.scss +5 -0
- package/scss/dependencies/links.scss +3 -0
- package/scss/dependencies/main.scss +3 -0
- package/scss/settings/transitions.scss +1 -1
- package/scss/shared/checkboxes.scss +2 -2
- package/scss/shared/close_btn.scss +1 -1
- package/scss/shared/embed/error.scss +2 -2
- package/scss/shared/embed/font_face.scss +1 -2
- package/scss/shared/inputs.scss +4 -1
- package/scss/shared/inset_border.scss +1 -4
- package/scss/shared/mixins.scss +11 -7
- package/scss/shared/mods.scss +1 -3
- package/scss/shared/selects.scss +8 -2
- package/scss/shared/themes/colors/aqua.scss +15 -6
- package/scss/shared/themes/colors/dark.scss +5 -1
- package/scss/shared/themes/colors/lavender.scss +19 -6
- package/scss/shared/themes/colors/light.scss +5 -1
- package/scss/shared/themes/colors/very_dark.scss +5 -1
- package/scss/shared/themes/general/template.scss +16 -10
- package/scss/shared/themes/general/template_focus.scss +6 -4
- package/scss/shared/transitions.scss +1 -1
- package/scss/shared/upload_box.scss +2 -3
- package/scss/shared/vars.scss +9 -3
- package/settings.d.ts +2 -2
- package/settings.js +5 -1
- package/ts/announcement/components/body.d.ts +2 -3
- package/ts/announcement/components/index.d.ts +1 -1
- package/ts/announcement/internal.d.ts +2 -3
- package/ts/announcement/scripts/display.d.ts +6 -6
- package/ts/announcement/scripts/index.d.ts +1 -2
- package/ts/dependencies/components/body.d.ts +2 -0
- package/ts/dependencies/components/index.d.ts +1 -0
- package/ts/dependencies/internal.d.ts +2 -0
- package/ts/dependencies/scripts/dependencies.d.ts +7 -0
- package/ts/dependencies/scripts/index.d.ts +1 -0
- package/ts/error_modules/crash_handler/components/body.d.ts +52 -52
- package/ts/error_modules/crash_handler/components/index.d.ts +1 -1
- package/ts/error_modules/crash_handler/components/prop_types/body.d.ts +4 -4
- package/ts/error_modules/crash_handler/components/prop_types/index.d.ts +1 -1
- package/ts/error_modules/crash_handler/data/index.d.ts +1 -1
- package/ts/error_modules/crash_handler/data/visibility.d.ts +7 -7
- package/ts/error_modules/crash_handler/scripts/index.d.ts +1 -1
- package/ts/error_modules/crash_handler/scripts/page.d.ts +6 -6
- package/ts/error_modules/css/scripts/index.d.ts +1 -1
- package/ts/error_modules/css/scripts/main.d.ts +8 -8
- package/ts/error_modules/error/components/body.d.ts +3 -3
- package/ts/error_modules/error/components/close_btn.d.ts +2 -2
- package/ts/error_modules/error/components/ext_name.d.ts +2 -2
- package/ts/error_modules/error/components/index.d.ts +6 -6
- package/ts/error_modules/error/components/keep_visible_msg.d.ts +2 -2
- package/ts/error_modules/error/components/msg.d.ts +2 -2
- package/ts/error_modules/error/components/progress.d.ts +2 -2
- package/ts/error_modules/error/components/prop_types/body.d.ts +5 -5
- package/ts/error_modules/error/components/prop_types/index.d.ts +1 -1
- package/ts/error_modules/error/data/index.d.ts +4 -4
- package/ts/error_modules/error/data/main.d.ts +11 -11
- package/ts/error_modules/error/data/msg.d.ts +13 -13
- package/ts/error_modules/error/data/progress.d.ts +17 -17
- package/ts/error_modules/error/data/state.d.ts +25 -25
- package/ts/error_modules/error/interfaces/error.d.ts +6 -6
- package/ts/error_modules/error/interfaces/error_obj.d.ts +6 -6
- package/ts/error_modules/error/interfaces/index.d.ts +7 -7
- package/ts/error_modules/error/interfaces/notification_type.d.ts +1 -1
- package/ts/error_modules/error/interfaces/observable_keys.d.ts +1 -1
- package/ts/error_modules/error/interfaces/show_error.d.ts +11 -11
- package/ts/error_modules/error/interfaces/show_unable_to_access_settings_error.d.ts +5 -5
- package/ts/error_modules/error/interfaces/timeout_observable_keys.d.ts +1 -1
- package/ts/error_modules/error/scripts/flash.d.ts +11 -11
- package/ts/error_modules/error/scripts/globals.d.ts +1 -12
- package/ts/error_modules/error/scripts/index.d.ts +3 -3
- package/ts/error_modules/error/scripts/notification.d.ts +8 -8
- package/ts/error_modules/init.d.ts +1 -1
- package/ts/error_modules/internal.d.ts +11 -11
- package/ts/inputs/color/components/body.d.ts +3 -3
- package/ts/inputs/color/components/color_picker.d.ts +3 -3
- package/ts/inputs/color/components/fill_shadow.d.ts +3 -3
- package/ts/inputs/color/components/index.d.ts +4 -4
- package/ts/inputs/color/components/prop_types/body.d.ts +4 -4
- package/ts/inputs/color/components/prop_types/color_picker.d.ts +7 -7
- package/ts/inputs/color/components/prop_types/fill_shadow.d.ts +5 -5
- package/ts/inputs/color/components/prop_types/index.d.ts +4 -4
- package/ts/inputs/color/components/prop_types/visualization.d.ts +6 -6
- package/ts/inputs/color/components/visualization.d.ts +3 -3
- package/ts/inputs/color/data/color.d.ts +54 -54
- package/ts/inputs/color/data/index.d.ts +2 -2
- package/ts/inputs/color/data/visibility.d.ts +38 -38
- package/ts/inputs/color/interfaces/color.d.ts +1 -1
- package/ts/inputs/color/interfaces/color_picker_state.d.ts +6 -6
- package/ts/inputs/color/interfaces/color_picker_state_one.d.ts +5 -5
- package/ts/inputs/color/interfaces/i.d.ts +1 -1
- package/ts/inputs/color/interfaces/index.d.ts +4 -4
- package/ts/inputs/color/obj/color.d.ts +54 -54
- package/ts/inputs/color/obj/index.d.ts +1 -1
- package/ts/inputs/color/scripts/color_picker.d.ts +20 -20
- package/ts/inputs/color/scripts/index.d.ts +2 -2
- package/ts/inputs/color/scripts/position.d.ts +7 -7
- package/ts/inputs/components/btn.d.ts +3 -3
- package/ts/inputs/components/checkbox.d.ts +3 -3
- package/ts/inputs/components/file.d.ts +3 -3
- package/ts/inputs/components/form.d.ts +3 -3
- package/ts/inputs/components/group.d.ts +3 -3
- package/ts/inputs/components/help.d.ts +3 -3
- package/ts/inputs/components/help_btn.d.ts +3 -3
- package/ts/inputs/components/hr.d.ts +3 -3
- package/ts/inputs/components/icon_btn.d.ts +3 -3
- package/ts/inputs/components/index.d.ts +25 -25
- package/ts/inputs/components/input_error.d.ts +3 -3
- package/ts/inputs/components/input_item.d.ts +3 -3
- package/ts/inputs/components/label.d.ts +3 -3
- package/ts/inputs/components/label_in_input_item.d.ts +3 -3
- package/ts/inputs/components/link.d.ts +3 -3
- package/ts/inputs/components/link_btn.d.ts +3 -3
- package/ts/inputs/components/link_icon_btn.d.ts +3 -3
- package/ts/inputs/components/prop_types/btn.d.ts +4 -4
- package/ts/inputs/components/prop_types/checkbox.d.ts +4 -4
- package/ts/inputs/components/prop_types/file.d.ts +4 -4
- package/ts/inputs/components/prop_types/form.d.ts +5 -5
- package/ts/inputs/components/prop_types/group.d.ts +5 -5
- package/ts/inputs/components/prop_types/help.d.ts +4 -4
- package/ts/inputs/components/prop_types/help_btn.d.ts +4 -4
- package/ts/inputs/components/prop_types/hr.d.ts +4 -4
- package/ts/inputs/components/prop_types/icon_btn.d.ts +4 -4
- package/ts/inputs/components/prop_types/index.d.ts +25 -25
- package/ts/inputs/components/prop_types/input_error.d.ts +4 -4
- package/ts/inputs/components/prop_types/input_item.d.ts +7 -7
- package/ts/inputs/components/prop_types/label.d.ts +4 -4
- package/ts/inputs/components/prop_types/label_in_input_item.d.ts +4 -4
- package/ts/inputs/components/prop_types/link.d.ts +4 -4
- package/ts/inputs/components/prop_types/link_btn.d.ts +4 -4
- package/ts/inputs/components/prop_types/link_icon_btn.d.ts +5 -5
- package/ts/inputs/components/prop_types/range.d.ts +6 -6
- package/ts/inputs/components/prop_types/section.d.ts +4 -4
- package/ts/inputs/components/prop_types/section_btn.d.ts +7 -7
- package/ts/inputs/components/prop_types/section_content.d.ts +5 -5
- package/ts/inputs/components/prop_types/select.d.ts +6 -6
- package/ts/inputs/components/prop_types/text.d.ts +6 -6
- package/ts/inputs/components/prop_types/text_btn.d.ts +8 -8
- package/ts/inputs/components/prop_types/textarea.d.ts +6 -6
- package/ts/inputs/components/prop_types/upload_box.d.ts +5 -5
- package/ts/inputs/components/range.d.ts +3 -3
- package/ts/inputs/components/section.d.ts +3 -3
- package/ts/inputs/components/section_btn.d.ts +3 -3
- package/ts/inputs/components/section_content.d.ts +3 -3
- package/ts/inputs/components/select.d.ts +3 -3
- package/ts/inputs/components/text.d.ts +3 -3
- package/ts/inputs/components/text_btn.d.ts +3 -3
- package/ts/inputs/components/textarea.d.ts +3 -3
- package/ts/inputs/components/upload_box.d.ts +3 -3
- package/ts/inputs/data/help.d.ts +15 -15
- package/ts/inputs/data/index.d.ts +8 -8
- package/ts/inputs/data/input_error.d.ts +12 -12
- package/ts/inputs/data/input_width.d.ts +26 -26
- package/ts/inputs/data/labelIn_in_putI_iem.d.ts +9 -9
- package/ts/inputs/data/nested_input.d.ts +18 -18
- package/ts/inputs/data/text.d.ts +21 -21
- package/ts/inputs/data/upload_box.d.ts +24 -24
- package/ts/inputs/data/val.d.ts +41 -41
- package/ts/inputs/interfaces/btn_option.d.ts +9 -9
- package/ts/inputs/interfaces/icon_btns.d.ts +2 -2
- package/ts/inputs/interfaces/index.d.ts +9 -9
- package/ts/inputs/interfaces/input.d.ts +2 -2
- package/ts/inputs/interfaces/inputs.d.ts +2 -2
- package/ts/inputs/interfaces/links.d.ts +2 -2
- package/ts/inputs/interfaces/options.d.ts +2 -2
- package/ts/inputs/interfaces/sections.d.ts +2 -2
- package/ts/inputs/interfaces/state_cond.d.ts +4 -4
- package/ts/inputs/interfaces/text_btn.d.ts +7 -7
- package/ts/inputs/internal.d.ts +12 -12
- package/ts/inputs/obj/btn.d.ts +6 -6
- package/ts/inputs/obj/checkbox.d.ts +5 -5
- package/ts/inputs/obj/file.d.ts +9 -9
- package/ts/inputs/obj/form.d.ts +7 -7
- package/ts/inputs/obj/group.d.ts +6 -6
- package/ts/inputs/obj/hr.d.ts +5 -5
- package/ts/inputs/obj/icon_btn.d.ts +7 -7
- package/ts/inputs/obj/index.d.ts +18 -18
- package/ts/inputs/obj/input_base.d.ts +45 -45
- package/ts/inputs/obj/label.d.ts +5 -5
- package/ts/inputs/obj/link.d.ts +17 -16
- package/ts/inputs/obj/link_btn.d.ts +6 -6
- package/ts/inputs/obj/option.d.ts +6 -6
- package/ts/inputs/obj/range.d.ts +20 -20
- package/ts/inputs/obj/section.d.ts +31 -31
- package/ts/inputs/obj/select.d.ts +9 -9
- package/ts/inputs/obj/text.d.ts +18 -18
- package/ts/inputs/obj/textarea.d.ts +5 -5
- package/ts/inputs/obj/upload_box.d.ts +18 -18
- package/ts/inputs/scripts/index.d.ts +2 -2
- package/ts/inputs/scripts/resolve.d.ts +7 -7
- package/ts/inputs/scripts/upload_box.d.ts +8 -8
- package/ts/settings/components/body.d.ts +3 -3
- package/ts/settings/components/index.d.ts +1 -1
- package/ts/settings/components/prop_types/body.d.ts +8 -8
- package/ts/settings/components/prop_types/index.d.ts +1 -1
- package/ts/settings/data/back_up.d.ts +17 -17
- package/ts/settings/data/index.d.ts +2 -2
- package/ts/settings/data/sections.d.ts +43 -43
- package/ts/settings/developer_mode/data/index.d.ts +1 -1
- package/ts/settings/developer_mode/data/main.d.ts +13 -13
- package/ts/settings/init.d.ts +1 -1
- package/ts/settings/internal.d.ts +8 -8
- package/ts/settings/optional_permissions/data/index.d.ts +1 -1
- package/ts/settings/optional_permissions/data/main.d.ts +11 -11
- package/ts/settings/optional_permissions/interfaces/index.d.ts +1 -1
- package/ts/settings/optional_permissions/interfaces/optional_permission_checkbox_dict.d.ts +3 -3
- package/ts/settings/scripts/index.d.ts +1 -1
- package/ts/settings/scripts/theme.d.ts +12 -12
- package/ts/shared/app.d.ts +25 -25
- package/ts/shared/app_ext_globals.d.ts +1 -6
- package/ts/shared/app_version/components/body.d.ts +2 -2
- package/ts/shared/app_version/components/index.d.ts +1 -1
- package/ts/shared/css_vars/scripts/index.d.ts +1 -1
- package/ts/shared/css_vars/scripts/main.d.ts +18 -18
- package/ts/shared/data/data/index.d.ts +1 -1
- package/ts/shared/data/data/main.d.ts +1 -4
- package/ts/shared/data/interfaces/index.d.ts +1 -1
- package/ts/shared/data/interfaces/val.d.ts +2 -2
- package/ts/shared/ext.d.ts +28 -30
- package/ts/shared/functions.d.ts +3 -3
- package/ts/shared/globals.d.ts +1 -4
- package/ts/shared/header/scripts/index.d.ts +1 -0
- package/ts/{announcement/scripts/header.d.ts → shared/header/scripts/main.d.ts} +6 -6
- package/ts/shared/init.d.ts +1 -1
- package/ts/shared/internal.d.ts +40 -39
- package/ts/shared/loading_screen/components/body.d.ts +3 -3
- package/ts/shared/loading_screen/components/index.d.ts +1 -1
- package/ts/shared/loading_screen/components/prop_types/body.d.ts +5 -5
- package/ts/shared/loading_screen/components/prop_types/index.d.ts +1 -1
- package/ts/shared/loading_screen/data/index.d.ts +1 -1
- package/ts/shared/loading_screen/data/main.d.ts +12 -12
- package/ts/shared/loading_screen/scripts/index.d.ts +2 -2
- package/ts/shared/loading_screen/scripts/roots.d.ts +11 -11
- package/ts/shared/loading_screen/scripts/tr.d.ts +8 -8
- package/ts/shared/no_tr/scripts/index.d.ts +1 -1
- package/ts/shared/no_tr/scripts/main.d.ts +12 -12
- package/ts/shared/offers/components/body.d.ts +3 -3
- package/ts/shared/offers/components/counter.d.ts +2 -2
- package/ts/shared/offers/components/index.d.ts +6 -6
- package/ts/shared/offers/components/next_offer_btn.d.ts +2 -2
- package/ts/shared/offers/components/offer.d.ts +3 -3
- package/ts/shared/offers/components/previous_offer_btn.d.ts +2 -2
- package/ts/shared/offers/components/prop_types/body.d.ts +5 -5
- package/ts/shared/offers/components/prop_types/index.d.ts +2 -2
- package/ts/shared/offers/components/prop_types/offer.d.ts +4 -4
- package/ts/shared/offers/components/top_bar.d.ts +2 -2
- package/ts/shared/offers/data/index.d.ts +1 -1
- package/ts/shared/offers/data/main.d.ts +22 -22
- package/ts/shared/offers/interfaces/index.d.ts +1 -1
- package/ts/shared/offers/interfaces/offer_banner_type.d.ts +1 -1
- package/ts/shared/offers/obj/index.d.ts +1 -1
- package/ts/shared/offers/obj/offer.d.ts +12 -10
- package/ts/shared/offers/scripts/index.d.ts +1 -1
- package/ts/shared/offers/scripts/main.d.ts +8 -8
- package/ts/shared/schema/data/index.d.ts +1 -1
- package/ts/shared/schema/data/main.d.ts +12 -12
- package/ts/shared/schema/obj/index.d.ts +1 -1
- package/ts/shared/schema/obj/transform_item.d.ts +7 -7
- package/ts/shared/service_worker/scripts/index.d.ts +1 -1
- package/ts/shared/service_worker/scripts/main.d.ts +9 -9
- package/ts/shared/settings/data/index.d.ts +1 -1
- package/ts/shared/settings/data/main.d.ts +15 -15
- package/ts/shared/svg.d.ts +9 -9
- package/ts/shared/t.d.ts +36 -36
- package/ts/shared/tab_index/interfaces/index.d.ts +1 -1
- package/ts/shared/tab_index/interfaces/set_Input_type_event.d.ts +2 -2
- package/ts/shared/tab_index/scripts/index.d.ts +1 -1
- package/ts/shared/tab_index/scripts/main.d.ts +18 -18
- package/ts/shared/theme/scripts/index.d.ts +1 -1
- package/ts/shared/theme/scripts/main.d.ts +11 -11
- package/ts/shared/title/scripts/index.d.ts +1 -1
- package/ts/shared/title/scripts/main.d.ts +6 -6
- package/ts/shared/tr/components/base_tr.d.ts +9 -9
- package/ts/shared/tr/components/index.d.ts +1 -1
- package/ts/shared/tr/components/prop_types/base_tr.d.ts +13 -13
- package/ts/shared/tr/components/prop_types/index.d.ts +1 -1
- package/ts/shared/tr/data/index.d.ts +1 -1
- package/ts/shared/tr/data/transition.d.ts +23 -23
- package/ts/shared/tr/interfaces/index.d.ts +1 -1
- package/ts/shared/tr/interfaces/transitions.d.ts +2 -2
- package/ts/shared/tr/obj/index.d.ts +1 -1
- package/ts/shared/tr/obj/transition.d.ts +8 -8
- package/ts/shared/utils/scripts/index.d.ts +1 -1
- package/ts/shared/utils/scripts/main.d.ts +11 -11
- package/ts/shared/vars.d.ts +2 -2
- package/ts/shared/viewport/scripts/index.d.ts +1 -1
- package/ts/shared/viewport/scripts/main.d.ts +8 -8
- package/ts/shared/x.d.ts +56 -69
- package/chunk-main-130f654b.js +0 -9
- package/chunk-main-35e603b6.js +0 -1
- package/chunk-main-aca0d1f6.js +0 -1
- package/chunk-pickr.min-81c0b025.js +0 -1
- package/fonts/noto_sans.woff2 +0 -0
- package/ts/announcement/components/prop_types/body.d.ts +0 -4
- package/ts/announcement/components/prop_types/index.d.ts +0 -1
package/package.json
CHANGED
package/scss/shared/inputs.scss
CHANGED
|
@@ -56,6 +56,10 @@ input[type='file'] {
|
|
|
56
56
|
flex-grow: 1;
|
|
57
57
|
border-radius: 0;
|
|
58
58
|
box-sizing: border-box;
|
|
59
|
+
|
|
60
|
+
&.text {
|
|
61
|
+
line-height: $input_height;
|
|
62
|
+
}
|
|
59
63
|
}
|
|
60
64
|
|
|
61
65
|
.input_w_and_help_btn {
|
|
@@ -66,7 +70,6 @@ input[type='file'] {
|
|
|
66
70
|
.input_w {
|
|
67
71
|
position: relative;
|
|
68
72
|
display: flex;
|
|
69
|
-
flex-shrink: 0;
|
|
70
73
|
box-sizing: border-box;
|
|
71
74
|
|
|
72
75
|
&.text,
|
package/scss/shared/mixins.scss
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
$border_width_thick: 2px;
|
|
2
2
|
|
|
3
|
+
@mixin hidden {
|
|
4
|
+
position: fixed !important;
|
|
5
|
+
visibility: hidden !important;
|
|
6
|
+
top: -99999px !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
3
9
|
@mixin full_dims {
|
|
4
10
|
width: 100%;
|
|
5
11
|
height: 100%;
|
|
@@ -32,7 +38,8 @@ $border_width_thick: 2px;
|
|
|
32
38
|
transform: translate(-50%, -50%);
|
|
33
39
|
}
|
|
34
40
|
|
|
35
|
-
@mixin center_horizontal_variable_width {
|
|
41
|
+
@mixin center_horizontal_variable_width {
|
|
42
|
+
// max-width should be set
|
|
36
43
|
left: calc(-50vw + 50%);
|
|
37
44
|
right: calc(-50vw + 50%);
|
|
38
45
|
margin-left: auto;
|
|
@@ -58,7 +65,9 @@ $border_width_thick: 2px;
|
|
|
58
65
|
outline: none;
|
|
59
66
|
}
|
|
60
67
|
|
|
61
|
-
$box_shadow_for_mixin:
|
|
68
|
+
$box_shadow_for_mixin:
|
|
69
|
+
rgb(0 0 0 / 30%) 0 0 2px,
|
|
70
|
+
rgb(0 0 0 / 30%) 0 4px 8px;
|
|
62
71
|
|
|
63
72
|
@mixin box_shadow {
|
|
64
73
|
box-shadow: $box_shadow_for_mixin;
|
|
@@ -111,11 +120,6 @@ $box_shadow_for_mixin: rgb(0 0 0 / 30%) 0 0 2px, rgb(0 0 0 / 30%) 0 4px 8px;
|
|
|
111
120
|
border: $border_width solid $blue;
|
|
112
121
|
}
|
|
113
122
|
|
|
114
|
-
@mixin border_bottom {
|
|
115
|
-
border-bottom-width: $border_width;
|
|
116
|
-
border-bottom-style: solid;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
123
|
@mixin outline_solid {
|
|
120
124
|
outline-width: $border_width;
|
|
121
125
|
outline-style: solid;
|
package/scss/shared/mods.scss
CHANGED
package/scss/shared/selects.scss
CHANGED
|
@@ -6,9 +6,15 @@ $separator_offset: 7px;
|
|
|
6
6
|
-webkit-appearance: none;
|
|
7
7
|
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
8
8
|
-moz-appearance: none;
|
|
9
|
-
background-position:
|
|
9
|
+
background-position:
|
|
10
|
+
calc(100% - 16px) $arrow_offset,
|
|
11
|
+
calc(100% - 10px) $arrow_offset,
|
|
10
12
|
calc(100% - 33px) $separator_offset;
|
|
11
|
-
background-size:
|
|
13
|
+
background-size:
|
|
14
|
+
6px 6px,
|
|
15
|
+
6px 6px,
|
|
16
|
+
1px 14px;
|
|
12
17
|
background-repeat: no-repeat;
|
|
13
18
|
padding-right: 44px;
|
|
19
|
+
line-height: $input_height; /* Fix text being cut from the bottom of selects. */
|
|
14
20
|
}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
$theme_color_jqv: rgb(255 255 255 / 0.1%);
|
|
2
|
-
|
|
3
2
|
$htc: white;
|
|
4
3
|
$tbn: $glass_color;
|
|
5
4
|
$gaq: #efefef;
|
|
6
5
|
/* stylelint-disable-next-line max-line-length */
|
|
7
|
-
$gqb:
|
|
6
|
+
$gqb:
|
|
7
|
+
linear-gradient(45deg, rgb(39 61 213) 0%, rgb(225 5 34 / 0%) 70%) repeat scroll 0% 0%,
|
|
8
|
+
linear-gradient(135deg, rgb(12 255 7) 10%, rgb(49 5 209 / 0%) 80%) repeat scroll 0% 0%,
|
|
9
|
+
linear-gradient(190deg, rgb(135 23 255) 10%, rgb(10 219 216 / 0%) 80%) repeat scroll 0% 0%,
|
|
10
|
+
rgb(0 0 0 / 0%) linear-gradient(315deg, rgb(51 205 196) 100%, rgb(9 245 5 / 0%) 70%) repeat
|
|
11
|
+
scroll 0% 0%;
|
|
8
12
|
$hfb: transparent;
|
|
9
13
|
$gvb: rgb(255 255 255 / 36%);
|
|
10
14
|
$npw: rgb(255 255 255 / 20%);
|
|
@@ -23,16 +27,21 @@ $nep: #90efff;
|
|
|
23
27
|
$htm: #ffa96c;
|
|
24
28
|
$qgp: #28dd57;
|
|
25
29
|
$hyv: #66ff8e;
|
|
26
|
-
$ycp: #
|
|
30
|
+
$ycp: #000da1;
|
|
27
31
|
$iub: #2e8cff;
|
|
28
|
-
$cop: #
|
|
32
|
+
$cop: #303f00;
|
|
29
33
|
$yun: #14bf0a;
|
|
30
|
-
$ptn: #
|
|
34
|
+
$ptn: #62008f;
|
|
31
35
|
$dwk: #d046e9;
|
|
32
|
-
$uzf: #
|
|
36
|
+
$uzf: #572b00;
|
|
33
37
|
$hap: #f17442;
|
|
34
38
|
$rqb: #e7121c;
|
|
39
|
+
$thm: #6f0005;
|
|
35
40
|
$suc: #d0111a;
|
|
41
|
+
$pxd: #0014ff;
|
|
42
|
+
$ksu: #be1;
|
|
43
|
+
$upd: #ae00ff;
|
|
44
|
+
$fpw: #ff8f1f;
|
|
36
45
|
$dfp: #0cbea4;
|
|
37
46
|
$nqp: rgb(57 124 249 / 99%);
|
|
38
47
|
$hgb: rgb(255 77 85 / 99%);
|
|
@@ -10,7 +10,6 @@ $theme_color_bvc: #b938c7;
|
|
|
10
10
|
$theme_color_wnc: #ce7209;
|
|
11
11
|
$theme_color_yhn: #bb141c;
|
|
12
12
|
$theme_color_gsl: rgb(174 35 43 / 99%);
|
|
13
|
-
|
|
14
13
|
$htc: $theme_color_ynq;
|
|
15
14
|
$tbn: $theme_color_ynq;
|
|
16
15
|
$gaq: $theme_color_ytb;
|
|
@@ -42,7 +41,12 @@ $dwk: $theme_color_bvc;
|
|
|
42
41
|
$uzf: $theme_color_wnc;
|
|
43
42
|
$hap: $theme_color_wnc;
|
|
44
43
|
$rqb: $theme_color_yhn;
|
|
44
|
+
$thm: $theme_color_yhn;
|
|
45
45
|
$suc: $theme_color_yhn;
|
|
46
|
+
$pxd: $theme_color_kxn;
|
|
47
|
+
$ksu: $theme_color_tjn;
|
|
48
|
+
$upd: $theme_color_bvc;
|
|
49
|
+
$fpw: $theme_color_wnc;
|
|
46
50
|
$dfp: #29394d;
|
|
47
51
|
$nqp: $theme_color_gsl;
|
|
48
52
|
$hgb: $theme_color_gsl;
|
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
$theme_color_jqv: rgb(255 255 255 / 0.1%);
|
|
2
|
-
|
|
2
|
+
$theme_color_udj: #19f4ff;
|
|
3
|
+
$theme_color_kvo: #4bff1f;
|
|
4
|
+
$theme_color_ftp: #fbff12;
|
|
5
|
+
$theme_color_oyq: #ff8400;
|
|
3
6
|
$htc: white;
|
|
4
7
|
$tbn: $glass_color;
|
|
5
8
|
$gaq: #efefef;
|
|
6
9
|
/* stylelint-disable-next-line max-line-length */
|
|
7
|
-
$gqb:
|
|
10
|
+
$gqb:
|
|
11
|
+
linear-gradient(45deg, rgb(52 15 189) 0%, rgb(225 5 34 / 0%) 70%) repeat scroll 0% 0%,
|
|
12
|
+
linear-gradient(135deg, rgb(241 22 168) 10%, rgb(49 5 209 / 0%) 80%) repeat scroll 0% 0%,
|
|
13
|
+
linear-gradient(190deg, rgb(26 211 208) 10%, rgb(10 219 216 / 0%) 80%) repeat scroll 0% 0%,
|
|
14
|
+
rgb(0 0 0 / 0%) linear-gradient(315deg, rgb(163 34 203) 100%, rgb(9 245 5 / 0%) 70%) repeat
|
|
15
|
+
scroll 0% 0%;
|
|
8
16
|
$hfb: transparent;
|
|
9
17
|
$gvb: rgb(255 255 255 / 36%);
|
|
10
18
|
$npw: rgb(255 255 255 / 20%);
|
|
@@ -23,16 +31,21 @@ $nep: #90efff;
|
|
|
23
31
|
$htm: #ffa96c;
|
|
24
32
|
$qgp: #3ea559;
|
|
25
33
|
$hyv: #66ff8e;
|
|
26
|
-
$ycp:
|
|
34
|
+
$ycp: $theme_color_udj;
|
|
27
35
|
$iub: #2e8cff;
|
|
28
|
-
$cop:
|
|
36
|
+
$cop: $theme_color_kvo;
|
|
29
37
|
$yun: #14bf0a;
|
|
30
|
-
$ptn:
|
|
38
|
+
$ptn: $theme_color_ftp;
|
|
31
39
|
$dwk: #d046e9;
|
|
32
|
-
$uzf:
|
|
40
|
+
$uzf: $theme_color_oyq;
|
|
33
41
|
$hap: #f17442;
|
|
34
42
|
$rqb: #ff471a;
|
|
43
|
+
$thm: #ffa993;
|
|
35
44
|
$suc: #d0111a;
|
|
45
|
+
$pxd: $theme_color_udj;
|
|
46
|
+
$ksu: $theme_color_kvo;
|
|
47
|
+
$upd: $theme_color_ftp;
|
|
48
|
+
$fpw: $theme_color_oyq;
|
|
36
49
|
$dfp: #842fa9;
|
|
37
50
|
$nqp: rgb(244 96 62 / 99%);
|
|
38
51
|
$hgb: rgb(255 77 85 / 99%);
|
|
@@ -10,7 +10,6 @@ $theme_color_bvc: #d046e9;
|
|
|
10
10
|
$theme_color_wnc: #f17442;
|
|
11
11
|
$theme_color_yhn: #d0111a;
|
|
12
12
|
$theme_color_gsl: rgb(255 77 85 / 99%);
|
|
13
|
-
|
|
14
13
|
$htc: $theme_color_ynq;
|
|
15
14
|
$tbn: $theme_color_ynq;
|
|
16
15
|
$gaq: $theme_color_ytb;
|
|
@@ -42,7 +41,12 @@ $dwk: $theme_color_bvc;
|
|
|
42
41
|
$uzf: $theme_color_wnc;
|
|
43
42
|
$hap: $theme_color_wnc;
|
|
44
43
|
$rqb: $theme_color_yhn;
|
|
44
|
+
$thm: $theme_color_yhn;
|
|
45
45
|
$suc: $theme_color_yhn;
|
|
46
|
+
$pxd: $theme_color_kxn;
|
|
47
|
+
$ksu: $theme_color_tjn;
|
|
48
|
+
$upd: $theme_color_bvc;
|
|
49
|
+
$fpw: $theme_color_wnc;
|
|
46
50
|
$dfp: #a2d4ff;
|
|
47
51
|
$nqp: $theme_color_gsl;
|
|
48
52
|
$hgb: $theme_color_gsl;
|
|
@@ -10,7 +10,6 @@ $theme_color_bvc: #af22bf;
|
|
|
10
10
|
$theme_color_wnc: #c96b00;
|
|
11
11
|
$theme_color_yhn: #b1131a;
|
|
12
12
|
$theme_color_gsl: rgb(120 30 34 / 99%);
|
|
13
|
-
|
|
14
13
|
$htc: $theme_color_ynq;
|
|
15
14
|
$tbn: $theme_color_ynq;
|
|
16
15
|
$gaq: $theme_color_ytb;
|
|
@@ -42,7 +41,12 @@ $dwk: $theme_color_bvc;
|
|
|
42
41
|
$uzf: $theme_color_wnc;
|
|
43
42
|
$hap: $theme_color_wnc;
|
|
44
43
|
$rqb: $theme_color_yhn;
|
|
44
|
+
$thm: $theme_color_yhn;
|
|
45
45
|
$suc: $theme_color_yhn;
|
|
46
|
+
$pxd: $theme_color_kxn;
|
|
47
|
+
$ksu: $theme_color_tjn;
|
|
48
|
+
$upd: $theme_color_bvc;
|
|
49
|
+
$fpw: $theme_color_wnc;
|
|
46
50
|
$dfp: #0f1721;
|
|
47
51
|
$nqp: $theme_color_gsl;
|
|
48
52
|
$hgb: $theme_color_gsl;
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.link {
|
|
40
|
-
@include link_colors_standard
|
|
40
|
+
@include link_colors_standard;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.link_btn {
|
|
44
|
-
@include link_colors_standard
|
|
44
|
+
@include link_colors_standard;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
textarea {
|
|
@@ -110,6 +110,10 @@ hr {
|
|
|
110
110
|
background-color: $hyn;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
+
.dependencies hr {
|
|
114
|
+
background-color: $lpe;
|
|
115
|
+
}
|
|
116
|
+
|
|
113
117
|
.btn_options {
|
|
114
118
|
background-color: $npw;
|
|
115
119
|
border-color: $hyn;
|
|
@@ -144,11 +148,11 @@ hr {
|
|
|
144
148
|
background-color: $hfb;
|
|
145
149
|
|
|
146
150
|
&.selected::before {
|
|
147
|
-
background-color: $
|
|
151
|
+
background-color: $pxd;
|
|
148
152
|
}
|
|
149
153
|
|
|
150
154
|
&:not(.selected):hover::before {
|
|
151
|
-
background-color: $
|
|
155
|
+
background-color: $ksu;
|
|
152
156
|
}
|
|
153
157
|
}
|
|
154
158
|
}
|
|
@@ -243,11 +247,13 @@ hr {
|
|
|
243
247
|
&.loading {
|
|
244
248
|
background-color: transparent;
|
|
245
249
|
/* stylelint-disable-next-line function-parentheses-newline-inside */
|
|
246
|
-
background-image: repeating-linear-gradient(
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
250
|
+
background-image: repeating-linear-gradient(
|
|
251
|
+
-45deg,
|
|
252
|
+
$npw,
|
|
253
|
+
$npw 14px,
|
|
254
|
+
$qgp 14px,
|
|
255
|
+
$qgp 28px
|
|
256
|
+
); /* stylelint-disable-line function-parentheses-newline-inside */
|
|
251
257
|
}
|
|
252
258
|
}
|
|
253
259
|
}
|
|
@@ -293,7 +299,7 @@ hr {
|
|
|
293
299
|
}
|
|
294
300
|
|
|
295
301
|
.input_error {
|
|
296
|
-
color: $
|
|
302
|
+
color: $thm;
|
|
297
303
|
}
|
|
298
304
|
|
|
299
305
|
.ext_version {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
.input_item {
|
|
4
4
|
.input_w {
|
|
5
5
|
&.is_in_focus_state:not(.select)::before {
|
|
6
|
-
outline-color: $
|
|
6
|
+
outline-color: $ksu;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
&.is_in_warn_state:not(.select)::before,
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.visualization_w.opened .visualization {
|
|
16
|
-
outline-color: $
|
|
16
|
+
outline-color: $pxd;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.palette_visualization_w.opened .palette_visualization,
|
|
@@ -33,7 +33,7 @@ body.keyboard .btn.text:focus,
|
|
|
33
33
|
.keyboard .input_item.range .input.is_in_focus_state,
|
|
34
34
|
.keyboard .input_item .visualization_w .visualization:focus,
|
|
35
35
|
.keyboard .btn_options .btn_option:focus {
|
|
36
|
-
outline-color: $
|
|
36
|
+
outline-color: $upd;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.keyboard .input_item.color .btn.text:focus {
|
|
@@ -60,5 +60,7 @@ body.keyboard .btn.text:focus,
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
.keyboard .section_btn:not(.selected):focus {
|
|
63
|
-
box-shadow:
|
|
63
|
+
box-shadow:
|
|
64
|
+
inset 0 0 0 2px $upd,
|
|
65
|
+
inset -2px 0 0 0 $upd;
|
|
64
66
|
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
$upload_box_text_z_index: 2;
|
|
2
2
|
$upload_box_loading_animation_size: 40px;
|
|
3
|
-
|
|
4
3
|
$backgrond_margin: 2px;
|
|
5
4
|
$backgrond_dim_offset: 2px * 2;
|
|
6
|
-
|
|
7
5
|
$status_msg_offset: 5px;
|
|
8
6
|
|
|
9
7
|
.input_item {
|
|
@@ -64,7 +62,8 @@ $status_msg_offset: 5px;
|
|
|
64
62
|
|
|
65
63
|
&.loading {
|
|
66
64
|
animation: move 450ms linear infinite;
|
|
67
|
-
background-size: $upload_box_loading_animation_size
|
|
65
|
+
background-size: $upload_box_loading_animation_size
|
|
66
|
+
$upload_box_loading_animation_size;
|
|
68
67
|
}
|
|
69
68
|
}
|
|
70
69
|
}
|
package/scss/shared/vars.scss
CHANGED
|
@@ -18,9 +18,15 @@ $black: #212121;
|
|
|
18
18
|
$yellow: #fbff75;
|
|
19
19
|
$light_orange: #fff7c7;
|
|
20
20
|
$blue: #3892ff;
|
|
21
|
-
$black_shadow:
|
|
21
|
+
$black_shadow:
|
|
22
|
+
rgb(0 0 0 / 30%) 0 0 30px,
|
|
23
|
+
rgb(0 0 0 / 30%) 0 4px 8px;
|
|
22
24
|
$black_shadow_2: 0 20px 30px rgb(0 0 0 / 20%);
|
|
23
|
-
$blue_neon_dark:
|
|
24
|
-
|
|
25
|
+
$blue_neon_dark:
|
|
26
|
+
rgb(0 115 255 / 100%) 0 0 33px,
|
|
27
|
+
rgb(255 255 255 / 40%) 0 0 10px;
|
|
28
|
+
$blue_neon_very_dark:
|
|
29
|
+
rgb(0 102 255 / 85%) 0 0 36px,
|
|
30
|
+
rgb(255 255 255 / 40%) 0 0 10px;
|
|
25
31
|
$glass_color: rgb(255 255 255 / 20%);
|
|
26
32
|
$glass_blur: blur(8px);
|
package/settings.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export { c_settings, d_settings, d_developer_mode, d_optional_permissions, s_settings, i_optional_permissions, } from
|
|
1
|
+
import './ts/shared/internal';
|
|
2
|
+
export { c_settings, d_settings, d_developer_mode, d_optional_permissions, s_settings, i_optional_permissions, } from './ts/settings/internal';
|
package/settings.js
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2024
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
"use strict";var main=require("./chunk-main.js");require("react");var main$1=require("./chunk-main3.js");require("react-dom");var index$5=Object.freeze({__proto__:null,Body:main.Body$2}),index$4=Object.freeze({__proto__:null,BackUp:main.BackUp,Sections:main.Sections}),index$3=Object.freeze({__proto__:null,Main:main.Main$5});var index$2=Object.freeze({__proto__:null,Main:class{static i(){return this.i0||(this.i0=new this)}constructor(){this.set_permission=({name:name,optional_permission_checkbox_dict:optional_permission_checkbox_dict})=>err_async((()=>main.__awaiter(this,void 0,void 0,(function*(){const permissions=optional_permission_checkbox_dict[name];if(yield we.permissions.contains(permissions)){(yield we.permissions.remove(permissions))&&this.set_checkbox_val({name:name,val:!1})}else{(yield we.permissions.request(permissions))&&this.set_checkbox_val({name:name,val:!0})}}))),"shr_1221"),this.set_checkbox_val=({name:name,val:val})=>err((()=>{data.ui[name]=val}),"shr_1222"),main.makeObservable(this,{set_checkbox_val:main.action})}}});var index$1=Object.freeze({__proto__:null,Theme:class{static i(){return this.i0||(this.i0=new this)}constructor(){this.change=({input:input,name:name,additional_theme_callback:additional_theme_callback})=>err((()=>{"options_page_theme"===input.name&&main$1.Main$1.i().set({name:name,additional_theme_callback:additional_theme_callback})}),"shr_1088")}}}),index=Object.freeze({__proto__:null});exports.c_settings=index$5,exports.d_developer_mode=index$3,exports.d_optional_permissions=index$2,exports.d_settings=index$4,exports.i_optional_permissions=index,exports.s_settings=index$1;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
3
|
-
export declare const Body: React.FunctionComponent<p_announcement.Body>;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const Body: React.FunctionComponent;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from '../components/body';
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export * as c_announcement from
|
|
2
|
-
export * as s_announcement from
|
|
3
|
-
export * as p_announcement from "./components/prop_types";
|
|
1
|
+
export * as c_announcement from './components';
|
|
2
|
+
export * as s_announcement from './scripts';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare class Display {
|
|
2
|
-
private static i0;
|
|
3
|
-
static i(): Display;
|
|
4
|
-
private constructor();
|
|
5
|
-
display_announcement: () => Promise<void>;
|
|
6
|
-
}
|
|
1
|
+
export declare class Display {
|
|
2
|
+
private static i0;
|
|
3
|
+
static i(): Display;
|
|
4
|
+
private constructor();
|
|
5
|
+
display_announcement: () => Promise<void>;
|
|
6
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from "./header";
|
|
1
|
+
export * from '../scripts/display';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../components/body';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../scripts/dependencies';
|