@illinois-grad/grad-vue 3.0.0 → 3.0.1

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/README.md CHANGED
@@ -131,7 +131,7 @@ The project uses Vitest 4 for unit and accessibility testing in **browser mode**
131
131
  npm test
132
132
 
133
133
  # Run tests once
134
- npm run test:run
134
+ npm run test:report
135
135
  ```
136
136
 
137
137
  ### Building
@@ -1869,12 +1869,12 @@
1869
1869
  "members": [
1870
1870
  {
1871
1871
  "kind": "field",
1872
- "name": "title",
1872
+ "name": "heading",
1873
1873
  "type": {
1874
1874
  "text": "string"
1875
1875
  },
1876
1876
  "optional": true,
1877
- "description": "Title and accessible name"
1877
+ "description": "Heading and accessible name"
1878
1878
  },
1879
1879
  {
1880
1880
  "kind": "field",
@@ -2348,12 +2348,12 @@
2348
2348
  "members": [
2349
2349
  {
2350
2350
  "kind": "field",
2351
- "name": "title",
2351
+ "name": "heading",
2352
2352
  "type": {
2353
2353
  "text": "string"
2354
2354
  },
2355
2355
  "optional": true,
2356
- "description": "Title for the popover.",
2356
+ "description": "Heading for the popover.",
2357
2357
  "default": "\"Period Selection\""
2358
2358
  },
2359
2359
  {
@@ -2833,12 +2833,12 @@
2833
2833
  "members": [
2834
2834
  {
2835
2835
  "kind": "field",
2836
- "name": "title",
2836
+ "name": "heading",
2837
2837
  "type": {
2838
2838
  "text": "string"
2839
2839
  },
2840
2840
  "optional": true,
2841
- "description": "Title and accessible name for the nav landmark"
2841
+ "description": "Heading and accessible name for the nav landmark"
2842
2842
  },
2843
2843
  {
2844
2844
  "kind": "field",
@@ -70,10 +70,10 @@ declare const _default: typeof __VLS_export;
70
70
  export default _default;
71
71
  declare const __VLS_export: import("vue").DefineComponent<{
72
72
  /**
73
- * Title and accessible name
73
+ * Heading and accessible name
74
74
  * @demo Sidebar Menu
75
75
  */
76
- title?: string;
76
+ heading?: string;
77
77
  /**
78
78
  * Items for the menu
79
79
  */
@@ -106,10 +106,10 @@ declare const __VLS_export: import("vue").DefineComponent<{
106
106
  "update:modelValue": (value: string | null) => any;
107
107
  }, string, import("vue").PublicProps, Readonly<{
108
108
  /**
109
- * Title and accessible name
109
+ * Heading and accessible name
110
110
  * @demo Sidebar Menu
111
111
  */
112
- title?: string;
112
+ heading?: string;
113
113
  /**
114
114
  * Items for the menu
115
115
  */
@@ -6,10 +6,10 @@ declare const _default: typeof __VLS_export;
6
6
  export default _default;
7
7
  declare const __VLS_export: import("vue").DefineComponent<{
8
8
  /**
9
- * Title for the popover.
9
+ * Heading for the popover.
10
10
  * @demo Period Selection
11
11
  */
12
- title?: string;
12
+ heading?: string;
13
13
  /**
14
14
  * Label for year select.
15
15
  * @demo Select Year
@@ -40,10 +40,10 @@ declare const __VLS_export: import("vue").DefineComponent<{
40
40
  }) => any;
41
41
  }, string, import("vue").PublicProps, Readonly<{
42
42
  /**
43
- * Title for the popover.
43
+ * Heading for the popover.
44
44
  * @demo Period Selection
45
45
  */
46
- title?: string;
46
+ heading?: string;
47
47
  /**
48
48
  * Label for year select.
49
49
  * @demo Select Year
@@ -73,7 +73,7 @@ declare const __VLS_export: import("vue").DefineComponent<{
73
73
  name: string;
74
74
  }) => any) | undefined;
75
75
  }>, {
76
- title: string;
76
+ heading: string;
77
77
  termYears: string[];
78
78
  termNames: string[];
79
79
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -9,7 +9,7 @@
9
9
  * Use `GTreeMenuList` and `GTreeMenuItem` sub-components to build the menu:
10
10
  *
11
11
  * ```vue-html
12
- * <GTreeMenu title="Contents">
12
+ * <GTreeMenu heading="Contents">
13
13
  * <GTreeMenuList>
14
14
  * <GTreeMenuItem label="Chapter 1">
15
15
  * <a href="#ch1">Chapter 1</a>
@@ -23,7 +23,7 @@
23
23
  *
24
24
  * **Props**:
25
25
  *
26
- * - `title` - optional heading and accessible name for the nav landmark.
26
+ * - `heading` - optional heading and accessible name for the nav landmark.
27
27
  * - `listType` - `ul` (default) or `ol`. Use `ol` for numbered
28
28
  * hierarchies such as book chapters. Inherited by nested `GTreeMenuList`
29
29
  * components via provide/inject.
@@ -45,10 +45,10 @@ declare const _default: typeof __VLS_export;
45
45
  export default _default;
46
46
  declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
47
47
  /**
48
- * Title and accessible name for the nav landmark
48
+ * Heading and accessible name for the nav landmark
49
49
  * @demo Tree Menu
50
50
  */
51
- title?: string;
51
+ heading?: string;
52
52
  /**
53
53
  * List element type
54
54
  * @demo
@@ -67,10 +67,10 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
67
67
  storageKey?: string;
68
68
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
69
69
  /**
70
- * Title and accessible name for the nav landmark
70
+ * Heading and accessible name for the nav landmark
71
71
  * @demo Tree Menu
72
72
  */
73
- title?: string;
73
+ heading?: string;
74
74
  /**
75
75
  * List element type
76
76
  * @demo