@quidgest/ui 0.17.3 → 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.
@@ -22,8 +22,13 @@ declare const QDateTimePicker: {
22
22
  texts?: typeof import('./constants').DEFAULT_TEXTS;
23
23
  }> & Readonly<{
24
24
  "onUpdate:modelValue"?: ((value: string | Date | Date[] | undefined) => any) | undefined;
25
+ onClose?: (() => any) | undefined;
26
+ onOpen?: (() => any) | undefined;
25
27
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
26
28
  "update:modelValue": (value: string | Date | Date[] | undefined) => any;
29
+ } & {
30
+ close: () => any;
31
+ open: () => any;
27
32
  }, import('vue').PublicProps, {
28
33
  icons: typeof import('./constants').DEFAULT_ICONS;
29
34
  texts: typeof import('./constants').DEFAULT_TEXTS;
@@ -475,6 +480,8 @@ declare const QDateTimePicker: {
475
480
  texts?: typeof import('./constants').DEFAULT_TEXTS;
476
481
  }> & Readonly<{
477
482
  "onUpdate:modelValue"?: ((value: string | Date | Date[] | undefined) => any) | undefined;
483
+ onClose?: (() => any) | undefined;
484
+ onOpen?: (() => any) | undefined;
478
485
  }>, {}, {}, {}, {}, {
479
486
  icons: typeof import('./constants').DEFAULT_ICONS;
480
487
  texts: typeof import('./constants').DEFAULT_TEXTS;
@@ -507,8 +514,13 @@ declare const QDateTimePicker: {
507
514
  texts?: typeof import('./constants').DEFAULT_TEXTS;
508
515
  }> & Readonly<{
509
516
  "onUpdate:modelValue"?: ((value: string | Date | Date[] | undefined) => any) | undefined;
517
+ onClose?: (() => any) | undefined;
518
+ onOpen?: (() => any) | undefined;
510
519
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
511
520
  "update:modelValue": (value: string | Date | Date[] | undefined) => any;
521
+ } & {
522
+ close: () => any;
523
+ open: () => any;
512
524
  }, string, {
513
525
  icons: typeof import('./constants').DEFAULT_ICONS;
514
526
  texts: typeof import('./constants').DEFAULT_TEXTS;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAOq40B,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAPv90B,CAAA;AAGzD,OAAO,EAAE,eAAe,EAAE,CAAA;AAG1B,cAAc,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAOq40B,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAPv90B,CAAA;AAGzD,OAAO,EAAE,eAAe,EAAE,CAAA;AAG1B,cAAc,SAAS,CAAA"}
@@ -0,0 +1,4 @@
1
+ export declare const DEFAULT_TEXTS: {
2
+ clearValue: string;
3
+ };
4
+ //# sourceMappingURL=constants.d.ts.map
@@ -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"}
@@ -1,5 +1,5 @@
1
1
  import { DEFAULT_TEXTS as e } from "../__internal__/QClearButton/constants.js";
2
- //#region src/components/QTextField/types.ts
2
+ //#region src/components/QTextField/constants.ts
3
3
  var t = { ...e };
4
4
  //#endregion
5
5
  export { t as DEFAULT_TEXTS };
@@ -17,7 +17,7 @@ declare const QTextField: {
17
17
  maxLength?: number;
18
18
  clearable?: boolean;
19
19
  type?: string;
20
- texts?: typeof import('./types').DEFAULT_TEXTS;
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('./types').DEFAULT_TEXTS;
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('./types').DEFAULT_TEXTS;
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAOm60B,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAP1/0B,CAAA;AAG/C,OAAO,EAAE,UAAU,EAAE,CAAA;AAGrB,cAAc,SAAS,CAAA"}
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 "./types.js";
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":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAE5C,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;AAGD,eAAO,MAAM,aAAa;;CAEQ,CAAA"}
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"}
@@ -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/types.js";
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']
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quidgest/ui",
3
3
  "description": "Quidgest's UI framework",
4
- "version": "0.17.3",
4
+ "version": "0.17.5",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "author": "Quidgest",