@dynamic-framework/ui-react 1.13.0 → 1.14.0
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/css/dynamic-ui-non-root.css +2 -2
- package/dist/css/dynamic-ui-non-root.min.css +1 -1
- package/dist/css/dynamic-ui.css +2 -2
- package/dist/css/dynamic-ui.min.css +1 -1
- package/dist/index.esm.js +158 -137
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +158 -136
- package/dist/index.js.map +1 -1
- package/dist/types/components/DIcon/DIcon.d.ts +4 -15
- package/dist/types/components/DIconBase/DIconBase.d.ts +17 -0
- package/dist/types/components/DIconBase/index.d.ts +2 -0
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/contexts/DContext.d.ts +6 -1
- package/package.json +2 -2
- package/src/style/components/_d-icon.scss +4 -2
package/dist/css/dynamic-ui.css
CHANGED
|
@@ -7320,13 +7320,13 @@ textarea.form-control-lg {
|
|
|
7320
7320
|
--bs-icon-size: var(--bs-icon-component-size, 1.5rem);
|
|
7321
7321
|
--bs-icon-padding: var(--bs-icon-component-padding, 0);
|
|
7322
7322
|
--bs-icon-loading-duration: var(--bs-icon-component-loading-duration, 1.8);
|
|
7323
|
-
display: flex;
|
|
7323
|
+
display: inline-flex !important;
|
|
7324
7324
|
align-items: center;
|
|
7325
7325
|
justify-content: center;
|
|
7326
7326
|
width: var(--bs-icon-size);
|
|
7327
7327
|
height: var(--bs-icon-size);
|
|
7328
7328
|
padding: var(--bs-icon-padding);
|
|
7329
|
-
font-size: var(--bs-icon-size);
|
|
7329
|
+
font-size: var(--bs-icon-size) !important;
|
|
7330
7330
|
color: var(--bs-icon-color);
|
|
7331
7331
|
background-color: var(--bs-icon-bg-color);
|
|
7332
7332
|
border-radius: var(--bs-icon-padding);
|