@app-studio/web 0.9.34 → 0.9.35
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/components/Calendar/Calendar/Calendar.style.d.ts +4 -0
- package/dist/components/index.d.ts +0 -3
- package/dist/web.cjs.development.js +166 -605
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +167 -605
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +169 -607
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/docs/components/Calendar.mdx +22 -110
- package/docs/components/KanbanBoard.mdx +156 -0
- package/package.json +1 -1
- package/dist/components/CalendarWeek/CalendarWeek/CalendarWeek.props.d.ts +0 -51
- package/dist/components/CalendarWeek/CalendarWeek/CalendarWeek.style.d.ts +0 -90
- package/dist/components/CalendarWeek/CalendarWeek/CalendarWeek.utils.d.ts +0 -51
- package/dist/components/CalendarWeek/CalendarWeek/CalendarWeek.view.d.ts +0 -3
- package/dist/components/CalendarWeek/CalendarWeek.d.ts +0 -1
|
@@ -61,6 +61,10 @@ export declare const weekdayLabelStyles: ViewProps;
|
|
|
61
61
|
* Individual day cell styles
|
|
62
62
|
*/
|
|
63
63
|
export declare const dayCellStyles: ViewProps;
|
|
64
|
+
/**
|
|
65
|
+
* Day date styles (the circular number)
|
|
66
|
+
*/
|
|
67
|
+
export declare const dayDateStyles: ViewProps;
|
|
64
68
|
/**
|
|
65
69
|
* Day cell from different month
|
|
66
70
|
*/
|
|
@@ -11,8 +11,6 @@ export * from './Carousel/Carousel';
|
|
|
11
11
|
export * from './Chart/Chart';
|
|
12
12
|
export * from './KanbanBoard/KanbanBoard';
|
|
13
13
|
export * from './Calendar/Calendar';
|
|
14
|
-
export * from './CalendarWeek/CalendarWeek';
|
|
15
|
-
export * from './Calendar/Calendar';
|
|
16
14
|
export * from './CookieConsent/CookieConsent';
|
|
17
15
|
export * from './ContextMenu/ContextMenu';
|
|
18
16
|
export * from './File/File';
|
|
@@ -82,7 +80,6 @@ export * from './KanbanBoard/KanbanBoard/KanbanBoard.props';
|
|
|
82
80
|
export * from './Carousel/Carousel/Carousel.props';
|
|
83
81
|
export * from './Chart/Chart/Chart.props';
|
|
84
82
|
export * from './Calendar/Calendar/Calendar.props';
|
|
85
|
-
export * from './CalendarWeek/CalendarWeek/CalendarWeek.props';
|
|
86
83
|
export * from './CookieConsent/CookieConsent/CookieConsent.props';
|
|
87
84
|
export * from './ContextMenu/ContextMenu/ContextMenu.props';
|
|
88
85
|
export * from './Form/Select/Select/Select.props';
|