@bexis2/bexis2-core-ui 0.4.88 → 0.4.90

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.
Files changed (66) hide show
  1. package/README.md +8 -1
  2. package/dist/TableView.svelte.d.ts +2 -0
  3. package/dist/components/CodeEditor/CodeEditor.svelte.d.ts +4 -1
  4. package/dist/components/Facets/Facets.svelte.d.ts +2 -0
  5. package/dist/components/Facets/ShowMore.svelte.d.ts +2 -0
  6. package/dist/components/File/FileIcon.svelte.d.ts +2 -0
  7. package/dist/components/File/FileInfo.svelte.d.ts +2 -0
  8. package/dist/components/File/FileUploader.svelte.d.ts +2 -0
  9. package/dist/components/ListView.svelte.d.ts +2 -0
  10. package/dist/components/Table/ColumnsMenu.svelte.d.ts +2 -0
  11. package/dist/components/Table/Table.svelte.d.ts +2 -0
  12. package/dist/components/Table/TableContent.svelte.d.ts +2 -0
  13. package/dist/components/Table/TableFilter.svelte.d.ts +2 -0
  14. package/dist/components/Table/TableFilterServer.svelte.d.ts +2 -0
  15. package/dist/components/Table/TablePagination.svelte.d.ts +2 -0
  16. package/dist/components/Table/TablePaginationServer.svelte.d.ts +2 -0
  17. package/dist/components/form/Checkbox.svelte.d.ts +2 -0
  18. package/dist/components/form/CheckboxKvPList.svelte.d.ts +2 -0
  19. package/dist/components/form/CheckboxList.svelte.d.ts +2 -0
  20. package/dist/components/form/DateInput.svelte.d.ts +2 -0
  21. package/dist/components/form/DatePickerInput.svelte +48 -0
  22. package/dist/components/form/DatePickerInput.svelte.d.ts +34 -0
  23. package/dist/components/form/Dropdown.svelte.d.ts +4 -2
  24. package/dist/components/form/DropdownKvP.svelte.d.ts +4 -2
  25. package/dist/components/form/InputContainer.svelte +14 -2
  26. package/dist/components/form/InputContainer.svelte.d.ts +6 -0
  27. package/dist/components/form/MultiSelect.svelte +1 -1
  28. package/dist/components/form/MultiSelect.svelte.d.ts +12 -6
  29. package/dist/components/form/NumberInput.svelte.d.ts +2 -0
  30. package/dist/components/form/TextArea.svelte.d.ts +2 -0
  31. package/dist/components/form/TextInput.svelte.d.ts +2 -0
  32. package/dist/components/page/Alert.svelte.d.ts +2 -0
  33. package/dist/components/page/BackToTop.svelte.d.ts +2 -0
  34. package/dist/components/page/Docs.svelte.d.ts +2 -0
  35. package/dist/components/page/ErrorMessage.svelte.d.ts +2 -0
  36. package/dist/components/page/Footer.svelte.d.ts +2 -0
  37. package/dist/components/page/GoToTop.svelte.d.ts +2 -0
  38. package/dist/components/page/Header.svelte.d.ts +2 -0
  39. package/dist/components/page/HelpPopUp.svelte.d.ts +2 -0
  40. package/dist/components/page/Notification.svelte.d.ts +2 -0
  41. package/dist/components/page/Page.svelte.d.ts +2 -0
  42. package/dist/components/page/Spinner.svelte.d.ts +2 -0
  43. package/dist/components/page/TablePlaceholder.svelte.d.ts +2 -0
  44. package/dist/components/page/breadcrumb/Breadcrumb.svelte.d.ts +2 -0
  45. package/dist/components/page/menu/Menu.svelte +6 -2
  46. package/dist/components/page/menu/Menu.svelte.d.ts +2 -0
  47. package/dist/components/page/menu/MenuAccountBar.svelte.d.ts +2 -0
  48. package/dist/components/page/menu/MenuBar.svelte.d.ts +2 -0
  49. package/dist/components/page/menu/MenuItem.svelte.d.ts +2 -0
  50. package/dist/components/page/menu/MenuSublist.svelte.d.ts +2 -0
  51. package/dist/components/page/menu/SettingsBar.svelte.d.ts +2 -0
  52. package/dist/components/toggle/Toggle.svelte.d.ts +3 -1
  53. package/dist/css/themes/theme-bexis2.css_old +100 -0
  54. package/dist/index.d.ts +2 -1
  55. package/dist/index.js +2 -1
  56. package/dist/services/Api.d.ts +5 -5
  57. package/dist/themes/theme-bexis2 copy.d.ts +2 -0
  58. package/dist/themes/theme-bexis2 copy.js +112 -0
  59. package/package.json +2 -1
  60. package/src/lib/components/form/DatePickerInput.svelte +53 -0
  61. package/src/lib/components/form/InputContainer.svelte +19 -2
  62. package/src/lib/components/form/MultiSelect.svelte +1 -1
  63. package/src/lib/components/page/menu/Menu.svelte +9 -2
  64. package/src/lib/css/themes/theme-bexis2.css_old +100 -0
  65. package/src/lib/index.ts +3 -0
  66. package/src/lib/themes/theme-bexis2 copy.ts +114 -0
