@fastkit/vui 0.18.11 → 0.18.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastkit/vui",
3
- "version": "0.18.11",
3
+ "version": "0.18.13",
4
4
  "description": "A simple, extensible UI kit for Vue applications.",
5
5
  "keywords": [
6
6
  "fastkit",
@@ -46,28 +46,28 @@
46
46
  "dependencies": {
47
47
  "@fastkit/color-scheme": "1.0.14",
48
48
  "@fastkit/color-scheme-gen": "0.13.14",
49
- "@fastkit/helpers": "0.13.7",
50
49
  "@fastkit/dom": "0.1.7",
50
+ "@fastkit/helpers": "0.13.7",
51
51
  "@fastkit/media-match": "1.0.9",
52
- "@fastkit/icon-font": "1.0.9",
53
52
  "@fastkit/media-match-gen": "0.13.14",
54
- "@fastkit/rules": "0.13.8",
55
- "@fastkit/tiny-logger": "0.13.7",
53
+ "@fastkit/icon-font": "1.0.9",
56
54
  "@fastkit/stylebase": "0.13.1",
57
- "@fastkit/vue-body-scroll-lock": "0.1.16",
55
+ "@fastkit/rules": "0.13.8",
58
56
  "@fastkit/vue-action": "0.2.17",
59
- "@fastkit/vue-form-control": "0.19.6",
60
- "@fastkit/vue-click-outside": "0.1.17",
57
+ "@fastkit/tiny-logger": "0.13.7",
61
58
  "@fastkit/vue-app-layout": "0.14.19",
59
+ "@fastkit/vue-click-outside": "0.1.17",
60
+ "@fastkit/vue-body-scroll-lock": "0.1.16",
62
61
  "@fastkit/vue-color-scheme": "0.14.16",
63
- "@fastkit/vue-loading": "0.14.17",
64
62
  "@fastkit/vue-keyboard": "0.1.7",
63
+ "@fastkit/vue-loading": "0.14.17",
64
+ "@fastkit/vue-form-control": "0.19.8",
65
+ "@fastkit/vue-media-match": "0.13.14",
65
66
  "@fastkit/vue-location": "0.1.23",
66
67
  "@fastkit/vue-resize": "0.1.16",
67
- "@fastkit/vue-media-match": "0.13.14",
68
+ "@fastkit/vue-utils": "0.14.14",
68
69
  "@fastkit/vue-scroller": "0.14.18",
69
70
  "@fastkit/vue-stack": "0.15.43",
70
- "@fastkit/vue-utils": "0.14.14",
71
71
  "@fastkit/vue-transitions": "0.1.20"
72
72
  },
73
73
  "peerDependencies": {
@@ -92,8 +92,8 @@ export const VFormControl = defineComponent({
92
92
  'v-form-control--focused': control.focused,
93
93
  'v-form-control--dirty': control.dirty,
94
94
  'v-form-control--pristine': control.pristine,
95
- 'v-form-control--disabled': control.disabled,
96
- 'v-form-control--readonly': control.readonly,
95
+ 'v-form-control--disabled': control.isDisabled,
96
+ 'v-form-control--readonly': control.isReadonly,
97
97
  'v-form-control--touched': control.touched,
98
98
  'v-form-control--untouched': control.untouched,
99
99
  'v-form-control--invalid': control.invalid,
@@ -102,14 +102,14 @@ export const VFormControl = defineComponent({
102
102
  colorProvider.className(
103
103
  props.error
104
104
  ? 'error'
105
- : control.invalid && !control.readonly
105
+ : control.invalid && !control.isReadonly
106
106
  ? 'error'
107
107
  : 'primary',
108
108
  ),
109
109
  ]);
110
110
 
111
111
  const getRequiredChip = createRequiredChipRenderer(
112
- () => control.required,
112
+ () => control.isRequired,
113
113
  props,
114
114
  vui,
115
115
  );
@@ -96,7 +96,7 @@ export const VTextField = defineComponent({
96
96
  return (
97
97
  <VFormControl
98
98
  nodeControl={inputControl}
99
- focused={inputControl.focused}
99
+ // focused={inputControl.focused}
100
100
  hiddenInfo={props.hiddenInfo}
101
101
  class={classes.value}
102
102
  label={props.label}
@@ -82,7 +82,7 @@ export const VTextarea = defineComponent({
82
82
  return (
83
83
  <VFormControl
84
84
  nodeControl={inputControl}
85
- focused={inputControl.focused}
85
+ // focused={inputControl.focused}
86
86
  class={['v-textarea', control.classes.value]}
87
87
  label={props.label}
88
88
  hint={props.hint}
@@ -161,7 +161,7 @@ export function defineFormSelectorComponent(
161
161
  return (
162
162
  <VFormControl
163
163
  nodeControl={selectorControl}
164
- focused={selectorControl.focused}
164
+ // focused={selectorControl.focused}
165
165
  hiddenInfo={props.hiddenInfo}
166
166
  class={classes.value}
167
167
  label={props.label}