plusui-native 0.2.48 → 0.2.49

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plusui-native",
3
- "version": "0.2.48",
3
+ "version": "0.2.49",
4
4
  "description": "PlusUI CLI - Build C++ desktop apps modern UI ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -27,11 +27,11 @@
27
27
  "semver": "^7.6.0",
28
28
  "which": "^4.0.0",
29
29
  "execa": "^8.0.1",
30
- "plusui-native-builder": "^0.1.47",
31
- "plusui-native-bindgen": "^0.1.47"
30
+ "plusui-native-builder": "^0.1.48",
31
+ "plusui-native-bindgen": "^0.1.48"
32
32
  },
33
33
  "peerDependencies": {
34
- "plusui-native-bindgen": "^0.1.47"
34
+ "plusui-native-bindgen": "^0.1.48"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
@@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client';
3
3
  import App from './App';
4
4
  import './styles/app.css';
5
5
  import 'plusui-native-core/Core/Features/FileDrop/filedrop.css';
6
- import './styles/filedrop.css';
6
+
7
7
 
8
8
  ReactDOM.createRoot(document.getElementById('root')!).render(
9
9
  <React.StrictMode>
@@ -2,6 +2,5 @@ import { render } from 'solid-js/web';
2
2
  import App from './App';
3
3
  import './styles/app.css';
4
4
  import 'plusui-native-core/Core/Features/FileDrop/filedrop.css';
5
- import './styles/filedrop.css';
6
5
 
7
6
  render(() => <App />, document.getElementById('root')!);
@@ -1,60 +0,0 @@
1
- .filedrop-control-row {
2
- margin-bottom: 1rem;
3
- display: flex;
4
- align-items: center;
5
- gap: 0.5rem;
6
- }
7
-
8
- .filedrop-control-label {
9
- font-size: 0.9em;
10
- }
11
-
12
- .filedrop-control-select {
13
- padding: 0.5rem;
14
- border-radius: 0.25rem;
15
- border: 1px solid rgba(255, 255, 255, 0.3);
16
- background: rgba(255, 255, 255, 0.1);
17
- color: #fff;
18
- font-size: 0.9em;
19
- }
20
-
21
- .filedrop-zone,
22
- .dropzone,
23
- [data-dropzone='true'] {
24
- --filedrop-accent: #3b82f6;
25
- }
26
-
27
- [data-dropzone='true'][data-filedrop-state='dragging'] {
28
- border-color: var(--filedrop-accent);
29
- box-shadow: 0 0 0 4px color-mix(in srgb, var(--filedrop-accent) 20%, transparent);
30
- }
31
-
32
- [data-dropzone='true'][data-filedrop-style='compact'] {
33
- min-height: 120px;
34
- padding: 1.5rem;
35
- }
36
-
37
- [data-dropzone='true'][data-filedrop-style='inline'] {
38
- min-height: 80px;
39
- padding: 1rem;
40
- flex-direction: row;
41
- justify-content: flex-start;
42
- gap: 1rem;
43
- }
44
-
45
- [data-dropzone='true'][data-filedrop-style='inline'] .filedrop-content {
46
- flex-direction: row;
47
- align-items: center;
48
- text-align: left;
49
- gap: 0.75rem;
50
- }
51
-
52
- [data-dropzone='true'][data-filedrop-style='minimal'] {
53
- border-style: solid;
54
- border-width: 1px;
55
- }
56
-
57
- [data-dropzone='true'][data-filedrop-style='bold'] {
58
- border-width: 3px;
59
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
60
- }
@@ -1,60 +0,0 @@
1
- .filedrop-control-row {
2
- margin-bottom: 1rem;
3
- display: flex;
4
- align-items: center;
5
- gap: 0.5rem;
6
- }
7
-
8
- .filedrop-control-label {
9
- font-size: 0.9em;
10
- }
11
-
12
- .filedrop-control-select {
13
- padding: 0.5rem;
14
- border-radius: 0.25rem;
15
- border: 1px solid rgba(255, 255, 255, 0.3);
16
- background: rgba(255, 255, 255, 0.1);
17
- color: #fff;
18
- font-size: 0.9em;
19
- }
20
-
21
- .filedrop-zone,
22
- .dropzone,
23
- [data-dropzone='true'] {
24
- --filedrop-accent: #3b82f6;
25
- }
26
-
27
- [data-dropzone='true'][data-filedrop-state='dragging'] {
28
- border-color: var(--filedrop-accent);
29
- box-shadow: 0 0 0 4px color-mix(in srgb, var(--filedrop-accent) 20%, transparent);
30
- }
31
-
32
- [data-dropzone='true'][data-filedrop-style='compact'] {
33
- min-height: 120px;
34
- padding: 1.5rem;
35
- }
36
-
37
- [data-dropzone='true'][data-filedrop-style='inline'] {
38
- min-height: 80px;
39
- padding: 1rem;
40
- flex-direction: row;
41
- justify-content: flex-start;
42
- gap: 1rem;
43
- }
44
-
45
- [data-dropzone='true'][data-filedrop-style='inline'] .filedrop-content {
46
- flex-direction: row;
47
- align-items: center;
48
- text-align: left;
49
- gap: 0.75rem;
50
- }
51
-
52
- [data-dropzone='true'][data-filedrop-style='minimal'] {
53
- border-style: solid;
54
- border-width: 1px;
55
- }
56
-
57
- [data-dropzone='true'][data-filedrop-style='bold'] {
58
- border-width: 3px;
59
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
60
- }