package/README.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # bexis-core-ui
2
- ## 0.4.87/88
2
+
3
+ ## 0.4.90
4
+ - Input
5
+ - Add DataPickerInput based on Svelty Picker
6
+ - reorder font size in menu (less layout shift with old header)
7
+ - trigger description event on mouse over / out
8
+
9
+ ## 0.4.87
3
10
  - Input
4
11
  - add show description to all form components
5
12
 
@@ -19,5 +19,7 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: undefined;
23
+ bindings?: undefined;
22
24
  };
23
25
  export {};
@@ -1,4 +1,5 @@
1
1
  import { SvelteComponent } from "svelte";
2
+ import type { ThemeSpec } from 'svelte-codemirror-editor';
2
3
  declare const __propDef: {
3
4
  props: {
4
5
  id: string;
@@ -10,7 +11,7 @@ declare const __propDef: {
10
11
  toggle?: boolean;
11
12
  actions?: boolean;
12
13
  isValid?: boolean;
13
- styles?: any;
14
+ styles?: ThemeSpec;
14
15
  };
15
16
  events: {
16
17
  cancel: CustomEvent<any>;
@@ -23,6 +24,8 @@ declare const __propDef: {
23
24
  id: string;
24
25
  };
25
26
  };
27
+ exports?: {} | undefined;
28
+ bindings?: string | undefined;
26
29
  };
27
30
  export type CodeEditorProps = typeof __propDef.props;
28
31
  export type CodeEditorEvents = typeof __propDef.events;
@@ -17,6 +17,8 @@ declare const __propDef: {
17
17
  [evt: string]: CustomEvent<any>;
18
18
  };
19
19
  slots: {};
20
+ exports?: {} | undefined;
21
+ bindings?: string | undefined;
20
22
  };
21
23
  export type FacetsProps = typeof __propDef.props;
22
24
  export type FacetsEvents = typeof __propDef.events;
@@ -10,6 +10,8 @@ declare const __propDef: {
10
10
  [evt: string]: CustomEvent<any>;
11
11
  };
12
12
  slots: {};
13
+ exports?: {} | undefined;
14
+ bindings?: string | undefined;
13
15
  };
14
16
  export type ShowMoreProps = typeof __propDef.props;
15
17
  export type ShowMoreEvents = typeof __propDef.events;
@@ -19,5 +19,7 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: undefined;
23
+ bindings?: undefined;
22
24
  };
23
25
  export {};
@@ -23,5 +23,7 @@ declare const __propDef: {
23
23
  [evt: string]: CustomEvent<any>;
24
24
  };
25
25
  slots: {};
26
+ exports?: undefined;
27
+ bindings?: undefined;
26
28
  };
27
29
  export {};
@@ -19,6 +19,8 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: {} | undefined;
23
+ bindings?: string | undefined;
22
24
  };
23
25
  export type FileUploaderProps = typeof __propDef.props;
24
26
  export type FileUploaderEvents = typeof __propDef.events;
@@ -5,6 +5,8 @@ declare const __propDef: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
7
7
  slots: {};
8
+ exports?: {} | undefined;
9
+ bindings?: string | undefined;
8
10
  };
9
11
  export type ListViewProps = typeof __propDef.props;
10
12
  export type ListViewEvents = typeof __propDef.events;
