@atlaskit/calendar 17.2.11 → 17.2.12

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/calendar
2
2
 
3
+ ## 17.2.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 17.2.11
4
10
 
5
11
  ### Patch Changes
@@ -0,0 +1,48 @@
1
+ import path from 'path';
2
+
3
+ import type { ComponentStructuredContentSource } from '@atlassian/structured-docs-types';
4
+
5
+ const documentation: ComponentStructuredContentSource[] = [
6
+ {
7
+ name: 'Calendar',
8
+ description:
9
+ "A calendar component for date selection and display. This component is in Beta phase, meaning it's stable at version 1.0+ but may receive improvements based on customer feedback.",
10
+ status: 'general-availability',
11
+ import: {
12
+ name: 'Calendar',
13
+ package: '@atlaskit/calendar',
14
+ type: 'default',
15
+ packagePath: path.resolve(__dirname),
16
+ packageJson: require('./package.json'),
17
+ },
18
+ usageGuidelines: [
19
+ 'Use for date selection interfaces',
20
+ 'Consider date range limitations',
21
+ 'Provide clear visual feedback for selected dates',
22
+ 'Handle disabled dates appropriately',
23
+ ],
24
+ contentGuidelines: [
25
+ 'Use clear date formatting',
26
+ 'Provide helpful date labels',
27
+ 'Use consistent date terminology',
28
+ 'Consider localization for date display (e.g. locale prop, month/day names, first day of week)',
29
+ ],
30
+ accessibilityGuidelines: [
31
+ 'Provide clear date selection feedback',
32
+ 'Ensure keyboard navigation between dates',
33
+ 'Use appropriate ARIA labels for dates',
34
+ 'Support screen reader announcements for date changes',
35
+ ],
36
+ examples: [
37
+ {
38
+ name: 'Calendar',
39
+ description: 'Calendar example',
40
+ source: path.resolve(__dirname, './examples/ai/calendar.tsx'),
41
+ },
42
+ ],
43
+ keywords: ['calendar', 'date', 'picker', 'selection', 'month', 'year', 'beta'],
44
+ categories: ['form'],
45
+ },
46
+ ];
47
+
48
+ export default documentation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/calendar",
3
- "version": "17.2.11",
3
+ "version": "17.2.12",
4
4
  "description": "An interactive calendar for date selection experiences.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -29,7 +29,7 @@
29
29
  "@atlaskit/css": "^0.19.0",
30
30
  "@atlaskit/ds-lib": "^6.0.0",
31
31
  "@atlaskit/heading": "^5.3.0",
32
- "@atlaskit/icon": "^32.0.0",
32
+ "@atlaskit/icon": "^33.0.0",
33
33
  "@atlaskit/locale": "^3.0.0",
34
34
  "@atlaskit/platform-feature-flags": "^1.1.0",
35
35
  "@atlaskit/primitives": "^18.0.0",
@@ -46,12 +46,13 @@
46
46
  "@af/accessibility-testing": "workspace:^",
47
47
  "@af/integration-testing": "workspace:^",
48
48
  "@af/visual-regression": "workspace:^",
49
- "@atlaskit/docs": "^11.6.0",
49
+ "@atlaskit/docs": "^11.7.0",
50
50
  "@atlaskit/form": "^15.4.0",
51
51
  "@atlaskit/link": "^3.3.0",
52
52
  "@atlaskit/section-message": "^8.12.0",
53
53
  "@atlaskit/select": "^21.8.0",
54
54
  "@atlassian/ssr-tests": "workspace:^",
55
+ "@atlassian/structured-docs-types": "workspace:^",
55
56
  "@testing-library/react": "^16.3.0",
56
57
  "@testing-library/user-event": "^14.4.3",
57
58
  "jest-in-case": "^1.0.2",