@quidgest/ui 0.17.4 → 0.17.5
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/json/api.json +1 -1
- package/dist/manifest/components.json +1 -0
- package/dist/ui.esm.js +1 -1
- package/dist/ui.js +1 -1
- package/dist/ui.min.js +1 -1
- package/dist/ui.scss +1 -1
- package/esm/components/QTextField/constants.d.ts +4 -0
- package/esm/components/QTextField/constants.d.ts.map +1 -0
- package/esm/components/QTextField/{types.js → constants.js} +1 -1
- package/esm/components/QTextField/index.d.ts +4 -3
- package/esm/components/QTextField/index.d.ts.map +1 -1
- package/esm/components/QTextField/index.js +1 -1
- package/esm/components/QTextField/types.d.ts +1 -3
- package/esm/components/QTextField/types.d.ts.map +1 -1
- package/esm/components/index.js +1 -1
- package/esm/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/json/api.json
CHANGED
package/dist/ui.esm.js
CHANGED
package/dist/ui.js
CHANGED
package/dist/ui.min.js
CHANGED
package/dist/ui.scss
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/constants.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,aAAa;;CAEQ,CAAA"}
|
|
@@ -17,7 +17,7 @@ declare const QTextField: {
|
|
|
17
17
|
maxLength?: number;
|
|
18
18
|
clearable?: boolean;
|
|
19
19
|
type?: string;
|
|
20
|
-
texts?: typeof import('./
|
|
20
|
+
texts?: typeof import('./constants').DEFAULT_TEXTS;
|
|
21
21
|
}> & Readonly<{
|
|
22
22
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
23
23
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
@@ -127,7 +127,7 @@ declare const QTextField: {
|
|
|
127
127
|
maxLength?: number;
|
|
128
128
|
clearable?: boolean;
|
|
129
129
|
type?: string;
|
|
130
|
-
texts?: typeof import('./
|
|
130
|
+
texts?: typeof import('./constants').DEFAULT_TEXTS;
|
|
131
131
|
}> & Readonly<{
|
|
132
132
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
133
133
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
@@ -158,7 +158,7 @@ declare const QTextField: {
|
|
|
158
158
|
maxLength?: number;
|
|
159
159
|
clearable?: boolean;
|
|
160
160
|
type?: string;
|
|
161
|
-
texts?: typeof import('./
|
|
161
|
+
texts?: typeof import('./constants').DEFAULT_TEXTS;
|
|
162
162
|
}> & Readonly<{
|
|
163
163
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
164
164
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
@@ -182,4 +182,5 @@ declare const QTextField: {
|
|
|
182
182
|
});
|
|
183
183
|
export { QTextField };
|
|
184
184
|
export * from './types';
|
|
185
|
+
export { DEFAULT_TEXTS } from './constants';
|
|
185
186
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAUk20B,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAVz70B,CAAA;AAG/C,OAAO,EAAE,UAAU,EAAE,CAAA;AAGrB,cAAc,SAAS,CAAA;AAGvB,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { setupPropsProxy as e } from "../../utils/setupPropsProxy.js";
|
|
2
2
|
import t from "./QTextField2.vue.js";
|
|
3
|
-
import { DEFAULT_TEXTS as n } from "./
|
|
3
|
+
import { DEFAULT_TEXTS as n } from "./constants.js";
|
|
4
4
|
//#region src/components/QTextField/index.ts
|
|
5
5
|
var r = e(t);
|
|
6
6
|
//#endregion
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { QFieldProps } from '../QField';
|
|
2
|
+
import { DEFAULT_TEXTS } from './constants';
|
|
2
3
|
export type QTextFieldProps = QFieldProps & {
|
|
3
4
|
/**
|
|
4
5
|
* The placeholder text for the text field.
|
|
@@ -32,7 +33,4 @@ export type QTextFieldProps = QFieldProps & {
|
|
|
32
33
|
*/
|
|
33
34
|
texts?: typeof DEFAULT_TEXTS;
|
|
34
35
|
};
|
|
35
|
-
export declare const DEFAULT_TEXTS: {
|
|
36
|
-
clearValue: string;
|
|
37
|
-
};
|
|
38
36
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QTextField/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAC5C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAEhD,MAAM,MAAM,eAAe,GAAG,WAAW,GAAG;IAC3C;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;;OAKG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA"}
|
package/esm/components/index.js
CHANGED
|
@@ -14,7 +14,7 @@ import { QCarousel as h } from "./QCarousel/index.js";
|
|
|
14
14
|
import { QLabel as g } from "./QLabel/index.js";
|
|
15
15
|
import { QCheckbox as _, QCheckboxLabel as v } from "./QCheckbox/index.js";
|
|
16
16
|
import { QField as y } from "./QField/index.js";
|
|
17
|
-
import { DEFAULT_TEXTS as b } from "./QTextField/
|
|
17
|
+
import { DEFAULT_TEXTS as b } from "./QTextField/constants.js";
|
|
18
18
|
import { QTextField as x } from "./QTextField/index.js";
|
|
19
19
|
import { QColorPicker as S } from "./QColorPicker/index.js";
|
|
20
20
|
import { QList as C, QListItem as w, QListItemGroup as T } from "./QList/index.js";
|
package/esm/index.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ declare module '@vue/runtime-core' {
|
|
|
64
64
|
QSwitch: typeof import('@quidgest/ui/components')['QSwitch']
|
|
65
65
|
QTextArea: typeof import('@quidgest/ui/components')['QTextArea']
|
|
66
66
|
QTextField: typeof import('@quidgest/ui/components')['QTextField']
|
|
67
|
+
DEFAULT_TEXTS: typeof import('@quidgest/ui/components')['DEFAULT_TEXTS']
|
|
67
68
|
QThemeProvider: typeof import('@quidgest/ui/components')['QThemeProvider']
|
|
68
69
|
QToast: typeof import('@quidgest/ui/components')['QToast']
|
|
69
70
|
QToaster: typeof import('@quidgest/ui/components')['QToaster']
|