@utrecht/component-library-vue 1.0.0-alpha.21 → 1.0.0-alpha.210
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 +89 -0
- package/dist/.jest-test-results.json +1 -0
- package/dist/Article.vue.d.ts +2 -0
- package/dist/BadgeStatus.vue.d.ts +18 -0
- package/dist/Button.vue.d.ts +41 -0
- package/dist/ButtonGroup.vue.d.ts +2 -0
- package/dist/Checkbox.vue.d.ts +38 -0
- package/dist/Document.vue.d.ts +2 -0
- package/dist/FormField.vue.d.ts +29 -0
- package/dist/FormFieldset.vue.d.ts +93 -0
- package/dist/FormFieldsetLegend.vue.d.ts +2 -0
- package/dist/FormLabel.vue.d.ts +40 -0
- package/dist/Heading.vue.d.ts +16 -0
- package/dist/Heading1.vue.d.ts +2 -0
- package/dist/Heading2.vue.d.ts +2 -0
- package/dist/Heading3.vue.d.ts +2 -0
- package/dist/Heading4.vue.d.ts +2 -0
- package/dist/Heading5.vue.d.ts +2 -0
- package/dist/Heading6.vue.d.ts +2 -0
- package/dist/Link.vue.d.ts +16 -0
- package/dist/Page.vue.d.ts +2 -0
- package/dist/PageContent.vue.d.ts +2 -0
- package/dist/PageFooter.vue.d.ts +2 -0
- package/dist/PageHeader.vue.d.ts +2 -0
- package/dist/Paragraph.vue.d.ts +16 -0
- package/dist/RadioButton.vue.d.ts +38 -0
- package/dist/Select.vue.d.ts +44 -0
- package/dist/Table.vue.d.ts +2 -0
- package/dist/TableBody.vue.d.ts +2 -0
- package/dist/TableCaption.vue.d.ts +2 -0
- package/dist/TableCell.vue.d.ts +2 -0
- package/dist/TableFooter.vue.d.ts +2 -0
- package/dist/TableHeader.vue.d.ts +2 -0
- package/dist/TableHeaderCell.vue.d.ts +2 -0
- package/dist/TableRow.vue.d.ts +2 -0
- package/dist/Textarea.vue.d.ts +27 -0
- package/dist/Textbox.vue.d.ts +27 -0
- package/dist/component-library-vue.mjs +607 -0
- package/dist/component-library-vue.umd.js +1 -1
- package/dist/helpers/modelWrapper.d.ts +1 -0
- package/dist/index.d.ts +35 -29
- package/dist/style.css +12 -37
- package/package.json +32 -24
- package/dist/UtrechtBadgeStatus.vue.d.ts +0 -12
- package/dist/UtrechtButton.vue.d.ts +0 -39
- package/dist/UtrechtCheckbox.vue.d.ts +0 -67
- package/dist/UtrechtFormLabel.vue.d.ts +0 -31
- package/dist/UtrechtHeading.vue.d.ts +0 -12
- package/dist/UtrechtLink.vue.d.ts +0 -14
- package/dist/UtrechtParagraph.vue.d.ts +0 -14
- package/dist/UtrechtRadioButton.vue.d.ts +0 -64
- package/dist/UtrechtSelect.vue.d.ts +0 -51
- package/dist/UtrechtSelectOption.vue.d.ts +0 -14
- package/dist/UtrechtTextarea.vue.d.ts +0 -59
- package/dist/UtrechtTextbox.vue.d.ts +0 -59
- package/dist/component-library-vue.es.js +0 -603
package/README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
<!-- @license CC0-1.0 -->
|
|
2
|
+
|
|
3
|
+
# Component library for Vue apps
|
|
4
|
+
|
|
5
|
+
The `@utrecht/component-library-vue` package contains Vue implementations of various components. You can use this package in Vue apps, both client side and server side, to render the right HTML elements with the Utrecht design system class names.
|
|
6
|
+
|
|
7
|
+
The CSS components that implement the Utrecht design system class names are published in a separate npm package, so don't forget to install and include `@utrecht/component-library-css` too for the styling of the white-label components, as well as a package with design tokens for your theme.
|
|
8
|
+
|
|
9
|
+
## Stability of the components
|
|
10
|
+
|
|
11
|
+
The Vue components are released as _alpha_ version, which means the components are still work in progress and it is likely that some APIs will between releases.
|
|
12
|
+
|
|
13
|
+
Make sure you specify the exact version as dependency, so you can schedule to upgrade to the latest version when you have time to test for regression bugs.
|
|
14
|
+
|
|
15
|
+
## Vue Component or Vue Web Component?
|
|
16
|
+
|
|
17
|
+
We currently have two packages with Vue components, and you might wonder which to choose. Our Web Components are still experimental and since the Shadow DOM prevents you from simply extending the CSS implementation, you wouldn't be able to easily tweak it to your needs. Therefore we suggest using the Vue components when they are available.
|
|
18
|
+
|
|
19
|
+
In the future this advice might change since some components could be released exclusively as Web Component while others will remain available as CSS component with Vue wrapper only.
|
|
20
|
+
|
|
21
|
+
## Getting started
|
|
22
|
+
|
|
23
|
+
```shell
|
|
24
|
+
npm install --save-dev --save-exact @utrecht/component-library-vue
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
With this package available, you can render any component from the library in your page. For example:
|
|
28
|
+
|
|
29
|
+
```vue
|
|
30
|
+
<script setup lang="ts">
|
|
31
|
+
import { Document, Heading1 } from "@utrecht/component-library-vue";
|
|
32
|
+
</script>
|
|
33
|
+
|
|
34
|
+
<template>
|
|
35
|
+
<!-- Class name to apply the design tokens from the theme -->
|
|
36
|
+
<Document class="utrecht-theme">
|
|
37
|
+
<Heading1>Page styled with NL Design System</Heading1>
|
|
38
|
+
</Document>
|
|
39
|
+
</template>
|
|
40
|
+
|
|
41
|
+
<!--Package with Utrecht design tokens for the white-label components
|
|
42
|
+
Substitute with your another theme for other organisations. -->
|
|
43
|
+
<style src="@utrecht/design-tokens/dist/index.css"></style>
|
|
44
|
+
|
|
45
|
+
<style src="@utrecht/component-library-vue/dist/style.css"></style>
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Components overview
|
|
49
|
+
|
|
50
|
+
We make components for Vue available when needed in a project. Not every component is available yet, and we welcome you to discuss contributions.
|
|
51
|
+
|
|
52
|
+
Currently the following components are available:
|
|
53
|
+
|
|
54
|
+
```js
|
|
55
|
+
import {
|
|
56
|
+
Article,
|
|
57
|
+
BadgeStatus,
|
|
58
|
+
Button,
|
|
59
|
+
ButtonGroup,
|
|
60
|
+
Checkbox,
|
|
61
|
+
Document,
|
|
62
|
+
FormField,
|
|
63
|
+
FormFieldset,
|
|
64
|
+
FormFieldsetLegend,
|
|
65
|
+
FormLabel,
|
|
66
|
+
Heading,
|
|
67
|
+
Heading1,
|
|
68
|
+
Heading2,
|
|
69
|
+
Heading3,
|
|
70
|
+
Heading4,
|
|
71
|
+
Heading5,
|
|
72
|
+
Heading6,
|
|
73
|
+
Link,
|
|
74
|
+
Paragraph,
|
|
75
|
+
Page,
|
|
76
|
+
PageContent,
|
|
77
|
+
PageFooter,
|
|
78
|
+
PageHeader,
|
|
79
|
+
RadioButton,
|
|
80
|
+
Select,
|
|
81
|
+
SelectOption,
|
|
82
|
+
Textbox,
|
|
83
|
+
Textarea,
|
|
84
|
+
} from "@utrecht/component-library-vue";
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## Contributing
|
|
88
|
+
|
|
89
|
+
When a project needs a component from the design system that already exists as CSS component with an HTML example, they will create a Vue component for it internally. Projects that have new Vue components can let the design system team know and create a pull request to include it in this component library. No
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":20,"numPassedTests":171,"numPendingTestSuites":0,"numPendingTests":1,"numRuntimeErrorTestSuites":0,"numTodoTests":2,"numTotalTestSuites":20,"numTotalTests":174,"openHandles":[],"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0},"startTime":1674653141192,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":["Heading"],"duration":187,"failureDetails":[],"failureMessages":[],"fullName":"Heading renders a heading role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading role element"},{"ancestorTitles":["Heading"],"duration":47,"failureDetails":[],"failureMessages":[],"fullName":"Heading renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Heading"],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Heading can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Heading"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Heading can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"},{"ancestorTitles":["Heading","Heading 1"],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 1 can render a heading at heading level 1","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a heading at heading level 1"},{"ancestorTitles":["Heading","Heading 1"],"duration":19,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 1 renders an HTML h1 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h1 element"},{"ancestorTitles":["Heading","Heading 1"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 1 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading","Heading 1"],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 1 can render a heading at heading level 1","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a heading at heading level 1"},{"ancestorTitles":["Heading","Heading 1"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 1 renders an HTML h1 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h1 element"},{"ancestorTitles":["Heading","Heading 1"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 1 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading","Heading 1"],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 1 can render a heading at heading level 1","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a heading at heading level 1"},{"ancestorTitles":["Heading","Heading 1"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 1 renders an HTML h1 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h1 element"},{"ancestorTitles":["Heading","Heading 1"],"duration":17,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 1 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading","Heading 2"],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 2 can render a heading at heading level 2","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a heading at heading level 2"},{"ancestorTitles":["Heading","Heading 2"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 2 renders an HTML h2 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h2 element"},{"ancestorTitles":["Heading","Heading 2"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 2 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading","Heading 3"],"duration":8,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 3 can render a heading at heading level 3","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a heading at heading level 3"},{"ancestorTitles":["Heading","Heading 3"],"duration":10,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 3 renders an HTML h3 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h3 element"},{"ancestorTitles":["Heading","Heading 3"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 3 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading","Heading 4"],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 4 can render a heading at heading level 4","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a heading at heading level 4"},{"ancestorTitles":["Heading","Heading 4"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 4 renders an HTML h4 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h4 element"},{"ancestorTitles":["Heading","Heading 4"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 4 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading","Heading 5"],"duration":16,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 5 can render a heading at heading level 5","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a heading at heading level 5"},{"ancestorTitles":["Heading","Heading 5"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 5 renders an HTML h5 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h5 element"},{"ancestorTitles":["Heading","Heading 5"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 5 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading","Heading 6"],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 6 can render a heading at heading level 6","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a heading at heading level 6"},{"ancestorTitles":["Heading","Heading 6"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 6 renders an HTML h6 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h6 element"},{"ancestorTitles":["Heading","Heading 6"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading 6 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading","Heading level greater than 6"],"duration":22,"failureDetails":[],"failureMessages":[],"fullName":"Heading Heading level greater than 6 renders maximum heading level 6","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders maximum heading level 6"}],"endTime":1674653149460,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Heading.test.ts","startTime":1674653142315,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Button"],"duration":86,"failureDetails":[],"failureMessages":[],"fullName":"Button renders a button role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a button role element"},{"ancestorTitles":["Button"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"Button renders an HTML button element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML button element"},{"ancestorTitles":["Button"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Button renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Button"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"Button renders a label that can contain rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a label that can contain rich text content"},{"ancestorTitles":["Button","busy state"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Button busy state is not busy by default","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"is not busy by default"},{"ancestorTitles":["Button","busy state"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Button busy state does not specify `aria-busy` when not busy","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"does not specify `aria-busy` when not busy"},{"ancestorTitles":["Button","busy state"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Button busy state can have a busy state","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a busy state"},{"ancestorTitles":["Button","busy state"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Button busy state renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Button","disabled state"],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Button disabled state is not disabled by default","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"is not disabled by default"},{"ancestorTitles":["Button","disabled state"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Button disabled state does not specify `aria-disabled` when not disabled","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"does not specify `aria-disabled` when not disabled"},{"ancestorTitles":["Button","disabled state"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Button disabled state can have a disabled state","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a disabled state"},{"ancestorTitles":["Button","submit button"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Button submit button is not a submit button by default","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"is not a submit button by default"},{"ancestorTitles":["Button","submit button"],"duration":17,"failureDetails":[],"failureMessages":[],"fullName":"Button submit button can be a submit button","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be a submit button"},{"ancestorTitles":["Button","submit button"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Button submit button renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Button","primary action appearance"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Button primary action appearance is not a primary-action-button by default","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"is not a primary-action-button by default"},{"ancestorTitles":["Button","primary action appearance"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"Button primary action appearance can have a primary-action-button appearance","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a primary-action-button appearance"},{"ancestorTitles":["Button","primary action appearance"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Button primary action appearance renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Button","secondary action appearance"],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Button secondary action appearance is not a secondary-action-button by default","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"is not a secondary-action-button by default"},{"ancestorTitles":["Button","secondary action appearance"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Button secondary action appearance can have a secondary-action-button appearance","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a secondary-action-button appearance"},{"ancestorTitles":["Button","secondary action appearance"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Button secondary action appearance renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Button","subtle appearance"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Button subtle appearance is not a subtle-button by default","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"is not a subtle-button by default"},{"ancestorTitles":["Button","subtle appearance"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Button subtle appearance can have a subtle-button appearance","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a subtle-button appearance"},{"ancestorTitles":["Button","subtle appearance"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"Button subtle appearance renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Button"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Button can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Button"],"duration":22,"failureDetails":[],"failureMessages":[],"fullName":"Button can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653150960,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Button.test.ts","startTime":1674653149482,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Fieldset"],"duration":61,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset renders a group role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a group role element"},{"ancestorTitles":["Fieldset"],"duration":59,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset renders a group role element with a legend","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a group role element with a legend"},{"ancestorTitles":["Fieldset"],"duration":null,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset renders a group role element with a legend component","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"pending","title":"renders a group role element with a legend component"},{"ancestorTitles":["Fieldset"],"duration":34,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset renders a group role element with a label","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a group role element with a label"},{"ancestorTitles":["Fieldset"],"duration":56,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset renders a group role element with a connected label","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a group role element with a connected label"},{"ancestorTitles":["Fieldset"],"duration":43,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset renders a group role element with a connected description","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a group role element with a connected description"},{"ancestorTitles":["Fieldset"],"duration":38,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset can be configured with a radiogroup role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be configured with a radiogroup role element"},{"ancestorTitles":["Fieldset"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset renders an HTML fieldset element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML fieldset element"},{"ancestorTitles":["Fieldset"],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Fieldset"],"duration":32,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Fieldset"],"duration":8,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset can be disabled","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be disabled"},{"ancestorTitles":["Fieldset"],"duration":31,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset can be invalid","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be invalid"},{"ancestorTitles":["Fieldset"],"duration":null,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset can be associated with a form using the `form` attribute","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"todo","title":"can be associated with a form using the `form` attribute"},{"ancestorTitles":["Fieldset"],"duration":null,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset can be associated `form.elements` using the `name` attribute","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"todo","title":"can be associated `form.elements` using the `name` attribute"},{"ancestorTitles":["Fieldset"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Fieldset"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Fieldset can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653152565,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/FormFieldset.test.ts","startTime":1674653150992,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Paragraph"],"duration":49,"failureDetails":[],"failureMessages":[],"fullName":"Paragraph renders a implicit paragraph role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a implicit paragraph role element"},{"ancestorTitles":["Paragraph"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Paragraph renders an HTML p element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML p element"},{"ancestorTitles":["Paragraph"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Paragraph renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Paragraph"],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"Paragraph renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Paragraph"],"duration":22,"failureDetails":[],"failureMessages":[],"fullName":"Paragraph can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Paragraph"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Paragraph can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"},{"ancestorTitles":["Paragraph","lead variant"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"Paragraph lead variant is not a lead paragraph variant by default","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"is not a lead paragraph variant by default"},{"ancestorTitles":["Paragraph","lead variant"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Paragraph lead variant has a lead paragraph variant","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"has a lead paragraph variant"}],"endTime":1674653154167,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Paragraph.test.ts","startTime":1674653152771,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Heading 6"],"duration":92,"failureDetails":[],"failureMessages":[],"fullName":"Heading 6 renders a heading role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading role element"},{"ancestorTitles":["Heading 6"],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Heading 6 renders a heading at heading level 6","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading at heading level 6"},{"ancestorTitles":["Heading 6"],"duration":28,"failureDetails":[],"failureMessages":[],"fullName":"Heading 6 renders an HTML h6 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h6 element"},{"ancestorTitles":["Heading 6"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Heading 6 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading 6"],"duration":36,"failureDetails":[],"failureMessages":[],"fullName":"Heading 6 renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Heading 6"],"duration":29,"failureDetails":[],"failureMessages":[],"fullName":"Heading 6 can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Heading 6"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 6 can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653155303,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Heading6.test.ts","startTime":1674653154200,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Heading 5"],"duration":73,"failureDetails":[],"failureMessages":[],"fullName":"Heading 5 renders a heading role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading role element"},{"ancestorTitles":["Heading 5"],"duration":8,"failureDetails":[],"failureMessages":[],"fullName":"Heading 5 renders a heading at heading level 5","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading at heading level 5"},{"ancestorTitles":["Heading 5"],"duration":19,"failureDetails":[],"failureMessages":[],"fullName":"Heading 5 renders an HTML h5 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h5 element"},{"ancestorTitles":["Heading 5"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Heading 5 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading 5"],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Heading 5 renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Heading 5"],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Heading 5 can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Heading 5"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Heading 5 can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653156634,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Heading5.test.ts","startTime":1674653155329,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Heading 4"],"duration":118,"failureDetails":[],"failureMessages":[],"fullName":"Heading 4 renders a heading role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading role element"},{"ancestorTitles":["Heading 4"],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"Heading 4 renders a heading at heading level 4","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading at heading level 4"},{"ancestorTitles":["Heading 4"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Heading 4 renders an HTML h4 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h4 element"},{"ancestorTitles":["Heading 4"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 4 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading 4"],"duration":31,"failureDetails":[],"failureMessages":[],"fullName":"Heading 4 renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Heading 4"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Heading 4 can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Heading 4"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 4 can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653157933,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Heading4.test.ts","startTime":1674653156663,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Heading 3"],"duration":69,"failureDetails":[],"failureMessages":[],"fullName":"Heading 3 renders a heading role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading role element"},{"ancestorTitles":["Heading 3"],"duration":8,"failureDetails":[],"failureMessages":[],"fullName":"Heading 3 renders a heading at heading level 3","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading at heading level 3"},{"ancestorTitles":["Heading 3"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 3 renders an HTML h3 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h3 element"},{"ancestorTitles":["Heading 3"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 3 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading 3"],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Heading 3 renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Heading 3"],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"Heading 3 can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Heading 3"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 3 can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653159104,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Heading3.test.ts","startTime":1674653157961,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Heading 2"],"duration":240,"failureDetails":[],"failureMessages":[],"fullName":"Heading 2 renders a heading role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading role element"},{"ancestorTitles":["Heading 2"],"duration":50,"failureDetails":[],"failureMessages":[],"fullName":"Heading 2 renders a heading at heading level 2","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading at heading level 2"},{"ancestorTitles":["Heading 2"],"duration":27,"failureDetails":[],"failureMessages":[],"fullName":"Heading 2 renders an HTML h2 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h2 element"},{"ancestorTitles":["Heading 2"],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"Heading 2 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading 2"],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"Heading 2 renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Heading 2"],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"Heading 2 can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Heading 2"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 2 can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653160610,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Heading2.test.ts","startTime":1674653159123,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Heading 1"],"duration":63,"failureDetails":[],"failureMessages":[],"fullName":"Heading 1 renders a heading role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading role element"},{"ancestorTitles":["Heading 1"],"duration":21,"failureDetails":[],"failureMessages":[],"fullName":"Heading 1 renders a heading at heading level 1","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a heading at heading level 1"},{"ancestorTitles":["Heading 1"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 1 renders an HTML h1 element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML h1 element"},{"ancestorTitles":["Heading 1"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 1 renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Heading 1"],"duration":19,"failureDetails":[],"failureMessages":[],"fullName":"Heading 1 renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Heading 1"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Heading 1 can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Heading 1"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Heading 1 can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653161718,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Heading1.test.ts","startTime":1674653160647,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Table header cell"],"duration":42,"failureDetails":[],"failureMessages":[],"fullName":"Table header cell can render a columnheader role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a columnheader role element"},{"ancestorTitles":["Table header cell"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"Table header cell can render a rowheader role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a rowheader role element"},{"ancestorTitles":["Table header cell"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table header cell renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Table header cell"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"Table header cell renders an HTML th element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML th element"},{"ancestorTitles":["Table header cell"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Table header cell can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Table header cell"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table header cell can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653162791,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/TableHeaderCell.test.ts","startTime":1674653161766,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Document"],"duration":35,"failureDetails":[],"failureMessages":[],"fullName":"Document renders an HTML div element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML div element"},{"ancestorTitles":["Document"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Document renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Document"],"duration":10,"failureDetails":[],"failureMessages":[],"fullName":"Document displays as CSS block element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"displays as CSS block element"},{"ancestorTitles":["Document"],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"Document renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Document"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Document can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Document"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Document can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653163726,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Document.test.ts","startTime":1674653162803,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Article"],"duration":35,"failureDetails":[],"failureMessages":[],"fullName":"Article renders a article role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a article role element"},{"ancestorTitles":["Article"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Article renders an HTML article element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML article element"},{"ancestorTitles":["Article"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Article renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Article"],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Article renders rich text content","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders rich text content"},{"ancestorTitles":["Article"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Article can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Article"],"duration":23,"failureDetails":[],"failureMessages":[],"fullName":"Article can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653164678,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Article.test.ts","startTime":1674653163779,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Table"],"duration":134,"failureDetails":[],"failureMessages":[],"fullName":"Table renders a table role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a table role element"},{"ancestorTitles":["Table"],"duration":24,"failureDetails":[],"failureMessages":[],"fullName":"Table can render a table role element with an accessible name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can render a table role element with an accessible name"},{"ancestorTitles":["Table"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Table"],"duration":19,"failureDetails":[],"failureMessages":[],"fullName":"Table renders an HTML table element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML table element"},{"ancestorTitles":["Table"],"duration":61,"failureDetails":[],"failureMessages":[],"fullName":"Table can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Table"],"duration":29,"failureDetails":[],"failureMessages":[],"fullName":"Table can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653165777,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/Table.test.ts","startTime":1674653164699,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Table caption"],"duration":35,"failureDetails":[],"failureMessages":[],"fullName":"Table caption renders an element without role","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an element without role"},{"ancestorTitles":["Table caption"],"duration":16,"failureDetails":[],"failureMessages":[],"fullName":"Table caption renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Table caption"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table caption renders an HTML caption element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML caption element"},{"ancestorTitles":["Table caption"],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"Table caption can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Table caption"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Table caption can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653167073,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/TableCaption.test.ts","startTime":1674653165909,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Table header"],"duration":70,"failureDetails":[],"failureMessages":[],"fullName":"Table header renders a rowgroup role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a rowgroup role element"},{"ancestorTitles":["Table header"],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Table header renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Table header"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table header renders an HTML thead element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML thead element"},{"ancestorTitles":["Table header"],"duration":16,"failureDetails":[],"failureMessages":[],"fullName":"Table header can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Table header"],"duration":17,"failureDetails":[],"failureMessages":[],"fullName":"Table header can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653167928,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/TableHeader.test.ts","startTime":1674653167111,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Table footer"],"duration":61,"failureDetails":[],"failureMessages":[],"fullName":"Table footer renders a rowgroup role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a rowgroup role element"},{"ancestorTitles":["Table footer"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Table footer renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Table footer"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table footer renders an HTML tfoot element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML tfoot element"},{"ancestorTitles":["Table footer"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"Table footer can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Table footer"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Table footer can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653168753,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/TableFooter.test.ts","startTime":1674653167972,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Table body"],"duration":52,"failureDetails":[],"failureMessages":[],"fullName":"Table body renders a rowgroup role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a rowgroup role element"},{"ancestorTitles":["Table body"],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"Table body renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Table body"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table body renders an HTML tbody element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML tbody element"},{"ancestorTitles":["Table body"],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"Table body can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Table body"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table body can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653169698,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/TableBody.test.ts","startTime":1674653168804,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Table cell"],"duration":58,"failureDetails":[],"failureMessages":[],"fullName":"Table cell renders a cell role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a cell role element"},{"ancestorTitles":["Table cell"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Table cell renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Table cell"],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Table cell renders an HTML td element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML td element"},{"ancestorTitles":["Table cell"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"Table cell can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Table cell"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table cell can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653170548,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/TableCell.test.ts","startTime":1674653169726,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["Table row"],"duration":76,"failureDetails":[],"failureMessages":[],"fullName":"Table row renders a row role element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a row role element"},{"ancestorTitles":["Table row"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table row renders a design system BEM class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders a design system BEM class name"},{"ancestorTitles":["Table row"],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Table row renders an HTML tr element","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"renders an HTML tr element"},{"ancestorTitles":["Table row"],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Table row can be hidden","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can be hidden"},{"ancestorTitles":["Table row"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Table row can have a custom class name","invocations":1,"location":null,"numPassingAsserts":0,"retryReasons":[],"status":"passed","title":"can have a custom class name"}],"endTime":1674653171676,"message":"","name":"/home/runner/work/utrecht/utrecht/packages/component-library-vue/src/TableRow.test.ts","startTime":1674653170590,"status":"passed","summary":""}],"wasInterrupted":false}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
declare type StatusType = "danger" | "warning" | "safe" | "neutral" | "valid" | "invalid" | "error" | "success" | "active" | "inactive" | undefined;
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
status: {
|
|
5
|
+
type: PropType<StatusType>;
|
|
6
|
+
required: false;
|
|
7
|
+
default: undefined;
|
|
8
|
+
};
|
|
9
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
status: {
|
|
11
|
+
type: PropType<StatusType>;
|
|
12
|
+
required: false;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>>, {
|
|
16
|
+
status: StatusType;
|
|
17
|
+
}>;
|
|
18
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
declare type AppearanceType = "primary-action-button" | "secondary-action-button" | "subtle-button" | undefined;
|
|
3
|
+
declare type ButtonTypes = "button" | "reset" | "submit";
|
|
4
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
|
+
appearance: {
|
|
6
|
+
type: PropType<AppearanceType>;
|
|
7
|
+
required: false;
|
|
8
|
+
default: undefined;
|
|
9
|
+
};
|
|
10
|
+
type: {
|
|
11
|
+
type: PropType<ButtonTypes>;
|
|
12
|
+
required: false;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
busy: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
appearance: {
|
|
22
|
+
type: PropType<AppearanceType>;
|
|
23
|
+
required: false;
|
|
24
|
+
default: undefined;
|
|
25
|
+
};
|
|
26
|
+
type: {
|
|
27
|
+
type: PropType<ButtonTypes>;
|
|
28
|
+
required: false;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
busy: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
}>>, {
|
|
37
|
+
type: ButtonTypes;
|
|
38
|
+
appearance: AppearanceType;
|
|
39
|
+
busy: boolean;
|
|
40
|
+
}>;
|
|
41
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
appearance: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
invalid: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
modelValue: {
|
|
12
|
+
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
13
|
+
required: false;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
}, {
|
|
17
|
+
value: import("vue").WritableComputedRef<any>;
|
|
18
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
appearance: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
required: false;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
invalid: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
required: false;
|
|
27
|
+
};
|
|
28
|
+
modelValue: {
|
|
29
|
+
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
30
|
+
required: false;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
}>>, {
|
|
34
|
+
invalid: boolean;
|
|
35
|
+
appearance: string;
|
|
36
|
+
modelValue: string | number | boolean;
|
|
37
|
+
}>;
|
|
38
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
declare type FormFieldTypes = "checkbox" | "radio" | "text" | undefined;
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
invalid: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
required: false;
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
9
|
+
type: {
|
|
10
|
+
type: PropType<FormFieldTypes>;
|
|
11
|
+
required: false;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
invalid: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
type: {
|
|
21
|
+
type: PropType<FormFieldTypes>;
|
|
22
|
+
required: false;
|
|
23
|
+
default: undefined;
|
|
24
|
+
};
|
|
25
|
+
}>>, {
|
|
26
|
+
type: FormFieldTypes;
|
|
27
|
+
invalid: boolean;
|
|
28
|
+
}>;
|
|
29
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
describedby: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
default: undefined;
|
|
6
|
+
};
|
|
7
|
+
disabled: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
invalid: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
required: false;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
label: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
required: false;
|
|
20
|
+
default: undefined;
|
|
21
|
+
};
|
|
22
|
+
labelledby: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
required: false;
|
|
25
|
+
default: undefined;
|
|
26
|
+
};
|
|
27
|
+
role: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
default: null;
|
|
31
|
+
};
|
|
32
|
+
name: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
required: false;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
form: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
required: false;
|
|
40
|
+
default: null;
|
|
41
|
+
};
|
|
42
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
43
|
+
describedby: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
required: false;
|
|
46
|
+
default: undefined;
|
|
47
|
+
};
|
|
48
|
+
disabled: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
required: false;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
invalid: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
required: false;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
label: {
|
|
59
|
+
type: StringConstructor;
|
|
60
|
+
required: false;
|
|
61
|
+
default: undefined;
|
|
62
|
+
};
|
|
63
|
+
labelledby: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
required: false;
|
|
66
|
+
default: undefined;
|
|
67
|
+
};
|
|
68
|
+
role: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
required: false;
|
|
71
|
+
default: null;
|
|
72
|
+
};
|
|
73
|
+
name: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
required: false;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
78
|
+
form: {
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
required: false;
|
|
81
|
+
default: null;
|
|
82
|
+
};
|
|
83
|
+
}>>, {
|
|
84
|
+
name: string;
|
|
85
|
+
invalid: boolean;
|
|
86
|
+
describedby: string;
|
|
87
|
+
disabled: boolean;
|
|
88
|
+
label: string;
|
|
89
|
+
labelledby: string;
|
|
90
|
+
role: string;
|
|
91
|
+
form: string;
|
|
92
|
+
}>;
|
|
93
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
declare type LabelTypes = "radio" | "checkbox" | undefined;
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
checked: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
required: false;
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
9
|
+
disabled: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
type: {
|
|
15
|
+
type: PropType<LabelTypes>;
|
|
16
|
+
required: false;
|
|
17
|
+
default: undefined;
|
|
18
|
+
};
|
|
19
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
checked: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
required: false;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
disabled: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
required: false;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
type: {
|
|
31
|
+
type: PropType<LabelTypes>;
|
|
32
|
+
required: false;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
}>>, {
|
|
36
|
+
type: LabelTypes;
|
|
37
|
+
disabled: boolean;
|
|
38
|
+
checked: boolean;
|
|
39
|
+
}>;
|
|
40
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
level: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
level: {
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
required: true;
|
|
11
|
+
default: number;
|
|
12
|
+
};
|
|
13
|
+
}>>, {
|
|
14
|
+
level: number;
|
|
15
|
+
}>;
|
|
16
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
external: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
external: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
required: false;
|
|
11
|
+
default: boolean;
|
|
12
|
+
};
|
|
13
|
+
}>>, {
|
|
14
|
+
external: boolean;
|
|
15
|
+
}>;
|
|
16
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|