@signal24/vue-foundation 4.7.0 → 4.7.2

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.
@@ -1,5 +1,7 @@
1
1
  declare function mask(): void;
2
2
  declare function unmask(): void;
3
+ declare function hide(): void;
4
+ declare function unhide(): void;
3
5
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
6
  id: {
5
7
  type: import("vue").PropType<string>;
@@ -19,6 +21,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
19
21
  }, {
20
22
  mask: typeof mask;
21
23
  unmask: typeof unmask;
24
+ hide: typeof hide;
25
+ unhide: typeof unhide;
22
26
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formSubmit"[], "formSubmit", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
27
  id: {
24
28
  type: import("vue").PropType<string>;
@@ -35,6 +35,7 @@ declare const _default: import("vue").DefineComponent<{
35
35
  disabled: PropType<boolean>;
36
36
  optionsListId: PropType<string>;
37
37
  debug: PropType<boolean>;
38
+ required: PropType<boolean>;
38
39
  }, unknown, {
39
40
  isLoading: boolean;
40
41
  isLoaded: boolean;
@@ -64,7 +65,6 @@ declare const _default: import("vue").DefineComponent<{
64
65
  effectiveOptions(): OptionDescriptor[];
65
66
  }, {
66
67
  loadRemoteOptions(): Promise<void>;
67
- handleSourceUpdate(): Promise<void> | undefined;
68
68
  reloadOptions(): Promise<void>;
69
69
  reloadOptionsIfSearching(): void;
70
70
  handleKeyDown(e: KeyboardEvent): void;
@@ -83,7 +83,6 @@ declare const _default: import("vue").DefineComponent<{
83
83
  addRemoteOption(option: GenericObject): void;
84
84
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
85
85
  optionsLoaded: (options: any[]) => void;
86
- createItem: (searchText: string) => void;
87
86
  'update:modelValue': (value: any) => void;
88
87
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
89
88
  modelValue: {
@@ -111,10 +110,10 @@ declare const _default: import("vue").DefineComponent<{
111
110
  disabled: PropType<boolean>;
112
111
  optionsListId: PropType<string>;
113
112
  debug: PropType<boolean>;
113
+ required: PropType<boolean>;
114
114
  }>> & {
115
115
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
116
116
  onOptionsLoaded?: ((options: any[]) => any) | undefined;
117
- onCreateItem?: ((searchText: string) => any) | undefined;
118
117
  }, {
119
118
  modelValue: any;
120
119
  }, {}>;
@@ -1 +1 @@
1
- .vf-overlay-anchor{position:absolute}.vf-overlay{position:fixed;top:0;left:0;width:100%;height:100%;z-index:100}.vf-modal-wrap{background:rgba(0,0,0,.25);display:flex;justify-content:center;align-items:center}.vf-modal{background:white;box-shadow:0 3px 6px #00000026;min-width:200px;max-width:95%;max-height:95%;display:flex;flex-direction:column}.vf-modal-header,.vf-modal-footer{flex-shrink:0;position:relative}.vf-modal.scrolls>.vf-modal-content{overflow:auto;flex-grow:1;flex-shrink:1;flex-basis:0%}.vf-modal-wrap.vf-alert .vf-modal{max-width:800px}.vf-modal-wrap.vf-alert .vf-modal>.vf-modal-content{padding:12px}.vf-modal-wrap.vf-alert.wait .vf-modal-content{text-align:center}.vf-modal-wrap.vf-alert.destructive button.primary{color:red}.vf-smart-select{position:relative}.vf-smart-select input{width:100%;padding-right:24px!important}.vf-smart-select input.nullable::placeholder{color:#000}.vf-smart-select:after{content:" ";display:block;position:absolute;top:50%;right:8px;margin-top:-3px;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:#333333 transparent transparent transparent;pointer-events:none}.vf-smart-select.open:after{margin-top:-4px;border-width:0 5px 5px 5px;border-color:transparent transparent #333333 transparent}.vf-smart-select:not(.disabled) input{cursor:pointer}.vf-smart-select.disabled:after{opacity:.4}.vf-smart-select-options{visibility:hidden;position:absolute;min-height:20px;border:1px solid #e8e8e8;background:white;overflow:auto;z-index:101}.vf-smart-select-options .option,.vf-smart-select-options .no-results{padding:5px 8px}.vf-smart-select-options .option{cursor:pointer}.vf-smart-select-options .option.highlighted{background-color:#f5f5f5}.vf-toast{position:absolute;bottom:50px;left:50%;transform:translate(-50%)}.vf-toast .content{display:flex;align-items:center}
1
+ .vf-overlay-anchor{position:absolute}.vf-overlay{position:fixed;top:0;left:0;width:100%;height:100%;z-index:100}.vf-overlay.hidden{display:none}.vf-modal-wrap{background:rgba(0,0,0,.25);display:flex;justify-content:center;align-items:center}.vf-modal{background:white;box-shadow:0 3px 6px #00000026;min-width:200px;max-width:95%;max-height:95%;display:flex;flex-direction:column}.vf-modal-header,.vf-modal-footer{flex-shrink:0;position:relative}.vf-modal.scrolls>.vf-modal-content{overflow:auto;flex-grow:1;flex-shrink:1;flex-basis:0%}.vf-modal-wrap.vf-alert .vf-modal{max-width:800px}.vf-modal-wrap.vf-alert .vf-modal>.vf-modal-content{padding:12px}.vf-modal-wrap.vf-alert.wait .vf-modal-content{text-align:center}.vf-modal-wrap.vf-alert.destructive button.primary{color:red}.vf-smart-select{position:relative}.vf-smart-select input{width:100%;padding-right:24px!important}.vf-smart-select input.nullable::placeholder{color:#000}.vf-smart-select:after{content:" ";display:block;position:absolute;top:50%;right:8px;margin-top:-3px;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:#333333 transparent transparent transparent;pointer-events:none}.vf-smart-select.open:after{margin-top:-4px;border-width:0 5px 5px 5px;border-color:transparent transparent #333333 transparent}.vf-smart-select:not(.disabled) input{cursor:pointer}.vf-smart-select.disabled:after{opacity:.4}.vf-smart-select-options{visibility:hidden;position:absolute;min-height:20px;border:1px solid #e8e8e8;background:white;overflow:auto;z-index:101}.vf-smart-select-options .option,.vf-smart-select-options .no-results{padding:5px 8px}.vf-smart-select-options .option{cursor:pointer}.vf-smart-select-options .option.highlighted{background-color:#f5f5f5}.vf-toast{position:absolute;bottom:50px;left:50%;transform:translate(-50%)}.vf-toast .content{display:flex;align-items:center}