@ni/spright-components 0.0.3 → 0.0.4
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/all-components-bundle.js +13 -1
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +12 -0
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/rectangle/styles.js +13 -1
- package/dist/esm/rectangle/styles.js.map +1 -1
- package/package.json +4 -36
|
@@ -16333,7 +16333,7 @@
|
|
|
16333
16333
|
|
|
16334
16334
|
/**
|
|
16335
16335
|
* Do not edit directly
|
|
16336
|
-
* Generated on
|
|
16336
|
+
* Generated on Thu, 25 Apr 2024 20:25:33 GMT
|
|
16337
16337
|
*/
|
|
16338
16338
|
|
|
16339
16339
|
const Information100DarkUi = "#a46eff";
|
|
@@ -77867,10 +77867,22 @@ img.ProseMirror-separator {
|
|
|
77867
77867
|
border: 2px solid ${borderHoverColor};
|
|
77868
77868
|
}
|
|
77869
77869
|
|
|
77870
|
+
:host(:hover) {
|
|
77871
|
+
border-width: 4px;
|
|
77872
|
+
}
|
|
77873
|
+
|
|
77874
|
+
:host([disabled]) {
|
|
77875
|
+
border-color: rgba(${borderRgbPartialColor}, 0.2);
|
|
77876
|
+
}
|
|
77877
|
+
|
|
77870
77878
|
slot {
|
|
77871
77879
|
font: ${bodyFont};
|
|
77872
77880
|
color: ${bodyFontColor};
|
|
77873
77881
|
}
|
|
77882
|
+
|
|
77883
|
+
:host([disabled]) slot {
|
|
77884
|
+
color: ${bodyDisabledFontColor};
|
|
77885
|
+
}
|
|
77874
77886
|
`;
|
|
77875
77887
|
|
|
77876
77888
|
const template = html `<slot></slot>`;
|