@@ -12,6 +12,8 @@ declare const __propDef: {
12
12
  [evt: string]: CustomEvent<any>;
13
13
  };
14
14
  slots: {};
15
+ exports?: {} | undefined;
16
+ bindings?: string | undefined;
15
17
  };
16
18
  export type ColumnsMenuProps = typeof __propDef.props;
17
19
  export type ColumnsMenuEvents = typeof __propDef.events;
@@ -10,6 +10,8 @@ declare const __propDef: {
10
10
  [evt: string]: CustomEvent<any>;
11
11
  };
12
12
  slots: {};
13
+ exports?: {} | undefined;
14
+ bindings?: string | undefined;
13
15
  };
14
16
  export type TableProps = typeof __propDef.props;
15
17
  export type TableEvents = typeof __propDef.events;
@@ -10,6 +10,8 @@ declare const __propDef: {
10
10
  [evt: string]: CustomEvent<any>;
11
11
  };
12
12
  slots: {};
13
+ exports?: {} | undefined;
14
+ bindings?: string | undefined;
13
15
  };
14
16
  export type TableContentProps = typeof __propDef.props;
15
17
  export type TableContentEvents = typeof __propDef.events;
@@ -14,6 +14,8 @@ declare const __propDef: {
14
14
  [evt: string]: CustomEvent<any>;
15
15
  };
16
16
  slots: {};
17
+ exports?: {} | undefined;
18
+ bindings?: string | undefined;
17
19
  };
18
20
  export type TableFilterProps = typeof __propDef.props;
19
21
  export type TableFilterEvents = typeof __propDef.events;
@@ -15,6 +15,8 @@ declare const __propDef: {
15
15
  [evt: string]: CustomEvent<any>;
16
16
  };
17
17
  slots: {};
18
+ exports?: {} | undefined;
19
+ bindings?: string | undefined;
18
20
  };
19
21
  export type TableFilterServerProps = typeof __propDef.props;
20
22
  export type TableFilterServerEvents = typeof __propDef.events;
@@ -10,6 +10,8 @@ declare const __propDef: {
10
10
  [evt: string]: CustomEvent<any>;
11
11
  };
12
12
  slots: {};
13
+ exports?: {} | undefined;
14
+ bindings?: string | undefined;
13
15
  };
14
16
  export type TablePaginationProps = typeof __propDef.props;
15
17
  export type TablePaginationEvents = typeof __propDef.events;
@@ -12,6 +12,8 @@ declare const __propDef: {
12
12
  [evt: string]: CustomEvent<any>;
13
13
  };
14
14
  slots: {};
15
+ exports?: {} | undefined;
16
+ bindings?: string | undefined;
15
17
  };
16
18
  export type TablePaginationServerProps = typeof __propDef.props;
17
19
  export type TablePaginationServerEvents = typeof __propDef.events;
@@ -17,6 +17,8 @@ declare const __propDef: {
17
17
  [evt: string]: CustomEvent<any>;
18
18
  };
19
19
  slots: {};
20
+ exports?: {} | undefined;
21
+ bindings?: string | undefined;
20
22
  };
21
23
  export type CheckboxProps = typeof __propDef.props;
22
24
  export type CheckboxEvents = typeof __propDef.events;
@@ -15,6 +15,8 @@ declare const __propDef: {
15
15
  [evt: string]: CustomEvent<any>;
16
16
  };
17
17
  slots: {};
18
+ exports?: {} | undefined;
19
+ bindings?: string | undefined;
18
20
  };
19
21
  export type CheckboxKvPListProps = typeof __propDef.props;
20
22
  export type CheckboxKvPListEvents = typeof __propDef.events;
@@ -13,6 +13,8 @@ declare const __propDef: {
13
13
  [evt: string]: CustomEvent<any>;
14
14
  };
15
15
  slots: {};
16
+ exports?: {} | undefined;
17
+ bindings?: string | undefined;
16
18
  };
17
19
  export type CheckboxListProps = typeof __propDef.props;
18
20
  export type CheckboxListEvents = typeof __propDef.events;
@@ -19,6 +19,8 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: {} | undefined;
23
+ bindings?: string | undefined;
22
24
  };
23
25
  export type DateInputProps = typeof __propDef.props;
