react-weekly-planning 1.0.40 → 1.0.41

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.
@@ -0,0 +1,167 @@
1
+ .addPlanStyle {
2
+ cursor: pointer;
3
+ display: flex;
4
+ align-items: center;
5
+ justify-content: center;
6
+ flex: 1;
7
+ background-color: #f2f8fb;
8
+ opacity: 0;
9
+ border-radius: 5px;
10
+ color: #0f5173;
11
+ transition: background-color 0.3s, opacity 0.3s;
12
+ }
13
+
14
+ .addPlanStyle:hover {
15
+ background-color: #c6dbe159;
16
+ opacity: 1;
17
+ }
18
+
19
+ .taskContainer {
20
+ box-shadow: 0px 7px 18px 0px rgba(15, 105, 115, 0.03),
21
+ 0px 6px 10px 0px rgba(15, 105, 115, 0.04),
22
+ 0px 3px 5px 0px rgba(15, 105, 115, 0.05);
23
+ display: flex;
24
+ justify-content: center;
25
+ column-gap: 10px;
26
+ flex-direction: column;
27
+ height: auto;
28
+ border-left: 5px solid #457993;
29
+ background-color: #f4ffff;
30
+ color: #457993;
31
+ cursor: pointer;
32
+ border-radius: 5px;
33
+ margin-bottom: 5px;
34
+ font-size: 13px;
35
+ overflow: auto;
36
+ padding: 2px;
37
+ z-index: 10;
38
+ }
39
+
40
+ .tasklabel {
41
+ color: #55585d;
42
+ font-size: 12px;
43
+ line-height: 16px;
44
+ font-weight: 400;
45
+ margin-left: 5px;
46
+ }
47
+
48
+ .taskhour {
49
+ font-size: 12px;
50
+ line-height: 16px;
51
+ font-weight: 600;
52
+ margin-left: 5px;
53
+ }
54
+
55
+ .planningCalendar {
56
+ width: 100%;
57
+ border-radius: 0.5rem;
58
+ z-index: 10;
59
+ display: flex;
60
+ flex-direction: column;
61
+ border: 0.74px solid rgba(198, 219, 225, 0.68);
62
+
63
+ background-color: white;
64
+
65
+ }
66
+
67
+ .planningCalendarHeader {
68
+ display: flex;
69
+ width: 100%;
70
+ z-index: 200;
71
+ border-bottom: 1.5px solid #0f52737e;
72
+ background-color: #fff;
73
+ }
74
+
75
+ .planningCalendarRow {
76
+ display: flex;
77
+ width: 100%;
78
+ border-bottom: 1.5px solid #0f52737e;
79
+ }
80
+
81
+ .planningCalendarRow:last-child {
82
+ border-bottom: none;
83
+ }
84
+
85
+ .planningCalendar .dayTh,
86
+ .planningCalendar .groupCol {
87
+ flex: 0 0 150px;
88
+ color: #0f5173;
89
+ padding-left: 5px;
90
+ display: flex;
91
+ align-items: center;
92
+ }
93
+
94
+ .planningCalendar .dayCol {
95
+ flex: 1;
96
+ border-left: 0.74px solid rgba(198, 219, 225, 0.68);
97
+ min-width: 0;
98
+ display: flex;
99
+ flex-direction: column;
100
+ justify-content: center;
101
+ }
102
+
103
+ .planningCalendar .totalTh,
104
+ .planningCalendar .totalCol {
105
+ flex: 0 0 50px;
106
+ color: #0f5173;
107
+ text-align: right;
108
+ padding-right: 5px;
109
+ border-left: 0.74px solid rgba(198, 219, 225, 0.68);
110
+ display: flex;
111
+ align-items: center;
112
+ justify-content: flex-end;
113
+ }
114
+
115
+ .CalendarTableForDay {
116
+ display: flex;
117
+ gap: 10px;
118
+ width: 100vw;
119
+ height: auto;
120
+ }
121
+
122
+ .CalendarTableForDayTasksContainer {
123
+ flex: 1;
124
+ display: flex;
125
+ flex-direction: column;
126
+ height: auto;
127
+ padding: 10px;
128
+ position: relative;
129
+ }
130
+
131
+ .CalendarTableForDayRow {
132
+ display: flex !important;
133
+ flex-direction: row !important;
134
+ gap: 15px;
135
+ align-items: flex-start;
136
+ padding: 15px !important;
137
+ }
138
+
139
+ .CalendarTableForDayGroupTasks {
140
+ flex: 1;
141
+ display: grid;
142
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
143
+ gap: 10px;
144
+ }
145
+
146
+ .CalendarTableForDayGroupTasks .taskContainer,
147
+ .CalendarTableForDayGroupTasks .addPlanStyle {
148
+ margin-bottom: 0px;
149
+ height: 100%;
150
+ min-height: 80px;
151
+ }
152
+
153
+ .calendarForWeek {
154
+ display: flex;
155
+ width: 100%;
156
+ flex: 1;
157
+ overflow: auto;
158
+ position: relative;
159
+
160
+ }
161
+
162
+ .calendarForWeek-container {
163
+ display: flex;
164
+ flex-direction: column;
165
+ width: 100%;
166
+ height: 100%;
167
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-weekly-planning",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/index.d.ts",
6
6
  "exports": {