@sebgroup/green-core 1.0.1 → 1.0.2
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/index.js +1 -1
- package/package.json +1 -1
- package/transitional-styles.js +7 -3
package/index.js
CHANGED
|
@@ -143,7 +143,7 @@ function watchMediaQuery(q) {
|
|
|
143
143
|
// libs/core/src/utils/helpers/custom-element-scoping.ts
|
|
144
144
|
import { html as litHtml } from "lit";
|
|
145
145
|
import { customElement } from "lit/decorators.js";
|
|
146
|
-
var VER_SUFFIX = "-
|
|
146
|
+
var VER_SUFFIX = "-59cf5d";
|
|
147
147
|
var elementLookupTable = /* @__PURE__ */ new Map();
|
|
148
148
|
var gdsCustomElement = (tagName) => {
|
|
149
149
|
if (globalThis.GDS_DISABLE_VERSIONED_ELEMENTS) {
|
package/package.json
CHANGED
package/transitional-styles.js
CHANGED
|
@@ -3605,7 +3605,7 @@ dialog {
|
|
|
3605
3605
|
visibility: hidden;
|
|
3606
3606
|
z-index: var(--z-index);
|
|
3607
3607
|
border-width: 0;
|
|
3608
|
-
overflow:
|
|
3608
|
+
overflow: hidden;
|
|
3609
3609
|
padding: 0;
|
|
3610
3610
|
right: 0;
|
|
3611
3611
|
}
|
|
@@ -5611,13 +5611,17 @@ input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner
|
|
|
5611
5611
|
}
|
|
5612
5612
|
|
|
5613
5613
|
input[type=text] {
|
|
5614
|
-
border-radius: 0;
|
|
5614
|
+
border-bottom-left-radius: 0;
|
|
5615
|
+
border-bottom-right-radius: 0;
|
|
5615
5616
|
font-size: 1rem;
|
|
5616
5617
|
line-height: 1;
|
|
5617
5618
|
margin: -1px;
|
|
5618
5619
|
min-height: auto;
|
|
5619
5620
|
padding: 0.75rem;
|
|
5620
5621
|
}
|
|
5622
|
+
input[type=text]:focus {
|
|
5623
|
+
outline-offset: -0.25rem;
|
|
5624
|
+
}
|
|
5621
5625
|
|
|
5622
5626
|
button {
|
|
5623
5627
|
background-color: transparent;
|
|
@@ -5792,7 +5796,7 @@ function register3() {
|
|
|
5792
5796
|
// libs/core/src/utils/helpers/custom-element-scoping.ts
|
|
5793
5797
|
import { html as litHtml } from "lit";
|
|
5794
5798
|
import { customElement } from "lit/decorators.js";
|
|
5795
|
-
var VER_SUFFIX = "-
|
|
5799
|
+
var VER_SUFFIX = "-59cf5d";
|
|
5796
5800
|
var elementLookupTable = /* @__PURE__ */ new Map();
|
|
5797
5801
|
var templateCache = /* @__PURE__ */ new WeakMap();
|
|
5798
5802
|
function applyElementScoping(strings, ...values) {
|