@d-zero/custom-components 5.0.0 → 5.1.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/dist/breadcrumbs.js +3 -3
- package/dist/hamburger-menu.js +4 -4
- package/package.json +11 -9
package/dist/breadcrumbs.js
CHANGED
|
@@ -41,7 +41,7 @@ export class Breadcrumbs extends HTMLElement {
|
|
|
41
41
|
--current-color: ${Breadcrumbs.defaultStyle.currentColor};
|
|
42
42
|
--font: ${Breadcrumbs.defaultStyle.font};
|
|
43
43
|
--current-font: ${Breadcrumbs.defaultStyle.currentFont};
|
|
44
|
-
display: block;
|
|
44
|
+
display: block flow;
|
|
45
45
|
}
|
|
46
46
|
* {
|
|
47
47
|
box-sizing: border-box;
|
|
@@ -49,7 +49,7 @@ export class Breadcrumbs extends HTMLElement {
|
|
|
49
49
|
ol {
|
|
50
50
|
font: var(--font);
|
|
51
51
|
color: var(--color);
|
|
52
|
-
display: flex;
|
|
52
|
+
display: block flex;
|
|
53
53
|
flex-wrap: wrap;
|
|
54
54
|
list-style: none;
|
|
55
55
|
padding: 0;
|
|
@@ -60,7 +60,7 @@ export class Breadcrumbs extends HTMLElement {
|
|
|
60
60
|
align-items: center;
|
|
61
61
|
}
|
|
62
62
|
:host::part(separator) {
|
|
63
|
-
display: block;
|
|
63
|
+
display: block flow;
|
|
64
64
|
margin: 0 var(--separator-spacing);
|
|
65
65
|
color: var(--separator-color);
|
|
66
66
|
}
|
package/dist/hamburger-menu.js
CHANGED
|
@@ -64,12 +64,12 @@ export class HamburgerMenu extends HTMLElement {
|
|
|
64
64
|
--padding-block: ${_a.defaultStyle.paddingBlockValue}${_a.defaultStyle.paddingBlockUnit};
|
|
65
65
|
--padding-inline: ${_a.defaultStyle.paddingInlineValue}${_a.defaultStyle.paddingInlineUnit};
|
|
66
66
|
container: hamburger-menu / inline-size;
|
|
67
|
-
display: block;
|
|
67
|
+
display: block flow;
|
|
68
68
|
inline-size: 5em;
|
|
69
69
|
block-size: 5em;
|
|
70
70
|
}
|
|
71
71
|
button {
|
|
72
|
-
display: block;
|
|
72
|
+
display: block flow;
|
|
73
73
|
width: 100%;
|
|
74
74
|
height: 100%;
|
|
75
75
|
border: none;
|
|
@@ -86,7 +86,7 @@ export class HamburgerMenu extends HTMLElement {
|
|
|
86
86
|
-ms-appearance: none;
|
|
87
87
|
|
|
88
88
|
> span {
|
|
89
|
-
display: flex;
|
|
89
|
+
display: block flex;
|
|
90
90
|
flex-direction: column;
|
|
91
91
|
justify-content: space-between;
|
|
92
92
|
align-items: center;
|
|
@@ -95,7 +95,7 @@ export class HamburgerMenu extends HTMLElement {
|
|
|
95
95
|
padding: var(--padding-block) var(--padding-inline);
|
|
96
96
|
|
|
97
97
|
> span {
|
|
98
|
-
display: block;
|
|
98
|
+
display: block flow;
|
|
99
99
|
width: var(--line-width);
|
|
100
100
|
max-width: 100%;
|
|
101
101
|
height: var(--line-height);
|
package/package.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-zero/custom-components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "D-ZERO custom components",
|
|
5
5
|
"author": "D-ZERO",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
|
-
"
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/d-zero-dev/frontend-env.git",
|
|
10
|
+
"directory": "packages/@d-zero/custom-components"
|
|
9
11
|
},
|
|
10
12
|
"publishConfig": {
|
|
11
13
|
"access": "public"
|
|
@@ -30,14 +32,14 @@
|
|
|
30
32
|
"storybook": "storybook build"
|
|
31
33
|
},
|
|
32
34
|
"devDependencies": {
|
|
33
|
-
"@chromatic-com/storybook": "
|
|
34
|
-
"@storybook/addon-docs": "10.
|
|
35
|
-
"@storybook/experimental-addon-test": "8.6.
|
|
35
|
+
"@chromatic-com/storybook": "5.0.1",
|
|
36
|
+
"@storybook/addon-docs": "10.2.13",
|
|
37
|
+
"@storybook/experimental-addon-test": "8.6.17",
|
|
36
38
|
"@storybook/test": "8.6.15",
|
|
37
|
-
"@storybook/web-components": "10.
|
|
38
|
-
"@storybook/web-components-vite": "10.
|
|
39
|
+
"@storybook/web-components": "10.2.13",
|
|
40
|
+
"@storybook/web-components-vite": "10.2.13",
|
|
39
41
|
"lit": "3.3.2",
|
|
40
|
-
"storybook": "10.
|
|
42
|
+
"storybook": "10.2.13"
|
|
41
43
|
},
|
|
42
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "24532c43d0a5e542e0ce8cb6a16653583ac40a5d"
|
|
43
45
|
}
|