24
26
  export type DateInputEvents = typeof __propDef.events;
@@ -0,0 +1,48 @@
1
+ <script>import InputContainer from "./InputContainer.svelte";
2
+ import SveltyPicker from "svelty-picker";
3
+ export let id = "";
4
+ export let label = "";
5
+ export let value = "";
6
+ export let valid = false;
7
+ export let invalid = false;
8
+ export let required = false;
9
+ export let feedback = [""];
10
+ export let placeholder = "";
11
+ export let help = false;
12
+ export let disabled = false;
13
+ export let description = "";
14
+ export let showDescription = false;
15
+ export let mode = "date";
16
+ export let initialDate = "";
17
+ export let format = "yyyy-mm-dd";
18
+ export let displayFormat = "yyyy-mm-dd";
19
+ export let onChangeHandler = () => {
20
+ };
21
+ let width = "w-32";
22
+ if (mode !== "date" && mode !== "time" && mode !== "datetime") {
23
+ throw new Error(`Invalid mode: ${mode}. Valid modes are 'date', 'time', and 'datetime'.`);
24
+ }
25
+ if (mode === "datetime" && (format === "yyyy-mm-dd" || displayFormat === "yyyy-mm-dd")) {
26
+ throw new Error(
27
+ `Invalid format for datetime mode. Please use a format that includes both date and time.`
28
+ );
29
+ }
30
+ if (mode === "datetime") {
31
+ width = "w-64";
32
+ }
33
+ </script>
34
+
35
+ <InputContainer {id} {label} {feedback} {required} {help} {description} {showDescription}>
36
+ <SveltyPicker
37
+ {mode}
38
+ name={label}
39
+ {format}
40
+ {displayFormat}
41
+ {initialDate}
42
+ bind:value
43
+ inputClasses="input variant-form-material dark:bg-zinc-700 bg-zinc-50 placeholder:text-gray-400 {width}"
44
+ on:change={onChangeHandler}
45
+ {disabled}
46
+ {placeholder}
47
+ />
48
+ </InputContainer>
@@ -0,0 +1,34 @@
1
+ import { SvelteComponent } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ id?: string;
5
+ label?: string;
6
+ value?: string;
7
+ valid?: boolean;
8
+ invalid?: boolean;
9
+ required?: boolean;
10
+ feedback?: string[];
11
+ placeholder?: string;
12
+ help?: boolean;
13
+ disabled?: boolean;
14
+ description?: string;
15
+ showDescription?: boolean;
16
+ mode?: "date" | "time" | "datetime";
17
+ initialDate?: string;
18
+ format?: string;
19
+ displayFormat?: string;
20
+ onChangeHandler?: (event: CustomEvent) => void;
21
+ };
22
+ events: {
23
+ [evt: string]: CustomEvent<any>;
24
+ };
25
+ slots: {};
26
+ exports?: {} | undefined;
27
+ bindings?: string | undefined;
28
+ };
29
+ export type DatePickerInputProps = typeof __propDef.props;
30
+ export type DatePickerInputEvents = typeof __propDef.events;
31
+ export type DatePickerInputSlots = typeof __propDef.slots;
32
+ export default class DatePickerInput extends SvelteComponent<DatePickerInputProps, DatePickerInputEvents, DatePickerInputSlots> {
33
+ }
34
+ export {};
@@ -7,12 +7,12 @@ export default class Dropdown extends SvelteComponent<{
7
7
  title: any;
8
8
  source: any;
9
9
  description?: string | undefined;
10
+ showDescription?: boolean | undefined;
10
11
  invalid?: boolean | undefined;
11
12
  feedback?: string[] | undefined;
12
13
  required?: boolean | undefined;
13
14
  help?: boolean | undefined;
14
15
  valid?: boolean | undefined;
15
- showDescription?: boolean | undefined;
16
16
  }, {
17
17
  change: Event;
18
18
  select: Event;
@@ -31,12 +31,12 @@ declare const __propDef: {
31
31
  title: any;
32
32
  source: any;
33
33
  description?: string | undefined;
34
+ showDescription?: boolean | undefined;
34
35
  invalid?: boolean | undefined;
35
36
  feedback?: string[] | undefined;
36
37
  required?: boolean | undefined;
37
38
  help?: boolean | undefined;
38
39
  valid?: boolean | undefined;
39
- showDescription?: boolean | undefined;
40
40
  };
41
41
  events: {
42
42
  change: Event;
@@ -45,5 +45,7 @@ declare const __propDef: {
45
45
  [evt: string]: CustomEvent<any>;
46
46
  };
47
47
  slots: {};
48
+ exports?: undefined;
49
+ bindings?: undefined;
48
50
  };
49
51
  export {};
@@ -7,13 +7,13 @@ export default class DropdownKvP extends SvelteComponent<{
7
7
  title: any;
8
8
  source: any;
9
9
  description?: string | undefined;
10
+ showDescription?: boolean | undefined;
10
11
  invalid?: boolean | undefined;
11
12
  feedback?: string[] | undefined;
12
13
  required?: boolean | undefined;
13
14
  help?: boolean | undefined;
14
15
  valid?: boolean | undefined;
15
16
  complexTarget?: boolean | undefined;
16
- showDescription?: boolean | undefined;
17
17
  }, {
18
18
  change: Event;
19
19
  select: Event;
@@ -32,13 +32,13 @@ declare const __propDef: {
32
32
  title: any;
33
33
  source: any;
34
34
  description?: string | undefined;
35
+ showDescription?: boolean | undefined;
35
36
  invalid?: boolean | undefined;
36
37
  feedback?: string[] | undefined;
37
38
  required?: boolean | undefined;
38
39
  help?: boolean | undefined;
39
40
  valid?: boolean | undefined;
40
41
  complexTarget?: boolean | undefined;
41
- showDescription?: boolean | undefined;
42
42
  };
43
43
  events: {
44
44
  change: Event;
@@ -47,5 +47,7 @@ declare const __propDef: {
47
47
  [evt: string]: CustomEvent<any>;
48
48
  };
49
49
  slots: {};
50
+ exports?: undefined;
51
+ bindings?: undefined;
50
52
  };
51
53
  export {};
@@ -1,4 +1,5 @@
1
- <script>import { helpStore } from "../../stores/pageStores";
1
+ <script>import { createEventDispatcher } from "svelte";
2
+ import { helpStore } from "../../stores/pageStores";
2
3
  import Fa from "svelte-fa";
3
4
  import { faQuestion } from "@fortawesome/free-solid-svg-icons";
4
5
  export let id = "";
@@ -8,12 +9,23 @@ export let feedback;
8
9
  export let help = false;
9
10
  export let description = "";
10
11
  export let showDescription = false;
12
+ export let showIcon = true;
13
+ const dispatch = createEventDispatcher();
11
14
  function onMouseOver() {
12
15
  if (help) {
13
16
  helpStore.show(id);
14
17
  }
18
+ if (description.length > 0) {
19
+ dispatch("showDescription", { id, description });
20
+ }
15
21
  }
16
22
  function onMouseOut() {
23
+ if (help) {
24
+ helpStore.hide(id);
25
+ }
26
+ if (description.length > 0) {
27
+ dispatch("hideDescription", { id });
28
+ }
17
29
  }
18
30
  </script>
19
31
 
@@ -30,7 +42,7 @@ function onMouseOut() {
30
42
  >{label}
31
43
  {#if required} <span class="text-xs text-red-600">*</span> {/if}
32
44
  </span>
33
- {#if description}
45
+ {#if description && showIcon}
34
46
  <button class="badge " on:click={()=>showDescription = !showDescription}><Fa icon={faQuestion} /></button>
35
47
  {/if}
36
48
  </label>
@@ -8,13 +8,19 @@ declare const __propDef: {
8
8
  help?: boolean;
9
9
  description?: string;
10
10
  showDescription?: boolean;
11
+ showIcon?: boolean;
11
12
  };
12
13
  events: {
14
+ showDescription: CustomEvent<any>;
15
+ hideDescription: CustomEvent<any>;
16
+ } & {
13
17
  [evt: string]: CustomEvent<any>;
14
18
  };
15
19
  slots: {
16
20
  default: {};
17
21
  };
22
+ exports?: {} | undefined;
23
+ bindings?: string | undefined;
18
24
  };
19
25
  export type InputContainerProps = typeof __propDef.props;
20
26
  export type InputContainerEvents = typeof __propDef.events;
@@ -309,7 +309,7 @@
309
309
 
310
310
  </script>
311
311
 
312
- <InputContainer {id} label={title} {feedback} {required} {help} {description} {showDescription}>
312
+ <InputContainer {id} label={title} {feedback} {required} {help} {description} {showDescription} on:showDescription on:hideDescription>
313
313
  <Select
314
314
  {id}
315
315
  items={source}
@@ -7,23 +7,25 @@ export default class MultiSelect extends SvelteComponent<{
7
7
  title: any;
8
8
  source: any;
9
9
  description?: string | undefined;
10
+ showDescription?: boolean | undefined;
10
11
  invalid?: boolean | undefined;
11
12
  feedback?: string[] | undefined;
12
13
  required?: boolean | undefined;
13
14
  help?: boolean | undefined;
15
+ disabled?: boolean | undefined;
16
+ placeholder?: string | undefined;
14
17
  complexTarget?: boolean | undefined;
15
- showDescription?: boolean | undefined;
16
18
  itemId?: string | undefined;
17
19
  itemLabel?: string | undefined;
18
20
  itemGroup?: string | undefined;
19
21
  isMulti?: boolean | undefined;
20
22
  complexSource?: boolean | undefined;
21
- placeholder?: string | undefined;
22
23
  loading?: boolean | undefined;
23
24
  clearable?: boolean | undefined;
24
- disabled?: boolean | undefined;
25
25
  searchable?: boolean | undefined;
26
26
  }, {
27
+ showDescription: CustomEvent<any>;
28
+ hideDescription: CustomEvent<any>;
27
29
  change: CustomEvent<any>;
28
30
  input: CustomEvent<any>;
29
31
  focus: CustomEvent<any>;
@@ -48,24 +50,26 @@ declare const __propDef: {
48
50
  title: any;
49
51
  source: any;
50
52
  description?: string | undefined;
53
+ showDescription?: boolean | undefined;
51
54
  invalid?: boolean | undefined;
52
55
  feedback?: string[] | undefined;
53
56
  required?: boolean | undefined;
54
57
  help?: boolean | undefined;
58
+ disabled?: boolean | undefined;
59
+ placeholder?: string | undefined;
55
60
  complexTarget?: boolean | undefined;
56
- showDescription?: boolean | undefined;
57
61
  itemId?: string | undefined;
58
62
  itemLabel?: string | undefined;
59
63
  itemGroup?: string | undefined;
60
64
  isMulti?: boolean | undefined;
61
65
  complexSource?: boolean | undefined;
62
- placeholder?: string | undefined;
63
66
  loading?: boolean | undefined;
64
67
  clearable?: boolean | undefined;
65
- disabled?: boolean | undefined;
66
68
  searchable?: boolean | undefined;
67
69
  };
68
70
  events: {
71
+ showDescription: CustomEvent<any>;
72
+ hideDescription: CustomEvent<any>;
69
73
  change: CustomEvent<any>;
70
74
  input: CustomEvent<any>;
71
75
  focus: CustomEvent<any>;
@@ -79,5 +83,7 @@ declare const __propDef: {
79
83
  [evt: string]: CustomEvent<any>;
80
84
  };
81
85
  slots: {};
86
+ exports?: undefined;
87
+ bindings?: undefined;
82
88
  };
83
89
  export {};
@@ -23,6 +23,8 @@ declare const __propDef: {
23
23
  [evt: string]: CustomEvent<any>;
24
24
  };
25
25
  slots: {};
26
+ exports?: {} | undefined;
27
+ bindings?: string | undefined;
26
28
  };
27
29
  export type NumberInputProps = typeof __propDef.props;
28
30
  export type NumberInputEvents = typeof __propDef.events;
@@ -21,6 +21,8 @@ declare const __propDef: {
21
21
  [evt: string]: CustomEvent<any>;
22
22
  };
23
23
  slots: {};
24
+ exports?: {} | undefined;
25
+ bindings?: string | undefined;
24
26
  };
25
27
  export type TextAreaProps = typeof __propDef.props;
26
28
  export type TextAreaEvents = typeof __propDef.events;
@@ -21,6 +21,8 @@ declare const __propDef: {
21
21
  [evt: string]: CustomEvent<any>;
22
22
  };
23
23
  slots: {};
24
+ exports?: {} | undefined;
25
+ bindings?: string | undefined;
24
26
  };
25
27
  export type TextInputProps = typeof __propDef.props;
26
28
  export type TextInputEvents = typeof __propDef.events;
@@ -13,6 +13,8 @@ declare const __propDef: {
13
13
  default: {};
14
14
  actions: {};
15
15
  };
16
+ exports?: {} | undefined;
17
+ bindings?: string | undefined;
16
18
  };
17
19
  export type AlertProps = typeof __propDef.props;
18
20
  export type AlertEvents = typeof __propDef.events;
@@ -19,5 +19,7 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: undefined;
23
+ bindings?: undefined;
22
24
  };
23
25
  export {};
@@ -9,6 +9,8 @@ declare const __propDef: {
9
9
  [evt: string]: CustomEvent<any>;
10
10
  };
11
11
  slots: {};
12
+ exports?: {} | undefined;
13
+ bindings?: string | undefined;
12
14
  };
