@hiver/connector-agent 4.22.5 → 4.22.6
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/app/style.d.ts.map +1 -1
- package/index.es.js +2450 -2445
- package/index.umd.js +13 -8
- package/package.json +1 -1
package/index.umd.js
CHANGED
|
@@ -688,14 +688,19 @@ Take a look at the reducer(s) handling this action type: ${x.type}.
|
|
|
688
688
|
box-sizing: border-box;
|
|
689
689
|
}
|
|
690
690
|
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
691
|
+
/* Layered so component styles always win: this wrapper and its children use
|
|
692
|
+
different emotion caches, so unlayered source order depended on which
|
|
693
|
+
<style> tag the host created first. */
|
|
694
|
+
@layer connectorAgentReset {
|
|
695
|
+
*,
|
|
696
|
+
*::before,
|
|
697
|
+
*::after {
|
|
698
|
+
-webkit-box-sizing: inherit;
|
|
699
|
+
-moz-box-sizing: inherit;
|
|
700
|
+
box-sizing: inherit;
|
|
701
|
+
padding: 0px;
|
|
702
|
+
margin: 0px;
|
|
703
|
+
}
|
|
699
704
|
}
|
|
700
705
|
|
|
701
706
|
/* Sections
|