@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
|
@@ -7029,13 +7029,13 @@ textarea.form-control-lg {
|
|
|
7029
7029
|
--bs-icon-size: var(--bs-icon-component-size, 1.5rem);
|
|
7030
7030
|
--bs-icon-padding: var(--bs-icon-component-padding, 0);
|
|
7031
7031
|
--bs-icon-loading-duration: var(--bs-icon-component-loading-duration, 1.8);
|
|
7032
|
-
display: flex;
|
|
7032
|
+
display: inline-flex !important;
|
|
7033
7033
|
align-items: center;
|
|
7034
7034
|
justify-content: center;
|
|
7035
7035
|
width: var(--bs-icon-size);
|
|
7036
7036
|
height: var(--bs-icon-size);
|
|
7037
7037
|
padding: var(--bs-icon-padding);
|
|
7038
|
-
font-size: var(--bs-icon-size);
|
|
7038
|
+
font-size: var(--bs-icon-size) !important;
|
|
7039
7039
|
color: var(--bs-icon-color);
|
|
7040
7040
|
background-color: var(--bs-icon-bg-color);
|
|
7041
7041
|
border-radius: var(--bs-icon-padding);
|