13
15
  export type DocsProps = typeof __propDef.props;
14
16
  export type DocsEvents = typeof __propDef.events;
@@ -7,6 +7,8 @@ declare const __propDef: {
7
7
  [evt: string]: CustomEvent<any>;
8
8
  };
9
9
  slots: {};
10
+ exports?: {} | undefined;
11
+ bindings?: string | undefined;
10
12
  };
11
13
  export type ErrorMessageProps = typeof __propDef.props;
12
14
  export type ErrorMessageEvents = typeof __propDef.events;
@@ -5,6 +5,8 @@ declare const __propDef: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
7
7
  slots: {};
8
+ exports?: {} | undefined;
9
+ bindings?: string | undefined;
8
10
  };
9
11
  export type FooterProps = typeof __propDef.props;
10
12
  export type FooterEvents = typeof __propDef.events;
@@ -19,5 +19,7 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: undefined;
23
+ bindings?: undefined;
22
24
  };
23
25
  export {};
@@ -5,6 +5,8 @@ declare const __propDef: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
7
7
  slots: {};
8
+ exports?: {} | undefined;
9
+ bindings?: string | undefined;
8
10
  };
9
11
  export type HeaderProps = typeof __propDef.props;
10
12
  export type HeaderEvents = typeof __propDef.events;
