@cwellt_software/cwellt-reactjs-lib 1.0.4 → 1.0.5
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/dist/content/icons/new-cw-icons/NewCwIcons.html +27 -26
- package/dist/content/icons/new-cw-icons/NewCwIcons.json +1 -1
- package/dist/content/icons/new-cw-icons/css/new-cw-icons.css +2 -1
- package/dist/content/icons/new-cw-icons/fonts/NewCwIcons.woff +0 -0
- package/dist/index.cjs.js +391 -243
- package/dist/index.css +2 -2
- package/dist/index.d.ts +147 -82
- package/dist/index.es.js +391 -240
- package/dist/src/components/control/action/buttons/CwButtons.d.ts +0 -4
- package/dist/src/components/control/action/buttons/CwButtons.d.ts.map +1 -1
- package/dist/src/components/control/input/any/CwInput.d.ts.map +1 -1
- package/dist/src/components/control/input/number/CwInputNumber.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.d.ts +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.d.ts.map +1 -1
- package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts.map +1 -1
- package/dist/src/components/display/data/table/CwTable.d.ts +47 -62
- package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
- package/dist/src/components/display/graphics/loading/CwLoading.d.ts +39 -9
- package/dist/src/components/display/graphics/loading/CwLoading.d.ts.map +1 -1
- package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.d.ts +13 -1
- package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.d.ts.map +1 -1
- package/dist/src/components/display/text/tag/CwTag.d.ts +2 -2
- package/dist/src/components/display/text/tag/CwTag.d.ts.map +1 -1
- package/dist/src/components/layout/dialog/CwDialog.d.ts +15 -4
- package/dist/src/components/layout/dialog/CwDialog.d.ts.map +1 -1
- package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts +33 -0
- package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts.map +1 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_report.d.ts.map +1 -1
- package/dist/src/components/layout/tabs/CwTabs.d.ts.map +1 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -10,29 +10,29 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.ico {
|
|
13
|
-
font-size: 2em;
|
|
14
13
|
margin-bottom: 8px;
|
|
15
14
|
color: #183153;
|
|
16
|
-
font-family: 'NewCwIcons';
|
|
17
15
|
font-style: normal;
|
|
16
|
+
font-size: 2em;
|
|
17
|
+
font-family: 'NewCwIcons';
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.container {
|
|
21
21
|
display: grid;
|
|
22
|
-
gap: 10px;
|
|
23
22
|
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
|
|
23
|
+
gap: 10px;
|
|
24
24
|
padding: 20px;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.item {
|
|
28
|
-
background: #fff;
|
|
29
|
-
text-align: center;
|
|
30
28
|
display: flex;
|
|
31
29
|
flex-direction: column;
|
|
30
|
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
31
|
+
cursor: pointer;
|
|
32
32
|
border-radius: 5px;
|
|
33
|
+
background: #fff;
|
|
33
34
|
padding: 10px;
|
|
34
|
-
|
|
35
|
-
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
35
|
+
text-align: center;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.item:hover {
|
|
@@ -42,56 +42,56 @@
|
|
|
42
42
|
|
|
43
43
|
.toast {
|
|
44
44
|
position: fixed;
|
|
45
|
-
bottom: 20px;
|
|
46
45
|
right: 20px;
|
|
47
|
-
|
|
48
|
-
color: white;
|
|
49
|
-
padding: 10px 20px;
|
|
50
|
-
border-radius: 5px;
|
|
51
|
-
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
|
46
|
+
bottom: 20px;
|
|
52
47
|
opacity: 0;
|
|
53
|
-
transition: opacity 0.3s;
|
|
54
48
|
z-index: 1000;
|
|
49
|
+
transition: opacity 0.3s;
|
|
50
|
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
|
51
|
+
border-radius: 5px;
|
|
52
|
+
background-color: #183153;
|
|
53
|
+
padding: 10px 20px;
|
|
54
|
+
color: white;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
|
|
58
58
|
.search-box {
|
|
59
59
|
display: flex;
|
|
60
|
-
gap: 10px;
|
|
61
|
-
padding: 15px 20px;
|
|
62
|
-
background: white;
|
|
63
|
-
margin-bottom: 10px;
|
|
64
60
|
position: sticky;
|
|
65
61
|
top: 0;
|
|
62
|
+
flex-wrap: wrap;
|
|
63
|
+
gap: 10px;
|
|
66
64
|
z-index: 10;
|
|
65
|
+
margin-bottom: 10px;
|
|
67
66
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
68
|
-
|
|
67
|
+
background: white;
|
|
68
|
+
padding: 15px 20px;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.search-input {
|
|
72
72
|
flex: 2;
|
|
73
|
-
min-width: 200px;
|
|
74
|
-
padding: 8px 12px;
|
|
75
73
|
border: 1px solid #ccc;
|
|
76
74
|
border-radius: 4px;
|
|
75
|
+
padding: 8px 12px;
|
|
76
|
+
min-width: 200px;
|
|
77
77
|
font-size: 16px;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.category-select {
|
|
81
81
|
flex: 1;
|
|
82
|
-
min-width: 150px;
|
|
83
|
-
padding: 8px 12px;
|
|
84
82
|
border: 1px solid #ccc;
|
|
85
83
|
border-radius: 4px;
|
|
86
|
-
font-size: 16px;
|
|
87
84
|
background-color: white;
|
|
85
|
+
padding: 8px 12px;
|
|
86
|
+
min-width: 150px;
|
|
87
|
+
font-size: 16px;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
.header {
|
|
91
|
+
margin-bottom: 0;
|
|
91
92
|
background: #183153;
|
|
92
|
-
color: white;
|
|
93
93
|
padding: 15px 20px;
|
|
94
|
-
|
|
94
|
+
color: white;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.header h1 {
|
|
@@ -302,6 +302,7 @@
|
|
|
302
302
|
<div class="item" data-category="vehicles"><i class="ico cwi-road"></i>cwi-road</div>
|
|
303
303
|
<div class="item" data-category="action"><i class="ico cwi-grip-dots"></i>cwi-grip-dots</div>
|
|
304
304
|
<div class="item" data-category="status"><i class="ico cwi-medal"></i>cwi-medal</div>
|
|
305
|
+
<div class="item" data-category="vehicles"><i class="ico cwi-tire"></i>cwi-tire</div>
|
|
305
306
|
</div>
|
|
306
307
|
|
|
307
308
|
<div id="toast" class="toast">Clase copiada al portapapeles</div>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"NewCwIcons","icons":{"cwi-alert":"ea01","cwi-chevron-down-small":"ea02","cwi-chevron-right":"ea03","cwi-chevron-down":"ea04","cwi-chevron-right-double":"ea05","cwi-add-users":"ea06","cwi-chevron-left":"ea07","cwi-windows":"ea08","cwi-warning":"ea09","cwi-search":"ea0a","cwi-folder-square":"ea0b","cwi-download":"ea0c","cwi-inbox":"ea0d","cwi-pin":"ea0e","cwi-chevron-up-small":"ea0f","cwi-ticket-requested":"ea10","cwi-check-small":"ea11","cwi-refresh":"ea12","cwi-airplane-mode":"ea13","cwi-close":"ea14","cwi-users":"ea15","cwi-info-bubble":"ea16","cwi-new-flight":"ea17","cwi-timezone-globe":"ea18","cwi-menu":"ea19","cwi-save":"ea1a","cwi-calendar":"ea1b","cwi-alarm":"ea1c","cwi-question":"ea1d","cwi-chevron-up":"ea1e","cwi-share":"ea1f","cwi-star":"ea20","cwi-check-big":"ea21","cwi-eye-hide":"ea22","cwi-comment":"ea23","cwi-around-the-globe":"ea24","cwi-envelope":"ea25","cwi-delete":"ea26","cwi-options":"ea27","cwi-login":"ea28","cwi-plus":"ea29","cwi-ticket-delete":"ea2a","cwi-logout":"ea2b","cwi-page":"ea2c","cwi-document":"ea2d","cwi-chevron-left-double":"ea2e","cwi-list":"ea2f","cwi-eye-show":"ea30","cwi-print":"ea31","cwi-edit":"ea32","cwi-close-circle":"ea33","cwi-cancel":"ea34","cwi-clock":"ea35","cwi-emergency":"ea36","cwi-folder-open":"ea37","cwi-calculator":"ea38","cwi-cloud":"ea39","cwi-crop":"ea3a","cwi-file-view":"ea3b","cwi-user":"ea3c","cwi-bus":"ea3d","cwi-ticket":"ea3e","cwi-plane-ladder":"ea3f","cwi-traveler":"ea40","cwi-journey":"ea41","cwi-airport":"ea42","cwi-search-flight":"ea43","cwi-generate-report":"ea44","cwi-journey-add":"ea45","cwi-passport":"ea46","cwi-departure":"ea47","cwi-landing":"ea48","cwi-flight":"ea49","cwi-house-black":"ea4a","cwi-reset":"ea4b","cwi-upload":"ea4c","cwi-thumbs-up":"ea4d","cwi-hand-ok":"ea4e","cwi-remarks":"ea4f","cwi-departure-delayed":"ea50","cwi-flight-aog":"ea51","cwi-flight-delayed":"ea52","cwi-flight-cancelled":"ea53","cwi-wrench":"ea54","cwi-waiting":"ea55","cwi-favorite-files":"ea56","cwi-archive":"ea57","cwi-archive-restore":"ea58","cwi-directory":"ea59","cwi-lock-solid":"ea5a","cwi-plane-movement":"ea5b","cwi-folder-add":"ea5c","cwi-folder-edit":"ea5d","cwi-folder-download":"ea5e","cwi-plane-delay":"ea5f","cwi-folder-closed":"ea60","cwi-folder-user":"ea61","cwi-folder-selected":"ea62","cwi-paper-plane":"ea63","cwi-file-accepted":"ea64","cwi-arrow-left-circle":"ea65","cwi-arrow-left":"ea66","cwi-envelope-sent":"ea67","cwi-undo":"ea68","cwi-file-report":"ea69","cwi-fuel":"ea6a","cwi-location":"ea6b","cwi-copy":"ea6c","cwi-check-circle":"ea6d","cwi-important":"ea6e","cwi-plane-solid":"ea6f","cwi-birthday":"ea70","cwi-link":"ea71","cwi-user-delete":"ea72","cwi-crew":"ea73","cwi-luggage":"ea74","cwi-user-luggage":"ea75","cwi-calendar-view":"ea76","cwi-calendar-plane":"ea77","cwi-calendar-time":"ea78","cwi-calendar-solid":"ea79","cwi-duty-free":"ea7a","cwi-undo-selected":"ea7b","cwi-plane-pairing":"ea7c","cwi-typerating":"ea7d","cwi-save-selected":"ea7e","cwi-search-filter":"ea7f","cwi-linetraining":"ea80","cwi-arrow-down":"ea81","cwi-arrow-up":"ea82","cwi-arrow-right":"ea83","cwi-accounting":"ea84","cwi-employee-document":"ea85","cwi-employees":"ea86","cwi-phone":"ea87","cwi-stats":"ea88","cwi-customers":"ea89","cwi-crew-planning":"ea8a","cwi-aircraft-owner":"ea8b","cwi-crew-control":"ea8c","cwi-control-tower":"ea8d","cwi-classroom":"ea8e","cwi-catering":"ea8f","cwi-card":"ea90","cwi-audit":"ea91","cwi-administrator":"ea92","cwi-cabincrew":"ea93","cwi-flight-operations":"ea94","cwi-dispatch":"ea95","cwi-fleet":"ea96","cwi-fatigue-risk":"ea97","cwi-management":"ea98","cwi-balance":"ea99","cwi-master-crew":"ea9a","cwi-passengers":"ea9b","cwi-tools":"ea9c","cwi-risk-assessment":"ea9d","cwi-sales":"ea9e","cwi-quiz":"ea9f","cwi-learning":"eaa0","cwi-support":"eaa1","cwi-stock":"eaa2","cwi-security":"eaa3","cwi-plane-approval":"eaa4","cwi-user-account":"eaa5","cwi-money-transfer":"eaa6","cwi-plane-spot":"eaa7","cwi-hotel":"eaa8","cwi-rental-car":"eaa9","cwi-plane-seat-solid":"eaaa","cwi-plane-seat":"eaab","cwi-spinner":"eaac","cwi-sortable":"eaad","cwi-settings":"eaae","cwi-steering-wheel":"eaaf","cwi-road":"eab0","cwi-grip-dots":"eab1","cwi-medal":"eab2"}}
|
|
1
|
+
{"name":"NewCwIcons","icons":{"cwi-alert":"ea01","cwi-chevron-down-small":"ea02","cwi-chevron-right":"ea03","cwi-chevron-down":"ea04","cwi-chevron-right-double":"ea05","cwi-add-users":"ea06","cwi-chevron-left":"ea07","cwi-windows":"ea08","cwi-warning":"ea09","cwi-search":"ea0a","cwi-folder-square":"ea0b","cwi-download":"ea0c","cwi-inbox":"ea0d","cwi-pin":"ea0e","cwi-chevron-up-small":"ea0f","cwi-ticket-requested":"ea10","cwi-check-small":"ea11","cwi-refresh":"ea12","cwi-airplane-mode":"ea13","cwi-close":"ea14","cwi-users":"ea15","cwi-info-bubble":"ea16","cwi-new-flight":"ea17","cwi-timezone-globe":"ea18","cwi-menu":"ea19","cwi-save":"ea1a","cwi-calendar":"ea1b","cwi-alarm":"ea1c","cwi-question":"ea1d","cwi-chevron-up":"ea1e","cwi-share":"ea1f","cwi-star":"ea20","cwi-check-big":"ea21","cwi-eye-hide":"ea22","cwi-comment":"ea23","cwi-around-the-globe":"ea24","cwi-envelope":"ea25","cwi-delete":"ea26","cwi-options":"ea27","cwi-login":"ea28","cwi-plus":"ea29","cwi-ticket-delete":"ea2a","cwi-logout":"ea2b","cwi-page":"ea2c","cwi-document":"ea2d","cwi-chevron-left-double":"ea2e","cwi-list":"ea2f","cwi-eye-show":"ea30","cwi-print":"ea31","cwi-edit":"ea32","cwi-close-circle":"ea33","cwi-cancel":"ea34","cwi-clock":"ea35","cwi-emergency":"ea36","cwi-folder-open":"ea37","cwi-calculator":"ea38","cwi-cloud":"ea39","cwi-crop":"ea3a","cwi-file-view":"ea3b","cwi-user":"ea3c","cwi-bus":"ea3d","cwi-ticket":"ea3e","cwi-plane-ladder":"ea3f","cwi-traveler":"ea40","cwi-journey":"ea41","cwi-airport":"ea42","cwi-search-flight":"ea43","cwi-generate-report":"ea44","cwi-journey-add":"ea45","cwi-passport":"ea46","cwi-departure":"ea47","cwi-landing":"ea48","cwi-flight":"ea49","cwi-house-black":"ea4a","cwi-reset":"ea4b","cwi-upload":"ea4c","cwi-thumbs-up":"ea4d","cwi-hand-ok":"ea4e","cwi-remarks":"ea4f","cwi-departure-delayed":"ea50","cwi-flight-aog":"ea51","cwi-flight-delayed":"ea52","cwi-flight-cancelled":"ea53","cwi-wrench":"ea54","cwi-waiting":"ea55","cwi-favorite-files":"ea56","cwi-archive":"ea57","cwi-archive-restore":"ea58","cwi-directory":"ea59","cwi-lock-solid":"ea5a","cwi-plane-movement":"ea5b","cwi-folder-add":"ea5c","cwi-folder-edit":"ea5d","cwi-folder-download":"ea5e","cwi-plane-delay":"ea5f","cwi-folder-closed":"ea60","cwi-folder-user":"ea61","cwi-folder-selected":"ea62","cwi-paper-plane":"ea63","cwi-file-accepted":"ea64","cwi-arrow-left-circle":"ea65","cwi-arrow-left":"ea66","cwi-envelope-sent":"ea67","cwi-undo":"ea68","cwi-file-report":"ea69","cwi-fuel":"ea6a","cwi-location":"ea6b","cwi-copy":"ea6c","cwi-check-circle":"ea6d","cwi-important":"ea6e","cwi-plane-solid":"ea6f","cwi-birthday":"ea70","cwi-link":"ea71","cwi-user-delete":"ea72","cwi-crew":"ea73","cwi-luggage":"ea74","cwi-user-luggage":"ea75","cwi-calendar-view":"ea76","cwi-calendar-plane":"ea77","cwi-calendar-time":"ea78","cwi-calendar-solid":"ea79","cwi-duty-free":"ea7a","cwi-undo-selected":"ea7b","cwi-plane-pairing":"ea7c","cwi-typerating":"ea7d","cwi-save-selected":"ea7e","cwi-search-filter":"ea7f","cwi-linetraining":"ea80","cwi-arrow-down":"ea81","cwi-arrow-up":"ea82","cwi-arrow-right":"ea83","cwi-accounting":"ea84","cwi-employee-document":"ea85","cwi-employees":"ea86","cwi-phone":"ea87","cwi-stats":"ea88","cwi-customers":"ea89","cwi-crew-planning":"ea8a","cwi-aircraft-owner":"ea8b","cwi-crew-control":"ea8c","cwi-control-tower":"ea8d","cwi-classroom":"ea8e","cwi-catering":"ea8f","cwi-card":"ea90","cwi-audit":"ea91","cwi-administrator":"ea92","cwi-cabincrew":"ea93","cwi-flight-operations":"ea94","cwi-dispatch":"ea95","cwi-fleet":"ea96","cwi-fatigue-risk":"ea97","cwi-management":"ea98","cwi-balance":"ea99","cwi-master-crew":"ea9a","cwi-passengers":"ea9b","cwi-tools":"ea9c","cwi-risk-assessment":"ea9d","cwi-sales":"ea9e","cwi-quiz":"ea9f","cwi-learning":"eaa0","cwi-support":"eaa1","cwi-stock":"eaa2","cwi-security":"eaa3","cwi-plane-approval":"eaa4","cwi-user-account":"eaa5","cwi-money-transfer":"eaa6","cwi-plane-spot":"eaa7","cwi-hotel":"eaa8","cwi-rental-car":"eaa9","cwi-plane-seat-solid":"eaaa","cwi-plane-seat":"eaab","cwi-spinner":"eaac","cwi-sortable":"eaad","cwi-settings":"eaae","cwi-steering-wheel":"eaaf","cwi-road":"eab0","cwi-grip-dots":"eab1","cwi-medal":"eab2","cwi-tire":"eab3"}}
|
|
@@ -197,6 +197,8 @@ font-family: 'NewCwIcons';
|
|
|
197
197
|
.cwi-road:before { content: "\eab0"; }
|
|
198
198
|
.cwi-grip-dots:before { content: "\eab1"; }
|
|
199
199
|
.cwi-medal:before { content: "\eab2"; }
|
|
200
|
+
.cwi-tire:before { content: "\eab3"; }
|
|
201
|
+
|
|
200
202
|
|
|
201
203
|
/* Important because otherwise ant-design becomes and idiot */
|
|
202
204
|
|
|
@@ -204,7 +206,6 @@ font-family: 'NewCwIcons';
|
|
|
204
206
|
.cwi-undo-selected:before { content: "\ea7b"!important; }
|
|
205
207
|
.cwi-save-selected:before { content: "\ea7e"!important; }
|
|
206
208
|
|
|
207
|
-
|
|
208
209
|
/* Special styles */
|
|
209
210
|
|
|
210
211
|
.cwi-spinner {
|
|
Binary file
|