@toptal/picasso-accordion 1.0.13 → 1.0.15
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/picasso-accordion",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "Toptal UI components library - Accordion",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"homepage": "https://github.com/toptal/picasso/tree/master/packages/picasso#readme",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@toptal/picasso-button": "
|
|
26
|
-
"@toptal/picasso-icons": "1.1.
|
|
27
|
-
"@toptal/picasso-utils": "1.0.
|
|
25
|
+
"@toptal/picasso-button": "2.0.1",
|
|
26
|
+
"@toptal/picasso-icons": "1.1.1",
|
|
27
|
+
"@toptal/picasso-utils": "1.0.3",
|
|
28
28
|
"classnames": "^2.5.1"
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@toptal/picasso-provider": "4.2.1",
|
|
44
|
-
"@toptal/picasso-test-utils": "1.1.
|
|
44
|
+
"@toptal/picasso-test-utils": "1.1.1"
|
|
45
45
|
},
|
|
46
46
|
"files": [
|
|
47
47
|
"dist-package/**",
|
|
@@ -28,16 +28,18 @@ exports[`Accordion renders collapsed by default 1`] = `
|
|
|
28
28
|
class="PicassoAccordion-expandIconAlignTop"
|
|
29
29
|
>
|
|
30
30
|
<button
|
|
31
|
-
|
|
31
|
+
aria-disabled="false"
|
|
32
|
+
class="base-Button text-lg inline-flex items-center justify-center select-none appearance-none m-0 relative normal-case align-middle transition-colors duration-350 ease-out shrink-0 outline-none [&+&]:ml-4 cursor-pointer border-none px-0 bg-transparent h-[1.5em] hover:text-blue hover:underline active:text-blue active:underline focus-visible:shadow-[0_0_0_3px_rgba(32,78,207,0.48)] focus-visible:rounded-sm"
|
|
32
33
|
data-component-type="button"
|
|
34
|
+
role="button"
|
|
33
35
|
tabindex="0"
|
|
34
36
|
type="button"
|
|
35
37
|
>
|
|
36
38
|
<span
|
|
37
|
-
class="PicassoContainer-centerAlignItems PicassoContainer-flex PicassoContainer-inline
|
|
39
|
+
class="PicassoContainer-centerAlignItems PicassoContainer-flex PicassoContainer-inline font-semibold text-blue text-md"
|
|
38
40
|
>
|
|
39
41
|
<svg
|
|
40
|
-
class="PicassoSvgArrowDownMinor16-root
|
|
42
|
+
class="PicassoSvgArrowDownMinor16-root text-[1.2em] flex-1 w-4 h-4 text-graphite PicassoAccordion-expandIcon"
|
|
41
43
|
style="min-width: 16px; min-height: 16px;"
|
|
42
44
|
viewBox="0 0 16 16"
|
|
43
45
|
>
|
|
@@ -172,16 +174,18 @@ exports[`Accordion renders disabled 1`] = `
|
|
|
172
174
|
class="PicassoAccordion-expandIconAlignTop"
|
|
173
175
|
>
|
|
174
176
|
<button
|
|
175
|
-
|
|
177
|
+
aria-disabled="false"
|
|
178
|
+
class="base-Button text-lg inline-flex items-center justify-center select-none appearance-none m-0 relative normal-case align-middle transition-colors duration-350 ease-out shrink-0 outline-none [&+&]:ml-4 cursor-pointer border-none px-0 bg-transparent h-[1.5em] hover:text-blue hover:underline active:text-blue active:underline focus-visible:shadow-[0_0_0_3px_rgba(32,78,207,0.48)] focus-visible:rounded-sm"
|
|
176
179
|
data-component-type="button"
|
|
180
|
+
role="button"
|
|
177
181
|
tabindex="0"
|
|
178
182
|
type="button"
|
|
179
183
|
>
|
|
180
184
|
<span
|
|
181
|
-
class="PicassoContainer-centerAlignItems PicassoContainer-flex PicassoContainer-inline
|
|
185
|
+
class="PicassoContainer-centerAlignItems PicassoContainer-flex PicassoContainer-inline font-semibold text-blue text-md"
|
|
182
186
|
>
|
|
183
187
|
<svg
|
|
184
|
-
class="PicassoSvgArrowDownMinor16-root
|
|
188
|
+
class="PicassoSvgArrowDownMinor16-root text-[1.2em] flex-1 w-4 h-4 text-graphite PicassoAccordion-expandIcon"
|
|
185
189
|
style="min-width: 16px; min-height: 16px;"
|
|
186
190
|
viewBox="0 0 16 16"
|
|
187
191
|
>
|