@@ -7,6 +7,8 @@ declare const __propDef: {
7
7
  [evt: string]: CustomEvent<any>;
8
8
  };
9
9
  slots: {};
10
+ exports?: {} | undefined;
11
+ bindings?: string | undefined;
10
12
  };
11
13
  export type HelpPopUpProps = typeof __propDef.props;
12
14
  export type HelpPopUpEvents = typeof __propDef.events;
@@ -5,6 +5,8 @@ declare const __propDef: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
7
7
  slots: {};
8
+ exports?: {} | undefined;
9
+ bindings?: string | undefined;
8
10
  };
9
11
  export type NotificationProps = typeof __propDef.props;
10
12
  export type NotificationEvents = typeof __propDef.events;
@@ -21,6 +21,8 @@ declare const __propDef: {
21
21
  default: {};
22
22
  right: {};
23
23
  };
24
+ exports?: {} | undefined;
25
+ bindings?: string | undefined;
24
26
  };
25
27
  export type PageProps = typeof __propDef.props;
26
28
  export type PageEvents = typeof __propDef.events;
@@ -10,6 +10,8 @@ declare const __propDef: {
10
10
  [evt: string]: CustomEvent<any>;
11
11
  };
12
12
  slots: {};
13
+ exports?: {} | undefined;
14
+ bindings?: string | undefined;
13
15
  };
14
16
  export type SpinnerProps = typeof __propDef.props;
15
17
  export type SpinnerEvents = typeof __propDef.events;
@@ -8,6 +8,8 @@ declare const __propDef: {
8
8
  [evt: string]: CustomEvent<any>;
9
9
  };
10
10
  slots: {};
11
+ exports?: {} | undefined;
12
+ bindings?: string | undefined;
11
13
  };
12
14
  export type TablePlaceholderProps = typeof __propDef.props;
13
15
  export type TablePlaceholderEvents = typeof __propDef.events;