@dynamic-framework/ui-react 1.33.0 → 1.34.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 +5 -3
- package/dist/css/dynamic-ui-non-root.min.css +2 -2
- package/dist/css/dynamic-ui-root.css +1 -1
- package/dist/css/dynamic-ui-root.min.css +1 -1
- package/dist/css/dynamic-ui.css +5 -3
- package/dist/css/dynamic-ui.min.css +2 -2
- package/dist/index.esm.js +106 -25
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +114 -23
- package/dist/index.js.map +1 -1
- package/dist/types/components/DQuickActionButton/DQuickActionButton.d.ts +4 -9
- package/dist/types/contexts/DContext.d.ts +9 -0
- package/dist/types/hooks/index.d.ts +2 -0
- package/dist/types/hooks/useMediaBreakpointUp.d.ts +6 -0
- package/dist/types/hooks/useMediaQuery.d.ts +1 -0
- package/dist/types/utils/getCssVariable.d.ts +1 -0
- package/dist/types/utils/index.d.ts +2 -0
- package/dist/types/utils/mediaQuery.d.ts +2 -0
- package/package.json +1 -1
- package/src/style/components/_d-quick-action-button.scss +4 -2
package/dist/css/dynamic-ui.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* dynamic-framework 1.
|
|
2
|
+
* dynamic-framework 1.34.0
|
|
3
3
|
* bootstrap ~5.3.3
|
|
4
4
|
* license https://github.com/dynamic-framework/dynamic-ui/blob/master/libraries/dynamic-ui-react/LICENSE.md
|
|
5
5
|
*/
|
|
@@ -10675,12 +10675,14 @@ label .d-icon {
|
|
|
10675
10675
|
border-radius: var(--bs-quick-action-button-border-radius);
|
|
10676
10676
|
box-shadow: var(--bs-quick-action-button-box-shadow);
|
|
10677
10677
|
}
|
|
10678
|
-
.d-quick-action-button:hover {
|
|
10678
|
+
.d-quick-action-button.d-quick-action-button-feedback:hover {
|
|
10679
|
+
text-decoration: none;
|
|
10679
10680
|
background: var(--bs-quick-action-button-hover-bg);
|
|
10680
10681
|
border-color: var(--bs-quick-action-button-hover-border-color);
|
|
10681
10682
|
box-shadow: var(--bs-quick-action-button-hover-box-shadow);
|
|
10682
10683
|
}
|
|
10683
|
-
.d-quick-action-button:active {
|
|
10684
|
+
.d-quick-action-button.d-quick-action-button-feedback:active {
|
|
10685
|
+
text-decoration: none;
|
|
10684
10686
|
background: var(--bs-quick-action-button-active-bg);
|
|
10685
10687
|
border-color: var(--bs-quick-action-button-active-border-color);
|
|
10686
10688
|
box-shadow: var(--bs-quick-action-button-active-box-shadow);
|