hr-design-system-handlebars 1.0.0 → 1.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.0.1 (Thu Feb 09 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- BUGFIX: Adds white background color to grid_group_wrapper_classes [#534](https://github.com/mumprod/hr-design-system-handlebars/pull/534) ([@szuelch](https://github.com/szuelch))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@szuelch](https://github.com/szuelch)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.0.0 (Thu Feb 09 2023)
|
|
2
14
|
|
|
3
15
|
#### 💥 Breaking Change
|
package/dist/assets/index.css
CHANGED
|
@@ -1824,6 +1824,10 @@ video {
|
|
|
1824
1824
|
border-color: #005293;
|
|
1825
1825
|
border-color: var(--color-cluster-teaser-headline,#000);
|
|
1826
1826
|
}
|
|
1827
|
+
.bg-gray-100 {
|
|
1828
|
+
--tw-bg-opacity: 1;
|
|
1829
|
+
background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
|
|
1830
|
+
}
|
|
1827
1831
|
.bg-red-200 {
|
|
1828
1832
|
--tw-bg-opacity: 1;
|
|
1829
1833
|
background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
|
|
@@ -2160,6 +2164,9 @@ video {
|
|
|
2160
2164
|
.pt-px {
|
|
2161
2165
|
padding-top: 1px;
|
|
2162
2166
|
}
|
|
2167
|
+
.pt-6 {
|
|
2168
|
+
padding-top: 1.5rem;
|
|
2169
|
+
}
|
|
2163
2170
|
.pr-2 {
|
|
2164
2171
|
padding-right: 0.5rem;
|
|
2165
2172
|
}
|
|
@@ -2196,9 +2203,6 @@ video {
|
|
|
2196
2203
|
.pb-9 {
|
|
2197
2204
|
padding-bottom: 2.25rem;
|
|
2198
2205
|
}
|
|
2199
|
-
.pt-6 {
|
|
2200
|
-
padding-top: 1.5rem;
|
|
2201
|
-
}
|
|
2202
2206
|
.pl-8 {
|
|
2203
2207
|
padding-left: 2rem;
|
|
2204
2208
|
}
|
|
@@ -2642,7 +2646,7 @@ video {
|
|
|
2642
2646
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2643
2647
|
}
|
|
2644
2648
|
.counter-reset {
|
|
2645
|
-
counter-reset:
|
|
2649
|
+
counter-reset: cnt1675955552490;
|
|
2646
2650
|
}
|
|
2647
2651
|
.line-clamp-4 {
|
|
2648
2652
|
overflow: hidden;
|
|
@@ -2876,7 +2880,7 @@ video {
|
|
|
2876
2880
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2877
2881
|
}
|
|
2878
2882
|
.-ordered {
|
|
2879
|
-
counter-increment:
|
|
2883
|
+
counter-increment: cnt1675955552490 1;
|
|
2880
2884
|
}
|
|
2881
2885
|
.-ordered::before {
|
|
2882
2886
|
position: absolute;
|
|
@@ -2892,7 +2896,7 @@ video {
|
|
|
2892
2896
|
letter-spacing: .0125em;
|
|
2893
2897
|
--tw-text-opacity: 1;
|
|
2894
2898
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2895
|
-
content: counter(
|
|
2899
|
+
content: counter(cnt1675955552490);
|
|
2896
2900
|
}
|
|
2897
2901
|
/*! ****************************/
|
|
2898
2902
|
/*! text-shadow */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
grid grid-cols-12
|
|
1
|
+
grid grid-cols-12 bg-white pt-6 sm:px-8 col-full sm:col-main gap-x-6 gap-y-10 md:gap-y-14
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"repository": "https://github.com/szuelch/hr-design-system-handlebars",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.1",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
grid grid-cols-12
|
|
1
|
+
grid grid-cols-12 bg-white pt-6 sm:px-8 col-full sm:col-main gap-x-6 gap-y-10 md:gap-y-14
|