@papillonarts/library 0.36.0 → 0.37.0
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/build/a11y/__tests__/A11y.doc.mdx +0 -2
- package/build/a11y/__tests__/__snapshots__/A11y.test.ts.snap +24 -12
- package/build/array/__tests__/__snapshots__/Array.test.ts.snap +1622 -124
- package/build/auth/__tests__/Auth.doc.mdx +9 -0
- package/build/auth/__tests__/__snapshots__/Auth.test.ts.snap +550 -0
- package/build/boolean/__tests__/Boolean.doc.mdx +9 -0
- package/build/boolean/__tests__/__snapshots__/Boolean.test.ts.snap +245 -0
- package/build/browser/__tests__/Browser.doc.mdx +9 -0
- package/build/browser/__tests__/__snapshots__/Browser.test.ts.snap +435 -0
- package/build/date/__tests__/Date.doc.mdx +9 -0
- package/build/date/__tests__/__snapshots__/Date.test.ts.snap +387 -0
- package/build/event/__tests__/Event.doc.mdx +9 -0
- package/build/event/__tests__/__snapshots__/Event.test.ts.snap +234 -0
- package/package.json +2 -2
|
@@ -12,18 +12,6 @@ exports[`<Array /> Render must match checkAccessibilityIssues() 1`] = `
|
|
|
12
12
|
<span>
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
</span>
|
|
16
|
-
<span>
|
|
17
|
-
|
|
18
|
-
</span>
|
|
19
|
-
<span
|
|
20
|
-
style="color: rgb(101, 115, 126);"
|
|
21
|
-
>
|
|
22
|
-
// Papillon Arts Library
|
|
23
|
-
</span>
|
|
24
|
-
<span>
|
|
25
|
-
|
|
26
|
-
|
|
27
15
|
</span>
|
|
28
16
|
<span>
|
|
29
17
|
|
|
@@ -131,3 +119,27 @@ exports[`<Array /> Render must match checkAccessibilityIssues() 1`] = `
|
|
|
131
119
|
</pre>
|
|
132
120
|
</div>
|
|
133
121
|
`;
|
|
122
|
+
|
|
123
|
+
exports[`<Array /> Render must match features() 1`] = `
|
|
124
|
+
<div>
|
|
125
|
+
<h1>A11y</h1>
|
|
126
|
+
<blockquote>
|
|
127
|
+
<p>A11y all functions</p>
|
|
128
|
+
</blockquote>
|
|
129
|
+
<pre><code># Functions
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
<p>
|
|
133
|
+
> checkAccessibilityIssues()
|
|
134
|
+
|
|
135
|
+
</code>
|
|
136
|
+
</pre>
|
|
137
|
+
</p>
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
<h2>checkAccessibilityIssues()</h2>
|
|
141
|
+
<blockquote>
|
|
142
|
+
<p>A11y checkAccessibilityIssues() function</p>
|
|
143
|
+
</blockquote>
|
|
144
|
+
</div>
|
|
145
|
+
`;
|