indicator-ui 1.1.73 → 1.1.75

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.
@@ -79,6 +79,37 @@ $wide: 1440px;
79
79
  }
80
80
  }
81
81
 
82
+ // ---------------- 🖥 Laptop ----------------
83
+ @mixin laptop-less {
84
+ @media (max-width: #{$laptop - 1}) {
85
+ @content;
86
+ }
87
+ }
88
+
89
+ @mixin laptop-less-equal {
90
+ @media (max-width: #{$laptop}) {
91
+ @content;
92
+ }
93
+ }
94
+
95
+ @mixin laptop-more {
96
+ @media (min-width: #{$laptop + 1}) {
97
+ @content;
98
+ }
99
+ }
100
+
101
+ @mixin laptop-more-equal {
102
+ @media (min-width: #{$laptop}) {
103
+ @content;
104
+ }
105
+ }
106
+
107
+ @mixin laptop { // только laptop (от tablet до desktop-1)
108
+ @media (min-width: #{$tablet + 1}) and (max-width: #{$desktop - 1}) {
109
+ @content;
110
+ }
111
+ }
112
+
82
113
  // ---------------- 🖥 Desktop ----------------
83
114
  @mixin desktop-less {
84
115
  @media (max-width: #{$desktop - 1}) {
@@ -20,6 +20,7 @@ export declare function useAnchoredModalController(props: PropsType): {
20
20
  zIndex?: number;
21
21
  }) => void;
22
22
  isOpenRef: React.RefObject<boolean>;
23
+ isOpen: boolean;
23
24
  register: import('../../federation/modalInstanceContext').RegisterModal;
24
25
  };
25
26
  export {};
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "react-components",
12
12
  "ui-kit"
13
13
  ],
14
- "version": "1.1.73",
14
+ "version": "1.1.75",
15
15
  "exports": {
16
16
  ".": {
17
17
  "types": "./dist/types/index.d.ts",