@oliasoft-open-source/react-ui-library 3.9.18-beta-1 → 3.9.18
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/global.css +3 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -20309,15 +20309,16 @@ button:active .remirror-menu-pane-shortcut,
|
|
|
20309
20309
|
margin: 0;
|
|
20310
20310
|
/* margin-bottom: var(--rmr-space-2); */
|
|
20311
20311
|
}
|
|
20312
|
-
.
|
|
20312
|
+
._richTextToolbar_1owpg_1 {
|
|
20313
20313
|
padding: 0 8px;
|
|
20314
20314
|
display: flex;
|
|
20315
20315
|
gap: 4px;
|
|
20316
20316
|
}
|
|
20317
|
-
.
|
|
20317
|
+
._richTextToolbarContainer_1owpg_6 {
|
|
20318
20318
|
display: flex;
|
|
20319
20319
|
justify-content: space-between;
|
|
20320
20320
|
padding: 8px 0;
|
|
20321
|
+
align-items: flex-end;
|
|
20321
20322
|
}
|
|
20322
20323
|
/*
|
|
20323
20324
|
This file has shared variables that are re-used in other LESS files/modules
|
package/dist/index.js
CHANGED
|
@@ -56315,8 +56315,8 @@ function TbListNumbers(props) {
|
|
|
56315
56315
|
function TbList(props) {
|
|
56316
56316
|
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "path", "attr": { "stroke": "none", "d": "M0 0h24v24H0z", "fill": "none" } }, { "tag": "path", "attr": { "d": "M9 6l11 0" } }, { "tag": "path", "attr": { "d": "M9 12l11 0" } }, { "tag": "path", "attr": { "d": "M9 18l11 0" } }, { "tag": "path", "attr": { "d": "M5 6l0 .01" } }, { "tag": "path", "attr": { "d": "M5 12l0 .01" } }, { "tag": "path", "attr": { "d": "M5 18l0 .01" } }] })(props);
|
|
56317
56317
|
}
|
|
56318
|
-
const richTextToolbar = "
|
|
56319
|
-
const richTextToolbarContainer = "
|
|
56318
|
+
const richTextToolbar = "_richTextToolbar_1owpg_1";
|
|
56319
|
+
const richTextToolbarContainer = "_richTextToolbarContainer_1owpg_6";
|
|
56320
56320
|
const styles$f = {
|
|
56321
56321
|
richTextToolbar,
|
|
56322
56322
|
richTextToolbarContainer
|
package/package.json
CHANGED