@headless-adminapp/fluent 0.0.17-alpha.64 → 0.0.17-alpha.65
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/PageCalendar/CalendarSection.d.ts +20 -0
- package/PageCalendar/CalendarSection.js +108 -0
- package/PageCalendar/EventDialog/AttributeController.d.ts +10 -0
- package/PageCalendar/EventDialog/AttributeController.js +17 -0
- package/PageCalendar/EventDialog/EventDialog.d.ts +25 -0
- package/PageCalendar/EventDialog/EventDialog.js +21 -0
- package/PageCalendar/EventDialog/EventFormBody.d.ts +18 -0
- package/PageCalendar/EventDialog/EventFormBody.js +69 -0
- package/PageCalendar/EventDialog/EventFormContent.d.ts +10 -0
- package/PageCalendar/EventDialog/EventFormContent.js +27 -0
- package/PageCalendar/EventDialog/types.d.ts +3 -0
- package/PageCalendar/EventDialog/types.js +2 -0
- package/PageCalendar/EventDialog/utils.d.ts +23 -0
- package/PageCalendar/EventDialog/utils.js +57 -0
- package/PageCalendar/Header.d.ts +8 -0
- package/PageCalendar/Header.js +35 -0
- package/PageCalendar/PageCalendar.d.ts +7 -0
- package/PageCalendar/PageCalendar.js +231 -0
- package/PageCalendar/TitleSelector.d.ts +10 -0
- package/PageCalendar/TitleSelector.js +73 -0
- package/PageCalendar/ViewSelector.d.ts +8 -0
- package/PageCalendar/ViewSelector.js +52 -0
- package/PageCalendar/baseEventAttributes.d.ts +35 -0
- package/PageCalendar/baseEventAttributes.js +38 -0
- package/PageCalendar/context.d.ts +20 -0
- package/PageCalendar/context.js +5 -0
- package/PageCalendar/hooks/index.d.ts +1 -0
- package/PageCalendar/hooks/index.js +17 -0
- package/PageCalendar/hooks/useConfig.d.ts +3 -0
- package/PageCalendar/hooks/useConfig.js +8 -0
- package/PageCalendar/index.d.ts +1 -0
- package/PageCalendar/index.js +5 -0
- package/PageCalendar/renderEventContent.d.ts +2 -0
- package/PageCalendar/renderEventContent.js +22 -0
- package/PageCalendar/types.d.ts +5 -0
- package/PageCalendar/types.js +9 -0
- package/PageCalendar/utils.d.ts +3 -0
- package/PageCalendar/utils.js +17 -0
- package/components/BodyLoading.d.ts +1 -1
- package/components/BodyLoading.js +1 -0
- package/form/controls/DateControl.d.ts +1 -1
- package/form/controls/DateTimeControl.js +11 -3
- package/package.json +8 -2
- package/styles.css +49 -0
- package/types/index.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@headless-adminapp/fluent",
|
|
3
|
-
"version": "0.0.17-alpha.
|
|
3
|
+
"version": "0.0.17-alpha.65",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -21,10 +21,16 @@
|
|
|
21
21
|
"author": "",
|
|
22
22
|
"license": "ISC",
|
|
23
23
|
"dependencies": {
|
|
24
|
+
"@fluentui/react-calendar-compat": "0.1.20",
|
|
24
25
|
"@fluentui/react-components": "9.54.4",
|
|
25
26
|
"@fluentui/react-datepicker-compat": "0.4.43",
|
|
26
27
|
"@fluentui/react-nav-preview": "0.5.1",
|
|
27
28
|
"@fluentui/react-timepicker-compat": "0.2.46",
|
|
29
|
+
"@fullcalendar/core": "6.1.15",
|
|
30
|
+
"@fullcalendar/daygrid": "6.1.15",
|
|
31
|
+
"@fullcalendar/interaction": "6.1.15",
|
|
32
|
+
"@fullcalendar/react": "6.1.15",
|
|
33
|
+
"@fullcalendar/timegrid": "6.1.15",
|
|
28
34
|
"@hookform/resolvers": "^3.9.0",
|
|
29
35
|
"@tanstack/react-query": "5.51.1",
|
|
30
36
|
"@tanstack/react-table": "^8.20.1",
|
|
@@ -42,5 +48,5 @@
|
|
|
42
48
|
"uuid": "11.0.3",
|
|
43
49
|
"yup": "^1.4.0"
|
|
44
50
|
},
|
|
45
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "595c5026f49f2c617f67ca33cd59b42e063f1e1d"
|
|
46
52
|
}
|
package/styles.css
CHANGED
|
@@ -98,3 +98,52 @@ body {
|
|
|
98
98
|
.hdlapp_rte .ql-container.ql-snow {
|
|
99
99
|
border: none;
|
|
100
100
|
}
|
|
101
|
+
|
|
102
|
+
.fc {
|
|
103
|
+
font-family: var(--fontFamilyBase);
|
|
104
|
+
font-size: var(--fontSizeBase300);
|
|
105
|
+
font-weight: var(--fontWeightRegular);
|
|
106
|
+
line-height: var(--lineHeightBase300);
|
|
107
|
+
--fc-border-color: var(--colorNeutralStroke3);
|
|
108
|
+
}
|
|
109
|
+
.fc .fc-button {
|
|
110
|
+
background-color: var(--colorNeutralBackground1);
|
|
111
|
+
color: var(--colorNeutralForeground1);
|
|
112
|
+
border-color: var(--colorNeutralStroke1);
|
|
113
|
+
}
|
|
114
|
+
.fc .fc-button:hover {
|
|
115
|
+
background-color: var(--colorNeutralBackground1Hover);
|
|
116
|
+
border-color: var(--colorNeutralStroke1Hover);
|
|
117
|
+
color: var(--colorNeutralForeground1Hover);
|
|
118
|
+
}
|
|
119
|
+
.fc .fc-button.fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button.fc-button-primary:not(:disabled):active {
|
|
120
|
+
background-color: var(--colorBrandBackground);
|
|
121
|
+
color: var(--colorNeutralForegroundOnBrand);
|
|
122
|
+
border-color: var(--colorBrandBackground);
|
|
123
|
+
}
|
|
124
|
+
.fc .fc-daygrid-dot-event.fc-event-mirror,
|
|
125
|
+
.fc .fc-daygrid-dot-event:hover {
|
|
126
|
+
background-color: transparent;
|
|
127
|
+
}
|
|
128
|
+
.fc .fc-day.fc-daygrid-day.fc-day-past {
|
|
129
|
+
background-color: var(--colorNeutralBackground2);
|
|
130
|
+
}
|
|
131
|
+
.fc .fc-timegrid-event-harness-inset .fc-timegrid-event,
|
|
132
|
+
.fc .fc-timegrid-event.fc-event-mirror,
|
|
133
|
+
.fc .fc-timegrid-more-link {
|
|
134
|
+
border: 0px;
|
|
135
|
+
box-shadow: none;
|
|
136
|
+
}
|
|
137
|
+
.fc .fc-event-main {
|
|
138
|
+
padding: 0px;
|
|
139
|
+
}
|
|
140
|
+
.fc .fc-col-header-cell {
|
|
141
|
+
font-weight: var(--fontWeightMedium);
|
|
142
|
+
text-align: left;
|
|
143
|
+
}
|
|
144
|
+
.fc .fc-timegrid-slot {
|
|
145
|
+
height: 2em;
|
|
146
|
+
}
|
|
147
|
+
.fc .fc-daygrid-day-top {
|
|
148
|
+
flex-direction: row;
|
|
149
|
+
}
|