aq-fe-framework 0.1.372 → 0.1.373
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.
|
@@ -611,7 +611,7 @@ function MySelect(_a) {
|
|
|
611
611
|
|
|
612
612
|
// src/core/input/MySelectAPI.tsx
|
|
613
613
|
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
614
|
-
function
|
|
614
|
+
function MySelectFromAPI(props) {
|
|
615
615
|
var _a;
|
|
616
616
|
const query = useMyReactQuery({
|
|
617
617
|
queryKey: [props.controllerName + "/GetAll"],
|
|
@@ -832,7 +832,7 @@ export {
|
|
|
832
832
|
MyDayOfWeekPicker,
|
|
833
833
|
MyRichTextEditor,
|
|
834
834
|
MySelect,
|
|
835
|
-
|
|
835
|
+
MySelectFromAPI,
|
|
836
836
|
MyTextInput,
|
|
837
837
|
MyWeeklySessionSchedulerPicker,
|
|
838
838
|
MyFlexColumn2 as MyFlexColumn
|
package/dist/core/index.d.mts
CHANGED
|
@@ -103,10 +103,10 @@ interface MySelectProps extends SelectProps {
|
|
|
103
103
|
}
|
|
104
104
|
declare function MySelect({ label, data, isLoading, isError, ...rest }: MySelectProps): react_jsx_runtime.JSX.Element;
|
|
105
105
|
|
|
106
|
-
interface
|
|
106
|
+
interface MySelectFromAPIProps extends MySelectProps {
|
|
107
107
|
controllerName?: string;
|
|
108
108
|
}
|
|
109
|
-
declare function
|
|
109
|
+
declare function MySelectFromAPI(props: MySelectFromAPIProps): react_jsx_runtime.JSX.Element;
|
|
110
110
|
|
|
111
111
|
interface CoreTextInputProps extends TextInputProps {
|
|
112
112
|
label?: string;
|
|
@@ -132,4 +132,4 @@ interface IMyFlexColumn extends FlexProps {
|
|
|
132
132
|
}
|
|
133
133
|
declare function MyFlexColumn({ children, ...rest }: IMyFlexColumn): react_jsx_runtime.JSX.Element;
|
|
134
134
|
|
|
135
|
-
export { type IWeeklySession, MyActionIcon, MyButton, MyButtonCreateUpdate, MyButtonModal, MyDataTableSelectOne, MyDayOfWeekPicker, MyFlexColumn, MyLabelValueRow, MyRichTextEditor, MySelect,
|
|
135
|
+
export { type IWeeklySession, MyActionIcon, MyButton, MyButtonCreateUpdate, MyButtonModal, MyDataTableSelectOne, MyDayOfWeekPicker, MyFlexColumn, MyLabelValueRow, MyRichTextEditor, MySelect, MySelectFromAPI, type MySelectProps, MyStatsCard, MyTextInput, MyWeeklySessionSchedulerPicker, type WeeklySessionSchedulerProps };
|
package/dist/core/index.mjs
CHANGED
|
@@ -9,11 +9,11 @@ import {
|
|
|
9
9
|
MyLabelValueRow,
|
|
10
10
|
MyRichTextEditor,
|
|
11
11
|
MySelect,
|
|
12
|
-
|
|
12
|
+
MySelectFromAPI,
|
|
13
13
|
MyStatsCard,
|
|
14
14
|
MyTextInput,
|
|
15
15
|
MyWeeklySessionSchedulerPicker
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-DGYFMVBI.mjs";
|
|
17
17
|
import "../chunk-GEYCGM75.mjs";
|
|
18
18
|
import "../chunk-7ORPZMGL.mjs";
|
|
19
19
|
import "../chunk-K6S7R6LU.mjs";
|
|
@@ -31,7 +31,7 @@ export {
|
|
|
31
31
|
MyLabelValueRow,
|
|
32
32
|
MyRichTextEditor,
|
|
33
33
|
MySelect,
|
|
34
|
-
|
|
34
|
+
MySelectFromAPI,
|
|
35
35
|
MyStatsCard,
|
|
36
36
|
MyTextInput,
|
|
37
37
|
MyWeeklySessionSchedulerPicker
|