@teamturing/react-kit 2.23.4 → 2.23.6

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.
@@ -147,26 +147,26 @@ declare const theme: {
147
147
  'scale/skyblue/7': "#468CA6";
148
148
  'scale/skyblue/8': "#366C81";
149
149
  'scale/skyblue/9': "#2A5362";
150
- 'scale/red/0': "#632A2A";
151
- 'scale/red/1': "#823838";
152
- 'scale/red/2': "#A84848";
153
- 'scale/red/3': "#D75C5C";
154
- 'scale/red/4': "#EC6565";
155
- 'scale/red/5': "#F08484";
156
- 'scale/red/6': "#F29898";
157
- 'scale/red/7': "#F6B8B8";
158
- 'scale/red/8': "#F9CFCF";
159
- 'scale/red/9': "#FDF0F0";
160
- 'scale/yellow/0': "#675025";
161
- 'scale/yellow/1': "#876931";
162
- 'scale/yellow/2': "#AE883F";
163
- 'scale/yellow/3': "#DFAE51";
164
- 'scale/yellow/4': "#F5BF59";
165
- 'scale/yellow/5': "#F7CC7A";
166
- 'scale/yellow/6': "#F8D490";
167
- 'scale/yellow/7': "#FAE2B3";
168
- 'scale/yellow/8': "#FCEBCC";
169
- 'scale/yellow/9': "#FEF9EE";
150
+ 'scale/red/0': "#FDF0F0";
151
+ 'scale/red/1': "#F9CFCF";
152
+ 'scale/red/2': "#F6B8B8";
153
+ 'scale/red/3': "#F29898";
154
+ 'scale/red/4': "#F08484";
155
+ 'scale/red/5': "#EC6565";
156
+ 'scale/red/6': "#D75C5C";
157
+ 'scale/red/7': "#A84848";
158
+ 'scale/red/8': "#823838";
159
+ 'scale/red/9': "#632A2A";
160
+ 'scale/yellow/0': "#FEF9EE";
161
+ 'scale/yellow/1': "#FCEBCC";
162
+ 'scale/yellow/2': "#FAE2B3";
163
+ 'scale/yellow/3': "#F8D490";
164
+ 'scale/yellow/4': "#F7CC7A";
165
+ 'scale/yellow/5': "#F5BF59";
166
+ 'scale/yellow/6': "#DFAE51";
167
+ 'scale/yellow/7': "#AE883F";
168
+ 'scale/yellow/8': "#876931";
169
+ 'scale/yellow/9': "#675025";
170
170
  dim: "#00000099";
171
171
  link: "#4880ee";
172
172
  'link/hovered': "#335ba9";
@@ -0,0 +1,3 @@
1
+ var reactDom = {exports: {}};
2
+
3
+ export { reactDom as __module };
@@ -0,0 +1,3 @@
1
+ var scheduler = {exports: {}};
2
+
3
+ export { scheduler as __module };
@@ -0,0 +1,3 @@
1
+ var reactDom_development = {};
2
+
3
+ export { reactDom_development as __exports };
@@ -0,0 +1,3 @@
1
+ var reactDom_production_min = {};
2
+
3
+ export { reactDom_production_min as __exports };
@@ -0,0 +1,3 @@
1
+ var scheduler_development = {};
2
+
3
+ export { scheduler_development as __exports };
@@ -0,0 +1,3 @@
1
+ var scheduler_production_min = {};
2
+
3
+ export { scheduler_production_min as __exports };
@@ -2,7 +2,7 @@ import { computePosition } from '../../dom/dist/floating-ui.dom.js';
2
2
  export { autoUpdate, platform } from '../../dom/dist/floating-ui.dom.js';
3
3
  import * as React from 'react';
4
4
  import { useLayoutEffect, useEffect } from 'react';
5
- import * as ReactDOM from 'react-dom';
5
+ import { r as reactDomExports } from '../../../react-dom/index.js';
6
6
 
7
7
  var index = typeof document !== 'undefined' ? useLayoutEffect : useEffect;
8
8
 
@@ -148,7 +148,7 @@ function useFloating(options) {
148
148
  };
149
149
  if (isMountedRef.current && !deepEqual(dataRef.current, fullData)) {
150
150
  dataRef.current = fullData;
151
- ReactDOM.flushSync(() => {
151
+ reactDomExports.flushSync(() => {
152
152
  setData(fullData);
153
153
  });
154
154
  }