@vectoriox/iox-builder 1.4.12 → 1.4.13
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
|
@@ -829,8 +829,21 @@ declare class StyleRegistryService {
|
|
|
829
829
|
readonly changes$: Subject<void>;
|
|
830
830
|
private rules;
|
|
831
831
|
private styleEl;
|
|
832
|
-
/**
|
|
832
|
+
/**
|
|
833
|
+
* Properties that must live on the OUTER wrapper (.iox-outer-{id}) because they
|
|
834
|
+
* affect how the element participates in its PARENT layout (flex/block flow).
|
|
835
|
+
* Everything else goes to the INNER element (.iox-node-{id}).
|
|
836
|
+
*
|
|
837
|
+
* Exception — out-of-flow positioning (position:fixed/absolute):
|
|
838
|
+
* When position is fixed or absolute, width is redirected to the inner element
|
|
839
|
+
* (the positioned one) and a default width:100% is added if none is set, so the
|
|
840
|
+
* element stays visible. top/right/bottom/left/zIndex are always inner because
|
|
841
|
+
* they are co-ordinates of the positioned element, not the flow wrapper.
|
|
842
|
+
* position itself goes to inner with `!important` to beat component-scoped CSS.
|
|
843
|
+
*/
|
|
833
844
|
private static readonly OUTER_PROPS;
|
|
845
|
+
/** Properties that need !important on the inner element to beat Angular's scoped-CSS specificity boost. */
|
|
846
|
+
private static readonly IMPORTANT_PROPS;
|
|
834
847
|
init(): void;
|
|
835
848
|
/**
|
|
836
849
|
* Write or update the base styles for a node, or a pseudo-class state override.
|