@namba_one/ui-kit-2 1.0.36 → 1.0.38
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/index.d.ts +12 -4
- package/dist/index.es.js +4626 -4685
- package/dist/index.umd.js +5 -5
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,6 @@ import { InjectionKey } from 'vue';
|
|
|
16
16
|
import { InputHTMLAttributes } from 'vue';
|
|
17
17
|
import { nextTick } from 'vue';
|
|
18
18
|
import { OnCleanup } from '@vue/reactivity';
|
|
19
|
-
import { Plugin as Plugin_2 } from 'vue';
|
|
20
19
|
import { PropType } from 'vue';
|
|
21
20
|
import { PublicProps } from 'vue';
|
|
22
21
|
import { Ref } from 'vue';
|
|
@@ -192,6 +191,8 @@ declare type __VLS_Props_10 = StatusSelectProps;
|
|
|
192
191
|
|
|
193
192
|
declare type __VLS_Props_11 = DropdownElementProps;
|
|
194
193
|
|
|
194
|
+
declare type __VLS_Props_12 = ThemePickerProps;
|
|
195
|
+
|
|
195
196
|
declare type __VLS_Props_2 = CardContentListProps;
|
|
196
197
|
|
|
197
198
|
declare type __VLS_Props_3 = DropzoneProps;
|
|
@@ -226,6 +227,10 @@ declare type __VLS_PublicProps_12 = {
|
|
|
226
227
|
'isShowDropdown': boolean;
|
|
227
228
|
} & __VLS_Props_11;
|
|
228
229
|
|
|
230
|
+
declare type __VLS_PublicProps_13 = {
|
|
231
|
+
'value': ThemePickerProps['value'];
|
|
232
|
+
} & __VLS_Props_12;
|
|
233
|
+
|
|
229
234
|
declare type __VLS_PublicProps_2 = {
|
|
230
235
|
'list': CardContentListProps['list'];
|
|
231
236
|
} & __VLS_Props_2;
|
|
@@ -1178,9 +1183,6 @@ export declare type ModalConfirmationProps = {
|
|
|
1178
1183
|
isLoading?: boolean;
|
|
1179
1184
|
};
|
|
1180
1185
|
|
|
1181
|
-
declare const NambaOneUIKit: Plugin_2;
|
|
1182
|
-
export default NambaOneUIKit;
|
|
1183
|
-
|
|
1184
1186
|
declare const objectFits: readonly ["cover", "contain"];
|
|
1185
1187
|
|
|
1186
1188
|
declare function onApply(newValue: {
|
|
@@ -1338,6 +1340,12 @@ export declare type TheImageProps = {
|
|
|
1338
1340
|
isLayoutFill?: boolean;
|
|
1339
1341
|
};
|
|
1340
1342
|
|
|
1343
|
+
export declare const ThemePicker: DefineComponent<__VLS_PublicProps_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1344
|
+
"update:value": (value: Maybe<string | number>) => any;
|
|
1345
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_13> & Readonly<{
|
|
1346
|
+
"onUpdate:value"?: ((value: Maybe<string | number>) => any) | undefined;
|
|
1347
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
1348
|
+
|
|
1341
1349
|
export declare type ThemePickerProps = {
|
|
1342
1350
|
value: Maybe<string | number>;
|
|
1343
1351
|
list: {
|