x4js 2.0.12 → 2.0.14
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/.vscode/launch.json +14 -0
- package/README.md +20 -15
- package/{lib/src/demo → demo}/assets/radio.svg +3 -3
- package/{lib/src/demo → demo}/index.html +11 -11
- package/{lib/src/demo → demo}/main.scss +23 -21
- package/{lib/src/demo/main.tsx → demo/main.ts} +324 -323
- package/demo/package.json +26 -0
- package/demo/scss.d.ts +4 -0
- package/demo/svg.d.ts +1 -0
- package/demo/tsconfig.json +14 -0
- package/lib/README.txt +20 -15
- package/lib/cjs/x4.css +1 -1
- package/lib/cjs/x4.js +2 -1
- package/lib/esm/x4.css +1 -1
- package/lib/esm/x4.mjs +2 -1
- package/lib/src/components/base.scss +25 -26
- package/lib/src/components/boxes/boxes.module.scss +54 -37
- package/lib/src/components/boxes/boxes.ts +278 -125
- package/lib/src/components/breadcrumb/breadcrumb.scss +56 -0
- package/lib/src/components/breadcrumb/breadcrumb.ts +93 -0
- package/lib/src/components/breadcrumb/chevron-right.svg +1 -0
- package/lib/src/components/btngroup/btngroup.module.scss +40 -28
- package/lib/src/components/btngroup/btngroup.ts +152 -101
- package/lib/src/components/button/button.module.scss +172 -153
- package/lib/src/components/button/button.ts +185 -117
- package/lib/src/components/calendar/calendar.module.scss +162 -162
- package/lib/src/components/calendar/calendar.ts +326 -325
- package/lib/src/components/canvas/canvas.module.scss +25 -0
- package/lib/src/components/canvas/canvas.ts +189 -0
- package/lib/src/components/canvas/canvas_ex.ts +269 -0
- package/lib/src/components/checkbox/check.svg +3 -3
- package/lib/src/components/checkbox/checkbox.module.scss +141 -141
- package/lib/src/components/checkbox/checkbox.ts +139 -124
- package/lib/src/components/colorinput/colorinput.module.scss +64 -64
- package/lib/src/components/colorinput/colorinput.ts +90 -87
- package/lib/src/components/colorpicker/colorpicker.module.scss +132 -132
- package/lib/src/components/colorpicker/colorpicker.ts +481 -476
- package/lib/src/components/combobox/combobox.module.scss +132 -120
- package/lib/src/components/combobox/combobox.ts +275 -190
- package/lib/src/components/combobox/updown.svg +3 -3
- package/lib/src/components/components.ts +41 -0
- package/lib/src/components/dialog/dialog.module.scss +105 -71
- package/lib/src/components/dialog/dialog.ts +212 -92
- package/lib/src/components/filedrop/cloud-arrow-up.svg +1 -0
- package/lib/src/components/filedrop/filedrop.module.scss +70 -0
- package/lib/src/components/filedrop/filedrop.ts +131 -0
- package/lib/src/components/form/form.module.scss +38 -34
- package/lib/src/components/form/form.ts +172 -36
- package/lib/src/components/gridview/arrow-down-light.svg +1 -0
- package/lib/src/components/gridview/arrow-up-light.svg +1 -0
- package/lib/src/components/gridview/gridview.module.scss +324 -0
- package/lib/src/components/gridview/gridview.ts +1175 -0
- package/lib/src/components/header/header.module.scss +39 -39
- package/lib/src/components/header/header.ts +129 -123
- package/lib/src/components/icon/icon.module.scss +30 -30
- package/lib/src/components/icon/icon.ts +139 -134
- package/lib/src/components/image/image.module.scss +27 -20
- package/lib/src/components/image/image.ts +168 -67
- package/lib/src/components/input/input.module.scss +74 -69
- package/lib/src/components/input/input.ts +398 -274
- package/lib/src/components/keyboard/arrow-up.svg +1 -0
- package/lib/src/components/keyboard/delete-left.svg +1 -0
- package/lib/src/components/keyboard/eye-slash.svg +1 -0
- package/lib/src/components/keyboard/keyboard.module.scss +134 -0
- package/lib/src/components/keyboard/keyboard.ts +525 -0
- package/lib/src/components/label/label.module.scss +76 -52
- package/lib/src/components/label/label.ts +97 -55
- package/lib/src/components/link/link.ts +81 -0
- package/lib/src/components/listbox/listbox.module.scss +161 -103
- package/lib/src/components/listbox/listbox.ts +539 -427
- package/lib/src/components/menu/menu.module.scss +116 -107
- package/lib/src/components/menu/menu.ts +174 -168
- package/lib/src/components/messages/messages.module.scss +92 -47
- package/lib/src/components/messages/messages.ts +215 -64
- package/lib/src/components/messages/pen-field.svg +1 -0
- package/lib/src/components/normalize.scss +391 -386
- package/lib/src/components/notification/notification.module.scss +83 -81
- package/lib/src/components/notification/notification.ts +107 -108
- package/lib/src/components/panel/panel.module.scss +59 -47
- package/lib/src/components/panel/panel.ts +57 -56
- package/lib/src/components/popup/popup.module.scss +45 -43
- package/lib/src/components/popup/popup.ts +440 -395
- package/lib/src/components/progress/progress.module.scss +56 -56
- package/lib/src/components/progress/progress.ts +43 -42
- package/lib/src/components/propgrid/folder-closed.svg +1 -0
- package/lib/src/components/propgrid/folder-open.svg +1 -0
- package/lib/src/components/propgrid/progrid.module.scss +108 -0
- package/lib/src/components/propgrid/propgrid.ts +271 -0
- package/lib/src/components/propgrid/updown.svg +4 -0
- package/lib/src/components/radio/radio.module.scss +147 -0
- package/lib/src/components/radio/radio.svg +4 -0
- package/lib/src/components/radio/radio.ts +142 -0
- package/lib/src/components/rating/rating.module.scss +22 -22
- package/lib/src/components/rating/rating.ts +131 -125
- package/lib/src/components/select/select.module.scss +9 -0
- package/lib/src/components/select/select.ts +134 -0
- package/lib/src/components/shared.scss +137 -76
- package/lib/src/components/sizers/sizer.module.scss +89 -89
- package/lib/src/components/sizers/sizer.ts +130 -119
- package/lib/src/components/slider/slider.module.scss +117 -70
- package/lib/src/components/slider/slider.ts +197 -142
- package/lib/src/components/switch/switch.module.scss +126 -126
- package/lib/src/components/switch/switch.ts +61 -55
- package/lib/src/components/tabs/tabs.module.scss +45 -46
- package/lib/src/components/tabs/tabs.ts +199 -157
- package/lib/src/components/textarea/textarea.module.scss +63 -59
- package/lib/src/components/textarea/textarea.ts +125 -54
- package/lib/src/components/textedit/textedit.module.scss +115 -113
- package/lib/src/components/textedit/textedit.ts +110 -82
- package/lib/src/components/themes.scss +88 -77
- package/lib/src/components/tickline/tickline.module.scss +26 -0
- package/lib/src/components/tickline/tickline.ts +82 -0
- package/lib/src/components/tooltips/comments-question.svg +1 -0
- package/lib/src/components/tooltips/tooltips.scss +71 -50
- package/lib/src/components/tooltips/tooltips.ts +108 -102
- package/lib/src/components/treeview/treeview.module.scss +184 -115
- package/lib/src/components/treeview/treeview.ts +445 -403
- package/lib/src/components/viewport/viewport.module.scss +31 -24
- package/lib/src/components/viewport/viewport.ts +41 -38
- package/lib/src/core/component.ts +1072 -979
- package/lib/src/core/core_application.ts +264 -0
- package/lib/src/core/core_colors.ts +249 -249
- package/lib/src/core/core_data.ts +1309 -0
- package/lib/src/core/core_dom.ts +471 -471
- package/lib/src/core/core_dragdrop.ts +200 -200
- package/lib/src/core/core_element.ts +109 -97
- package/lib/src/core/core_events.ts +177 -149
- package/lib/src/core/core_i18n.ts +393 -377
- package/lib/src/core/core_react.ts +79 -0
- package/lib/src/core/core_router.ts +237 -221
- package/lib/src/core/core_styles.ts +214 -214
- package/lib/src/core/core_svg.ts +711 -550
- package/lib/src/core/core_tools.ts +906 -673
- package/lib/src/types/scss.d.ts +4 -4
- package/lib/src/types/x4react.d.ts +8 -8
- package/lib/src/x4.scss +18 -18
- package/lib/src/x4.ts +31 -62
- package/lib/src/x4tsx.d.ts +25 -0
- package/lib/styles/x4.css +1 -1
- package/lib/types/x4js.d.ts +853 -127
- package/package.json +5 -6
- package/scripts/build.mjs +378 -0
- package/scripts/prepack.mjs +346 -0
- package/src/components/base.scss +25 -0
- package/src/components/boxes/boxes.module.scss +54 -0
- package/src/components/boxes/boxes.ts +278 -0
- package/src/components/breadcrumb/breadcrumb.scss +56 -0
- package/src/components/breadcrumb/breadcrumb.ts +93 -0
- package/src/components/breadcrumb/chevron-right.svg +1 -0
- package/src/components/btngroup/btngroup.module.scss +41 -0
- package/src/components/btngroup/btngroup.ts +153 -0
- package/src/components/button/button.module.scss +173 -0
- package/src/components/button/button.ts +185 -0
- package/src/components/calendar/calendar-check-sharp-light.svg +1 -0
- package/src/components/calendar/calendar.module.scss +163 -0
- package/src/components/calendar/calendar.ts +327 -0
- package/src/components/calendar/chevron-left-sharp-light.svg +1 -0
- package/src/components/calendar/chevron-right-sharp-light.svg +1 -0
- package/src/components/canvas/canvas.module.scss +25 -0
- package/src/components/canvas/canvas.ts +189 -0
- package/src/components/canvas/canvas_ex.ts +269 -0
- package/src/components/checkbox/check.svg +4 -0
- package/src/components/checkbox/checkbox.module.scss +142 -0
- package/src/components/checkbox/checkbox.ts +140 -0
- package/src/components/colorinput/colorinput.module.scss +65 -0
- package/src/components/colorinput/colorinput.ts +91 -0
- package/src/components/colorinput/crosshairs-simple-sharp-light.svg +1 -0
- package/src/components/colorpicker/colorpicker.module.scss +133 -0
- package/src/components/colorpicker/colorpicker.ts +482 -0
- package/src/components/combobox/combobox.module.scss +133 -0
- package/src/components/combobox/combobox.ts +275 -0
- package/src/components/combobox/updown.svg +4 -0
- package/src/components/components.ts +41 -0
- package/src/components/dialog/dialog.module.scss +105 -0
- package/src/components/dialog/dialog.ts +212 -0
- package/src/components/dialog/xmark-sharp-light.svg +1 -0
- package/src/components/filedrop/cloud-arrow-up.svg +1 -0
- package/src/components/filedrop/filedrop.module.scss +70 -0
- package/src/components/filedrop/filedrop.ts +131 -0
- package/src/components/form/form.module.scss +38 -0
- package/src/components/form/form.ts +172 -0
- package/src/components/gridview/arrow-down-light.svg +1 -0
- package/src/components/gridview/arrow-up-light.svg +1 -0
- package/src/components/gridview/gridview.module.scss +324 -0
- package/src/components/gridview/gridview.ts +1175 -0
- package/src/components/header/header.module.scss +40 -0
- package/src/components/header/header.ts +130 -0
- package/src/components/icon/icon.module.scss +30 -0
- package/src/components/icon/icon.ts +139 -0
- package/src/components/image/image.module.scss +28 -0
- package/src/components/image/image.ts +168 -0
- package/src/components/input/input.module.scss +74 -0
- package/src/components/input/input.ts +398 -0
- package/src/components/keyboard/arrow-up.svg +1 -0
- package/src/components/keyboard/delete-left.svg +1 -0
- package/src/components/keyboard/eye-slash.svg +1 -0
- package/src/components/keyboard/keyboard.module.scss +134 -0
- package/src/components/keyboard/keyboard.ts +525 -0
- package/src/components/label/label.module.scss +76 -0
- package/src/components/label/label.ts +97 -0
- package/src/components/link/link.ts +81 -0
- package/src/components/listbox/listbox.module.scss +161 -0
- package/src/components/listbox/listbox.ts +539 -0
- package/src/components/menu/caret-right-solid.svg +1 -0
- package/src/components/menu/menu.module.scss +117 -0
- package/src/components/menu/menu.ts +174 -0
- package/src/components/messages/circle-exclamation.svg +1 -0
- package/src/components/messages/messages.module.scss +92 -0
- package/src/components/messages/messages.ts +215 -0
- package/src/components/messages/pen-field.svg +1 -0
- package/src/components/normalize.scss +391 -0
- package/src/components/notification/circle-check-solid.svg +1 -0
- package/src/components/notification/circle-exclamation-solid.svg +1 -0
- package/src/components/notification/circle-notch-light.svg +1 -0
- package/src/components/notification/notification.module.scss +84 -0
- package/src/components/notification/notification.ts +107 -0
- package/src/components/notification/xmark-sharp-light.svg +1 -0
- package/src/components/panel/panel.module.scss +60 -0
- package/src/components/panel/panel.ts +58 -0
- package/src/components/popup/popup.module.scss +45 -0
- package/src/components/popup/popup.ts +440 -0
- package/src/components/progress/progress.module.scss +57 -0
- package/src/components/progress/progress.ts +44 -0
- package/src/components/propgrid/folder-closed.svg +1 -0
- package/src/components/propgrid/folder-open.svg +1 -0
- package/src/components/propgrid/progrid.module.scss +108 -0
- package/src/components/propgrid/propgrid.ts +271 -0
- package/src/components/propgrid/updown.svg +4 -0
- package/src/components/radio/radio.module.scss +147 -0
- package/src/components/radio/radio.svg +4 -0
- package/src/components/radio/radio.ts +142 -0
- package/src/components/rating/rating.module.scss +23 -0
- package/src/components/rating/rating.ts +131 -0
- package/src/components/rating/star-sharp-light.svg +1 -0
- package/src/components/rating/star-sharp-solid.svg +1 -0
- package/src/components/select/select.module.scss +9 -0
- package/src/components/select/select.ts +134 -0
- package/src/components/shared.scss +137 -0
- package/src/components/sizers/sizer.module.scss +90 -0
- package/src/components/sizers/sizer.ts +131 -0
- package/src/components/slider/slider.module.scss +118 -0
- package/src/components/slider/slider.ts +198 -0
- package/src/components/switch/switch.module.scss +127 -0
- package/src/components/switch/switch.ts +62 -0
- package/src/components/tabs/tabs.module.scss +45 -0
- package/src/components/tabs/tabs.ts +199 -0
- package/src/components/textarea/textarea.module.scss +63 -0
- package/src/components/textarea/textarea.ts +125 -0
- package/src/components/textedit/textedit.module.scss +116 -0
- package/src/components/textedit/textedit.ts +110 -0
- package/src/components/themes.scss +88 -0
- package/src/components/tickline/tickline.module.scss +26 -0
- package/src/components/tickline/tickline.ts +82 -0
- package/src/components/tooltips/circle-info-sharp-light.svg +1 -0
- package/src/components/tooltips/comments-question.svg +1 -0
- package/src/components/tooltips/tooltips.scss +72 -0
- package/src/components/tooltips/tooltips.ts +109 -0
- package/src/components/treeview/chevron-down-light.svg +1 -0
- package/src/components/treeview/treeview.module.scss +185 -0
- package/src/components/treeview/treeview.ts +445 -0
- package/src/components/viewport/viewport.module.scss +32 -0
- package/src/components/viewport/viewport.ts +41 -0
- package/src/core/component.ts +1072 -0
- package/src/core/core_application.ts +264 -0
- package/src/core/core_colors.ts +250 -0
- package/src/core/core_data.ts +1309 -0
- package/src/core/core_dom.ts +471 -0
- package/src/core/core_dragdrop.ts +201 -0
- package/src/core/core_element.ts +110 -0
- package/src/core/core_events.ts +177 -0
- package/src/core/core_i18n.ts +393 -0
- package/src/core/core_react.ts +79 -0
- package/src/core/core_router.ts +237 -0
- package/src/core/core_styles.ts +214 -0
- package/src/core/core_svg.ts +711 -0
- package/src/core/core_tools.ts +906 -0
- package/src/types/scss.d.ts +4 -0
- package/src/types/svg.d.ts +1 -0
- package/src/types/x4react.d.ts +9 -0
- package/src/x4.scss +19 -0
- package/src/x4.ts +31 -62
- package/src/x4tsx.d.ts +25 -0
- package/tsconfig.json +14 -0
- /package/{lib/src/demo → demo}/assets/house-light.svg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="currentColor"><!--!Font Awesome Pro 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path d="M374.6 164L306.1 34.3 288.1 0 270 34.3 201.5 164 57.1 189l-38.2 6.6 27 27.8L148.1 328.5 127.2 473.6 121.7 512l34.8-17.1 131.6-64.7 131.6 64.7L454.4 512l-5.5-38.4L428 328.5 530.2 223.4l27-27.8L519 189 374.6 164zM492 216.8l-86.9 89.4-11 11.3 2.2 15.6 17.8 123.5-111.9-55-14.1-6.9-14.1 6.9L162 456.5l17.8-123.5 2.2-15.6-11-11.3L84.1 216.8 207 195.5l15.5-2.7 7.3-13.9L288.1 68.6l58.2 110.3 7.3 13.9 15.5 2.7L492 216.8z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="currentColor"><!--!Font Awesome Pro 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path d="M288.1 0l86.5 164 182.7 31.6L428 328.5 454.4 512 288.1 430.2 121.7 512l26.4-183.5L18.9 195.6 201.5 164 288.1 0z"/></svg>
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ___ ___ __
|
|
3
|
+
* \ \/ / / _
|
|
4
|
+
* \ / /_| |_
|
|
5
|
+
* / \____ _|
|
|
6
|
+
* /__/\__\ |_|.2
|
|
7
|
+
*
|
|
8
|
+
* @file select.ts
|
|
9
|
+
* @author Etienne Cochard
|
|
10
|
+
*
|
|
11
|
+
* @copyright (c) 2025 R-libre ingenierie
|
|
12
|
+
*
|
|
13
|
+
* Use of this source code is governed by an MIT-style license
|
|
14
|
+
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
|
15
|
+
**/
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
import { EventCallback } from '../../core/core_events.js';
|
|
19
|
+
import { Component, ComponentEvent, ComponentProps, EvChange, EvFocus } from '../../core/component';
|
|
20
|
+
import { class_ns } from '../../core/core_tools';
|
|
21
|
+
|
|
22
|
+
import { ListItem } from '../components';
|
|
23
|
+
|
|
24
|
+
import "./select.module.scss"
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
export interface SelectProps extends ComponentProps {
|
|
31
|
+
name?: string;
|
|
32
|
+
value: string;
|
|
33
|
+
items: ListItem[];
|
|
34
|
+
multiple?: boolean;
|
|
35
|
+
change?: EventCallback<EvChange>;
|
|
36
|
+
focus?: EventCallback<EvFocus>;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
interface SelectEvents extends ComponentEvent {
|
|
40
|
+
focus: EvFocus;
|
|
41
|
+
change: EvChange;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* simple select
|
|
47
|
+
*/
|
|
48
|
+
|
|
49
|
+
@class_ns( "x4" )
|
|
50
|
+
export class Select extends Component<SelectProps,SelectEvents> {
|
|
51
|
+
|
|
52
|
+
constructor( props: SelectProps ) {
|
|
53
|
+
super( { tag: "select", ...props } );
|
|
54
|
+
|
|
55
|
+
this.mapPropEvents( props, "focus", "change" );
|
|
56
|
+
if( props.name ) {
|
|
57
|
+
this.setAttribute( "name", props.name );
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
this.setItems( props.items );
|
|
61
|
+
|
|
62
|
+
this.addDOMEvent( "blur", ( e ) => { this.on_focus(e,true);} );
|
|
63
|
+
this.addDOMEvent( "focus", ( e ) => { this.on_focus(e,false);} );
|
|
64
|
+
this.addDOMEvent( "input", ( e ) => { this.on_change(e as InputEvent); });
|
|
65
|
+
|
|
66
|
+
if( props.multiple ) {
|
|
67
|
+
this.setAttribute( "multiple", true );
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
if( props.value ) {
|
|
71
|
+
this.setValue( props.value );
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
*
|
|
77
|
+
*/
|
|
78
|
+
|
|
79
|
+
private on_focus( ev: FocusEvent, focus_out: boolean ) {
|
|
80
|
+
const event: EvFocus = { focus_out }
|
|
81
|
+
this.fire( "focus", event );
|
|
82
|
+
|
|
83
|
+
if( event.defaultPrevented ) {
|
|
84
|
+
ev.preventDefault( );
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
private on_change( ev: InputEvent ) {
|
|
93
|
+
|
|
94
|
+
const event: EvChange = { value: this.getValue() };
|
|
95
|
+
this.fire( "change", event );
|
|
96
|
+
|
|
97
|
+
if( event.defaultPrevented ) {
|
|
98
|
+
ev.preventDefault( );
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
*/
|
|
105
|
+
|
|
106
|
+
setItems( items: ListItem[] ) {
|
|
107
|
+
this.setContent( items.map( x => {
|
|
108
|
+
return new Component( {
|
|
109
|
+
tag: "option",
|
|
110
|
+
attrs: { value: x.id },
|
|
111
|
+
content: x.text,
|
|
112
|
+
});
|
|
113
|
+
} ));
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* @returns
|
|
118
|
+
*/
|
|
119
|
+
|
|
120
|
+
public getValue( ) {
|
|
121
|
+
return (this.dom as HTMLSelectElement).value;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
*
|
|
126
|
+
* @param value
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
public setValue( value: string ) {
|
|
130
|
+
(this.dom as HTMLSelectElement).value = value+"";
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ___ ___ __
|
|
3
|
+
* \ \/ / / _
|
|
4
|
+
* \ / /_| |_
|
|
5
|
+
* / \____ _|
|
|
6
|
+
* /__/\__\ |_|
|
|
7
|
+
*
|
|
8
|
+
* @file shared.scss
|
|
9
|
+
* @author Etienne Cochard
|
|
10
|
+
*
|
|
11
|
+
* @copyright (c) 2024 R-libre ingenierie
|
|
12
|
+
*
|
|
13
|
+
* Use of this source code is governed by an MIT-style license
|
|
14
|
+
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
|
15
|
+
**/
|
|
16
|
+
|
|
17
|
+
.box {
|
|
18
|
+
position: relative;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.hbox {
|
|
22
|
+
@extend .box;
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: row;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.vbox {
|
|
29
|
+
@extend .box;
|
|
30
|
+
display: flex;
|
|
31
|
+
flex-direction: column;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
.fit {
|
|
36
|
+
position: absolute;
|
|
37
|
+
left: 0;
|
|
38
|
+
top: 0;
|
|
39
|
+
right: 0;
|
|
40
|
+
bottom: 0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
.rel-fit {
|
|
45
|
+
position: relative;
|
|
46
|
+
left: 0;
|
|
47
|
+
top: 0;
|
|
48
|
+
right: 0;
|
|
49
|
+
bottom: 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.flex {
|
|
53
|
+
flex-grow: 1;
|
|
54
|
+
flex-shrink: 0;
|
|
55
|
+
flex-basis: 0;
|
|
56
|
+
min-width: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
// from tailwind
|
|
61
|
+
|
|
62
|
+
.shadow-sm {
|
|
63
|
+
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.shadow-md {
|
|
67
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.shadow-lg {
|
|
71
|
+
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.shadow-xl {
|
|
75
|
+
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
@keyframes rotating {
|
|
80
|
+
from {
|
|
81
|
+
transform: rotate(0deg);
|
|
82
|
+
}
|
|
83
|
+
to {
|
|
84
|
+
transform: rotate(360deg);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@keyframes shaking {
|
|
89
|
+
0% {
|
|
90
|
+
transform: rotate(-15deg)
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
4% {
|
|
94
|
+
transform: rotate(15deg)
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
8%,24% {
|
|
98
|
+
transform: rotate(-18deg)
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
12%,28% {
|
|
102
|
+
transform: rotate(18deg)
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
16% {
|
|
106
|
+
transform: rotate(-22deg)
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
20% {
|
|
110
|
+
transform: rotate(22deg)
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
32% {
|
|
114
|
+
transform: rotate(-12deg)
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
36% {
|
|
118
|
+
transform: rotate(12deg)
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
40% {
|
|
122
|
+
transform: rotate(0deg)
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
.x4rotate {
|
|
128
|
+
animation: rotating 2s linear infinite;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.x4shake {
|
|
132
|
+
animation-name: shaking;
|
|
133
|
+
animation-duration: 5s;
|
|
134
|
+
animation-iteration-count: infinite;
|
|
135
|
+
animation-timing-function: linear;
|
|
136
|
+
animation-direction: reverse;
|
|
137
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ___ ___ __
|
|
3
|
+
* \ \/ / / _
|
|
4
|
+
* \ / /_| |_
|
|
5
|
+
* / \____ _|
|
|
6
|
+
* /__/\__\ |_|
|
|
7
|
+
*
|
|
8
|
+
* @file sizer.module.scss
|
|
9
|
+
* @author Etienne Cochard
|
|
10
|
+
*
|
|
11
|
+
* @copyright (c) 2024 R-libre ingenierie
|
|
12
|
+
*
|
|
13
|
+
* Use of this source code is governed by an MIT-style license
|
|
14
|
+
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
|
15
|
+
**/
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
.x4csizer {
|
|
19
|
+
position: absolute;
|
|
20
|
+
|
|
21
|
+
@mixin horz {
|
|
22
|
+
left: 0;
|
|
23
|
+
right: 0;
|
|
24
|
+
height: 8px;
|
|
25
|
+
z-index: 10;
|
|
26
|
+
cursor: ns-resize;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.top {
|
|
30
|
+
@include horz;
|
|
31
|
+
top: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&.bottom {
|
|
35
|
+
@include horz;
|
|
36
|
+
bottom: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@mixin vert {
|
|
40
|
+
top: 0;
|
|
41
|
+
bottom: 0;
|
|
42
|
+
width: 8px;
|
|
43
|
+
z-index: 10;
|
|
44
|
+
cursor: ew-resize;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&.left {
|
|
48
|
+
@include vert;
|
|
49
|
+
left: 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&.right {
|
|
53
|
+
@include vert;
|
|
54
|
+
right: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@mixin corner {
|
|
58
|
+
width: 8px;
|
|
59
|
+
height: 8px;
|
|
60
|
+
z-index: 11;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&.top-left {
|
|
64
|
+
@include corner;
|
|
65
|
+
left: 0;
|
|
66
|
+
top: 0;
|
|
67
|
+
cursor: nw-resize;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&.top-right {
|
|
71
|
+
@include corner;
|
|
72
|
+
right: 0;
|
|
73
|
+
top: 0;
|
|
74
|
+
cursor: ne-resize;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
&.bottom-left {
|
|
78
|
+
@include corner;
|
|
79
|
+
left: 0;
|
|
80
|
+
bottom: 0;
|
|
81
|
+
cursor: ne-resize;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&.bottom-right {
|
|
85
|
+
@include corner;
|
|
86
|
+
right: 0;
|
|
87
|
+
bottom: 0;
|
|
88
|
+
cursor: nw-resize;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ___ ___ __
|
|
3
|
+
* \ \/ / / _
|
|
4
|
+
* \ / /_| |_
|
|
5
|
+
* / \____ _|
|
|
6
|
+
* /__/\__\ |_|
|
|
7
|
+
*
|
|
8
|
+
* @file sizer.ts
|
|
9
|
+
* @author Etienne Cochard
|
|
10
|
+
*
|
|
11
|
+
* @copyright (c) 2024 R-libre ingenierie
|
|
12
|
+
*
|
|
13
|
+
* Use of this source code is governed by an MIT-style license
|
|
14
|
+
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
|
15
|
+
**/
|
|
16
|
+
|
|
17
|
+
import { Component, ComponentEvent, ComponentEvents, ComponentProps, componentFromDOM } from '../../core/component';
|
|
18
|
+
import { class_ns, Point } from '../../core/core_tools.js';
|
|
19
|
+
|
|
20
|
+
import "./sizer.module.scss"
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
interface EvSizeChange extends ComponentEvent {
|
|
27
|
+
size: number;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
interface CSizerEvent extends ComponentEvents {
|
|
31
|
+
resize: EvSizeChange;
|
|
32
|
+
start: ComponentEvent;
|
|
33
|
+
stop: ComponentEvent;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
type SizerType = "left" | "top" | "right" | "bottom";
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
@class_ns( "x4" )
|
|
43
|
+
export class CSizer extends Component<ComponentProps,CSizerEvent> {
|
|
44
|
+
|
|
45
|
+
private _type: SizerType;
|
|
46
|
+
private _ref: Component;
|
|
47
|
+
private _delta: Point;
|
|
48
|
+
|
|
49
|
+
constructor( type: SizerType, target?: Component ) {
|
|
50
|
+
super( {} );
|
|
51
|
+
|
|
52
|
+
this._type = type;
|
|
53
|
+
this.addClass( type );
|
|
54
|
+
|
|
55
|
+
this.addDOMEvent( "pointerdown", ( e: PointerEvent ) => {
|
|
56
|
+
this.setCapture( e.pointerId );
|
|
57
|
+
this._ref = target ?? componentFromDOM( this.dom.parentElement );
|
|
58
|
+
|
|
59
|
+
this._delta = {x:0,y:0};
|
|
60
|
+
const rc = this._ref.getBoundingRect();
|
|
61
|
+
|
|
62
|
+
if( this._type.includes("left") ) {
|
|
63
|
+
this._delta.x = e.pageX-rc.left;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
this._delta.x = e.pageX-(rc.left+rc.width);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
if( this._type.includes("top") ) {
|
|
70
|
+
this._delta.y = e.pageY-rc.top;
|
|
71
|
+
}
|
|
72
|
+
else {
|
|
73
|
+
this._delta.y = e.pageY-(rc.top+rc.height);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
this.fire( "start", { })
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
this.addDOMEvent( "pointerup", ( e: PointerEvent ) => {
|
|
80
|
+
this.fire( "stop", { })
|
|
81
|
+
this.releaseCapture( e.pointerId );
|
|
82
|
+
this._ref = null;
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
this.addDOMEvent( "pointermove", ( e: PointerEvent ) => {
|
|
86
|
+
this._onMouseMove( e );
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
private _onMouseMove( e: PointerEvent ) {
|
|
91
|
+
if( !this._ref ) {
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
const pt = { x: e.pageX-this._delta.x, y: e.pageY-this._delta.y };
|
|
96
|
+
const rc = this._ref.getBoundingRect( );
|
|
97
|
+
|
|
98
|
+
let nr: any = {};
|
|
99
|
+
let horz = true;
|
|
100
|
+
|
|
101
|
+
if( this._type.includes("top") ) {
|
|
102
|
+
nr.top = pt.y,
|
|
103
|
+
nr.height = (rc.top+rc.height)-pt.y;
|
|
104
|
+
horz = false;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
if( this._type.includes("bottom") ) {
|
|
108
|
+
//nr.top = rc.top;
|
|
109
|
+
nr.height = (pt.y-rc.top);
|
|
110
|
+
horz = false;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
if( this._type.includes("left") ) {
|
|
114
|
+
nr.left = pt.x;
|
|
115
|
+
nr.width = ((rc.left+rc.width)-pt.x);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
if( this._type.includes("right") ) {
|
|
119
|
+
//nr.left = rc.left;
|
|
120
|
+
nr.width = (pt.x-rc.left);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
this._ref.setStyle( nr );
|
|
124
|
+
|
|
125
|
+
const nrc = this._ref.getBoundingRect( );
|
|
126
|
+
this.fire( "resize", { size: horz ? nrc.width : nrc.height })
|
|
127
|
+
|
|
128
|
+
e.preventDefault( );
|
|
129
|
+
e.stopPropagation( );
|
|
130
|
+
}
|
|
131
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ___ ___ __
|
|
3
|
+
* \ \/ / / _
|
|
4
|
+
* \ / /_| |_
|
|
5
|
+
* / \____ _|
|
|
6
|
+
* /__/\__\ |_|
|
|
7
|
+
*
|
|
8
|
+
* @file slider.module.scss
|
|
9
|
+
* @author Etienne Cochard
|
|
10
|
+
*
|
|
11
|
+
* @copyright (c) 2024 R-libre ingenierie
|
|
12
|
+
*
|
|
13
|
+
* Use of this source code is governed by an MIT-style license
|
|
14
|
+
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
|
15
|
+
**/
|
|
16
|
+
|
|
17
|
+
:root {
|
|
18
|
+
--slider-track: var( --border );
|
|
19
|
+
--slider-thumb-background: var( --accent-background );
|
|
20
|
+
--slider-thumb-border: var( --accent-background );
|
|
21
|
+
--slider-thumb-border-focus: var( --border-focus );
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.x4slider {
|
|
25
|
+
outline: none;
|
|
26
|
+
touch-action: none;
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
|
|
29
|
+
&:not(.vertical) {
|
|
30
|
+
padding: 10px 12px;
|
|
31
|
+
margin: 5px 0;
|
|
32
|
+
height: 28px;
|
|
33
|
+
|
|
34
|
+
.track {
|
|
35
|
+
background-color: var( --slider-track );
|
|
36
|
+
width: 100%;
|
|
37
|
+
|
|
38
|
+
position: relative;
|
|
39
|
+
top: 50%;
|
|
40
|
+
height: 3px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.bar {
|
|
44
|
+
position: absolute;
|
|
45
|
+
width: 61%;
|
|
46
|
+
height: 3px;
|
|
47
|
+
//padding: 4px 0;
|
|
48
|
+
//background-color: var( --color-60 );
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.thumb {
|
|
52
|
+
position: absolute;
|
|
53
|
+
left: 61%;
|
|
54
|
+
outline: none;
|
|
55
|
+
|
|
56
|
+
background-color: var( --slider-thumb-background );
|
|
57
|
+
border: 3px solid var( --slider-thumb-border );
|
|
58
|
+
border-radius: 8px;
|
|
59
|
+
|
|
60
|
+
top: 50%;
|
|
61
|
+
width: 16px;
|
|
62
|
+
height: 16px;
|
|
63
|
+
|
|
64
|
+
transform: translate(-50%,-50%);
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&.vertical {
|
|
70
|
+
padding: 12px 10px;
|
|
71
|
+
margin: 0 5px;
|
|
72
|
+
width: 28px;
|
|
73
|
+
|
|
74
|
+
.track {
|
|
75
|
+
background-color: var( --slider-track );
|
|
76
|
+
height: 100%;
|
|
77
|
+
|
|
78
|
+
position: relative;
|
|
79
|
+
left: 50%;
|
|
80
|
+
width: 3px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.bar {
|
|
84
|
+
position: absolute;
|
|
85
|
+
width: 3px;
|
|
86
|
+
height: 61%;
|
|
87
|
+
//padding: 4px 0;
|
|
88
|
+
//background-color: var( --color-60 );
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.thumb {
|
|
92
|
+
position: absolute;
|
|
93
|
+
left: 50%;
|
|
94
|
+
outline: none;
|
|
95
|
+
|
|
96
|
+
background-color: var( --slider-thumb-background );
|
|
97
|
+
border: 3px solid var( --slider-thumb-border );
|
|
98
|
+
border-radius: 8px;
|
|
99
|
+
|
|
100
|
+
top: 61%;
|
|
101
|
+
width: 16px;
|
|
102
|
+
height: 16px;
|
|
103
|
+
|
|
104
|
+
transform: translate(-50%,-50%);
|
|
105
|
+
cursor: pointer;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
&:focus .thumb {
|
|
113
|
+
outline-offset: 3px;
|
|
114
|
+
outline-color: var(--slider-thumb-border-focus);
|
|
115
|
+
outline-style: solid;
|
|
116
|
+
outline-width: 1px;
|
|
117
|
+
}
|
|
118
|
+
}
|