@fluentui/react-field 0.0.0-nightly-20221007-1237.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.json +362 -0
- package/CHANGELOG.md +96 -0
- package/LICENSE +15 -0
- package/README.md +5 -0
- package/Spec.md +354 -0
- package/dist/index.d.ts +243 -0
- package/lib/CheckboxField.js +2 -0
- package/lib/CheckboxField.js.map +1 -0
- package/lib/ComboboxField.js +2 -0
- package/lib/ComboboxField.js.map +1 -0
- package/lib/Field.js +2 -0
- package/lib/Field.js.map +1 -0
- package/lib/InputField.js +2 -0
- package/lib/InputField.js.map +1 -0
- package/lib/ProgressField.js +2 -0
- package/lib/ProgressField.js.map +1 -0
- package/lib/RadioGroupField.js +2 -0
- package/lib/RadioGroupField.js.map +1 -0
- package/lib/SelectField.js +2 -0
- package/lib/SelectField.js.map +1 -0
- package/lib/SliderField.js +2 -0
- package/lib/SliderField.js.map +1 -0
- package/lib/SpinButtonField.js +2 -0
- package/lib/SpinButtonField.js.map +1 -0
- package/lib/SwitchField.js +2 -0
- package/lib/SwitchField.js.map +1 -0
- package/lib/TextareaField.js +2 -0
- package/lib/TextareaField.js.map +1 -0
- package/lib/components/CheckboxField/CheckboxField.js +32 -0
- package/lib/components/CheckboxField/CheckboxField.js.map +1 -0
- package/lib/components/CheckboxField/index.js +2 -0
- package/lib/components/CheckboxField/index.js.map +1 -0
- package/lib/components/ComboboxField/ComboboxField.js +14 -0
- package/lib/components/ComboboxField/ComboboxField.js.map +1 -0
- package/lib/components/ComboboxField/index.js +2 -0
- package/lib/components/ComboboxField/index.js.map +1 -0
- package/lib/components/Field/Field.types.js +2 -0
- package/lib/components/Field/Field.types.js.map +1 -0
- package/lib/components/Field/SlotComponent.types.js +2 -0
- package/lib/components/Field/SlotComponent.types.js.map +1 -0
- package/lib/components/Field/index.js +5 -0
- package/lib/components/Field/index.js.map +1 -0
- package/lib/components/Field/renderField.js +20 -0
- package/lib/components/Field/renderField.js.map +1 -0
- package/lib/components/Field/useField.js +139 -0
- package/lib/components/Field/useField.js.map +1 -0
- package/lib/components/Field/useFieldStyles.js +121 -0
- package/lib/components/Field/useFieldStyles.js.map +1 -0
- package/lib/components/InputField/InputField.js +14 -0
- package/lib/components/InputField/InputField.js.map +1 -0
- package/lib/components/InputField/index.js +2 -0
- package/lib/components/InputField/index.js.map +1 -0
- package/lib/components/ProgressField/ProgressField.js +15 -0
- package/lib/components/ProgressField/ProgressField.js.map +1 -0
- package/lib/components/ProgressField/index.js +2 -0
- package/lib/components/ProgressField/index.js.map +1 -0
- package/lib/components/RadioGroupField/RadioGroupField.js +15 -0
- package/lib/components/RadioGroupField/RadioGroupField.js.map +1 -0
- package/lib/components/RadioGroupField/index.js +2 -0
- package/lib/components/RadioGroupField/index.js.map +1 -0
- package/lib/components/SelectField/SelectField.js +14 -0
- package/lib/components/SelectField/SelectField.js.map +1 -0
- package/lib/components/SelectField/index.js +2 -0
- package/lib/components/SelectField/index.js.map +1 -0
- package/lib/components/SliderField/SliderField.js +14 -0
- package/lib/components/SliderField/SliderField.js.map +1 -0
- package/lib/components/SliderField/index.js +2 -0
- package/lib/components/SliderField/index.js.map +1 -0
- package/lib/components/SpinButtonField/SpinButtonField.js +14 -0
- package/lib/components/SpinButtonField/SpinButtonField.js.map +1 -0
- package/lib/components/SpinButtonField/index.js +2 -0
- package/lib/components/SpinButtonField/index.js.map +1 -0
- package/lib/components/SwitchField/SwitchField.js +14 -0
- package/lib/components/SwitchField/SwitchField.js.map +1 -0
- package/lib/components/SwitchField/index.js +2 -0
- package/lib/components/SwitchField/index.js.map +1 -0
- package/lib/components/TextareaField/TextareaField.js +14 -0
- package/lib/components/TextareaField/TextareaField.js.map +1 -0
- package/lib/components/TextareaField/index.js +2 -0
- package/lib/components/TextareaField/index.js.map +1 -0
- package/lib/index.js +12 -0
- package/lib/index.js.map +1 -0
- package/lib-commonjs/CheckboxField.js +10 -0
- package/lib-commonjs/CheckboxField.js.map +1 -0
- package/lib-commonjs/ComboboxField.js +10 -0
- package/lib-commonjs/ComboboxField.js.map +1 -0
- package/lib-commonjs/Field.js +10 -0
- package/lib-commonjs/Field.js.map +1 -0
- package/lib-commonjs/InputField.js +10 -0
- package/lib-commonjs/InputField.js.map +1 -0
- package/lib-commonjs/ProgressField.js +10 -0
- package/lib-commonjs/ProgressField.js.map +1 -0
- package/lib-commonjs/RadioGroupField.js +10 -0
- package/lib-commonjs/RadioGroupField.js.map +1 -0
- package/lib-commonjs/SelectField.js +10 -0
- package/lib-commonjs/SelectField.js.map +1 -0
- package/lib-commonjs/SliderField.js +10 -0
- package/lib-commonjs/SliderField.js.map +1 -0
- package/lib-commonjs/SpinButtonField.js +10 -0
- package/lib-commonjs/SpinButtonField.js.map +1 -0
- package/lib-commonjs/SwitchField.js +10 -0
- package/lib-commonjs/SwitchField.js.map +1 -0
- package/lib-commonjs/TextareaField.js +10 -0
- package/lib-commonjs/TextareaField.js.map +1 -0
- package/lib-commonjs/components/CheckboxField/CheckboxField.js +42 -0
- package/lib-commonjs/components/CheckboxField/CheckboxField.js.map +1 -0
- package/lib-commonjs/components/CheckboxField/index.js +10 -0
- package/lib-commonjs/components/CheckboxField/index.js.map +1 -0
- package/lib-commonjs/components/ComboboxField/ComboboxField.js +24 -0
- package/lib-commonjs/components/ComboboxField/ComboboxField.js.map +1 -0
- package/lib-commonjs/components/ComboboxField/index.js +10 -0
- package/lib-commonjs/components/ComboboxField/index.js.map +1 -0
- package/lib-commonjs/components/Field/Field.types.js +6 -0
- package/lib-commonjs/components/Field/Field.types.js.map +1 -0
- package/lib-commonjs/components/Field/SlotComponent.types.js +6 -0
- package/lib-commonjs/components/Field/SlotComponent.types.js.map +1 -0
- package/lib-commonjs/components/Field/index.js +16 -0
- package/lib-commonjs/components/Field/index.js.map +1 -0
- package/lib-commonjs/components/Field/renderField.js +31 -0
- package/lib-commonjs/components/Field/renderField.js.map +1 -0
- package/lib-commonjs/components/Field/useField.js +154 -0
- package/lib-commonjs/components/Field/useField.js.map +1 -0
- package/lib-commonjs/components/Field/useFieldStyles.js +134 -0
- package/lib-commonjs/components/Field/useFieldStyles.js.map +1 -0
- package/lib-commonjs/components/InputField/InputField.js +24 -0
- package/lib-commonjs/components/InputField/InputField.js.map +1 -0
- package/lib-commonjs/components/InputField/index.js +10 -0
- package/lib-commonjs/components/InputField/index.js.map +1 -0
- package/lib-commonjs/components/ProgressField/ProgressField.js +25 -0
- package/lib-commonjs/components/ProgressField/ProgressField.js.map +1 -0
- package/lib-commonjs/components/ProgressField/index.js +10 -0
- package/lib-commonjs/components/ProgressField/index.js.map +1 -0
- package/lib-commonjs/components/RadioGroupField/RadioGroupField.js +25 -0
- package/lib-commonjs/components/RadioGroupField/RadioGroupField.js.map +1 -0
- package/lib-commonjs/components/RadioGroupField/index.js +10 -0
- package/lib-commonjs/components/RadioGroupField/index.js.map +1 -0
- package/lib-commonjs/components/SelectField/SelectField.js +24 -0
- package/lib-commonjs/components/SelectField/SelectField.js.map +1 -0
- package/lib-commonjs/components/SelectField/index.js +10 -0
- package/lib-commonjs/components/SelectField/index.js.map +1 -0
- package/lib-commonjs/components/SliderField/SliderField.js +24 -0
- package/lib-commonjs/components/SliderField/SliderField.js.map +1 -0
- package/lib-commonjs/components/SliderField/index.js +10 -0
- package/lib-commonjs/components/SliderField/index.js.map +1 -0
- package/lib-commonjs/components/SpinButtonField/SpinButtonField.js +24 -0
- package/lib-commonjs/components/SpinButtonField/SpinButtonField.js.map +1 -0
- package/lib-commonjs/components/SpinButtonField/index.js +10 -0
- package/lib-commonjs/components/SpinButtonField/index.js.map +1 -0
- package/lib-commonjs/components/SwitchField/SwitchField.js +24 -0
- package/lib-commonjs/components/SwitchField/SwitchField.js.map +1 -0
- package/lib-commonjs/components/SwitchField/index.js +10 -0
- package/lib-commonjs/components/SwitchField/index.js.map +1 -0
- package/lib-commonjs/components/TextareaField/TextareaField.js +24 -0
- package/lib-commonjs/components/TextareaField/TextareaField.js.map +1 -0
- package/lib-commonjs/components/TextareaField/index.js +10 -0
- package/lib-commonjs/components/TextareaField/index.js.map +1 -0
- package/lib-commonjs/index.js +184 -0
- package/lib-commonjs/index.js.map +1 -0
- package/package.json +59 -0
package/CHANGELOG.json
ADDED
@@ -0,0 +1,362 @@
|
|
1
|
+
{
|
2
|
+
"name": "@fluentui/react-field",
|
3
|
+
"entries": [
|
4
|
+
{
|
5
|
+
"date": "Fri, 07 Oct 2022 12:44:19 GMT",
|
6
|
+
"tag": "@fluentui/react-field_v0.0.0-nightly-20221007-1237.1",
|
7
|
+
"version": "0.0.0-nightly-20221007-1237.1",
|
8
|
+
"comments": {
|
9
|
+
"prerelease": [
|
10
|
+
{
|
11
|
+
"author": "fluentui-internal@service.microsoft.com",
|
12
|
+
"package": "@fluentui/react-field",
|
13
|
+
"commit": "not available",
|
14
|
+
"comment": "Release nightly v9"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"author": "beachball",
|
18
|
+
"package": "@fluentui/react-field",
|
19
|
+
"comment": "Bump @fluentui/react-checkbox to v0.0.0-nightly-20221007-1237.1",
|
20
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"author": "beachball",
|
24
|
+
"package": "@fluentui/react-field",
|
25
|
+
"comment": "Bump @fluentui/react-combobox to v0.0.0-nightly-20221007-1237.1",
|
26
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"author": "beachball",
|
30
|
+
"package": "@fluentui/react-field",
|
31
|
+
"comment": "Bump @fluentui/react-context-selector to v0.0.0-nightly-20221007-1237.1",
|
32
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"author": "beachball",
|
36
|
+
"package": "@fluentui/react-field",
|
37
|
+
"comment": "Bump @fluentui/react-input to v0.0.0-nightly-20221007-1237.1",
|
38
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"author": "beachball",
|
42
|
+
"package": "@fluentui/react-field",
|
43
|
+
"comment": "Bump @fluentui/react-label to v0.0.0-nightly-20221007-1237.1",
|
44
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"author": "beachball",
|
48
|
+
"package": "@fluentui/react-field",
|
49
|
+
"comment": "Bump @fluentui/react-progress to v0.0.0-nightly-20221007-1237.1",
|
50
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"author": "beachball",
|
54
|
+
"package": "@fluentui/react-field",
|
55
|
+
"comment": "Bump @fluentui/react-radio to v0.0.0-nightly-20221007-1237.1",
|
56
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"author": "beachball",
|
60
|
+
"package": "@fluentui/react-field",
|
61
|
+
"comment": "Bump @fluentui/react-select to v0.0.0-nightly-20221007-1237.1",
|
62
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"author": "beachball",
|
66
|
+
"package": "@fluentui/react-field",
|
67
|
+
"comment": "Bump @fluentui/react-slider to v0.0.0-nightly-20221007-1237.1",
|
68
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"author": "beachball",
|
72
|
+
"package": "@fluentui/react-field",
|
73
|
+
"comment": "Bump @fluentui/react-spinbutton to v0.0.0-nightly-20221007-1237.1",
|
74
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"author": "beachball",
|
78
|
+
"package": "@fluentui/react-field",
|
79
|
+
"comment": "Bump @fluentui/react-switch to v0.0.0-nightly-20221007-1237.1",
|
80
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"author": "beachball",
|
84
|
+
"package": "@fluentui/react-field",
|
85
|
+
"comment": "Bump @fluentui/react-textarea to v0.0.0-nightly-20221007-1237.1",
|
86
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"author": "beachball",
|
90
|
+
"package": "@fluentui/react-field",
|
91
|
+
"comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20221007-1237.1",
|
92
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"author": "beachball",
|
96
|
+
"package": "@fluentui/react-field",
|
97
|
+
"comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20221007-1237.1",
|
98
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"author": "beachball",
|
102
|
+
"package": "@fluentui/react-field",
|
103
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20221007-1237.1",
|
104
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
105
|
+
}
|
106
|
+
]
|
107
|
+
}
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"date": "Mon, 03 Oct 2022 22:24:37 GMT",
|
111
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.3",
|
112
|
+
"version": "9.0.0-alpha.3",
|
113
|
+
"comments": {
|
114
|
+
"prerelease": [
|
115
|
+
{
|
116
|
+
"author": "behowell@microsoft.com",
|
117
|
+
"package": "@fluentui/react-field",
|
118
|
+
"commit": "9c2ca0da077238fa1d2dc9475eeacacde06f79d7",
|
119
|
+
"comment": "fix: Remove SwitchField's labelPosition prop, as it has no effect"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"author": "beachball",
|
123
|
+
"package": "@fluentui/react-field",
|
124
|
+
"comment": "Bump @fluentui/react-checkbox to v9.0.7",
|
125
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"author": "beachball",
|
129
|
+
"package": "@fluentui/react-field",
|
130
|
+
"comment": "Bump @fluentui/react-combobox to v9.0.0-beta.11",
|
131
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"author": "beachball",
|
135
|
+
"package": "@fluentui/react-field",
|
136
|
+
"comment": "Bump @fluentui/react-input to v9.2.0",
|
137
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"author": "beachball",
|
141
|
+
"package": "@fluentui/react-field",
|
142
|
+
"comment": "Bump @fluentui/react-radio to v9.0.7",
|
143
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"author": "beachball",
|
147
|
+
"package": "@fluentui/react-field",
|
148
|
+
"comment": "Bump @fluentui/react-slider to v9.0.6",
|
149
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"author": "beachball",
|
153
|
+
"package": "@fluentui/react-field",
|
154
|
+
"comment": "Bump @fluentui/react-spinbutton to v9.0.3",
|
155
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"author": "beachball",
|
159
|
+
"package": "@fluentui/react-field",
|
160
|
+
"comment": "Bump @fluentui/react-switch to v9.0.7",
|
161
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"author": "beachball",
|
165
|
+
"package": "@fluentui/react-field",
|
166
|
+
"comment": "Bump @fluentui/react-textarea to v9.1.1",
|
167
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
168
|
+
}
|
169
|
+
]
|
170
|
+
}
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"date": "Tue, 20 Sep 2022 20:55:45 GMT",
|
174
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.2",
|
175
|
+
"version": "9.0.0-alpha.2",
|
176
|
+
"comments": {
|
177
|
+
"prerelease": [
|
178
|
+
{
|
179
|
+
"author": "beachball",
|
180
|
+
"package": "@fluentui/react-field",
|
181
|
+
"comment": "Bump @fluentui/react-checkbox to v9.0.6",
|
182
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"author": "beachball",
|
186
|
+
"package": "@fluentui/react-field",
|
187
|
+
"comment": "Bump @fluentui/react-combobox to v9.0.0-beta.10",
|
188
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"author": "beachball",
|
192
|
+
"package": "@fluentui/react-field",
|
193
|
+
"comment": "Bump @fluentui/react-input to v9.1.1",
|
194
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"author": "beachball",
|
198
|
+
"package": "@fluentui/react-field",
|
199
|
+
"comment": "Bump @fluentui/react-label to v9.0.6",
|
200
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"author": "beachball",
|
204
|
+
"package": "@fluentui/react-field",
|
205
|
+
"comment": "Bump @fluentui/react-radio to v9.0.6",
|
206
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"author": "beachball",
|
210
|
+
"package": "@fluentui/react-field",
|
211
|
+
"comment": "Bump @fluentui/react-select to v9.0.0-beta.10",
|
212
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"author": "beachball",
|
216
|
+
"package": "@fluentui/react-field",
|
217
|
+
"comment": "Bump @fluentui/react-slider to v9.0.5",
|
218
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"author": "beachball",
|
222
|
+
"package": "@fluentui/react-field",
|
223
|
+
"comment": "Bump @fluentui/react-spinbutton to v9.0.2",
|
224
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"author": "beachball",
|
228
|
+
"package": "@fluentui/react-field",
|
229
|
+
"comment": "Bump @fluentui/react-switch to v9.0.6",
|
230
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"author": "beachball",
|
234
|
+
"package": "@fluentui/react-field",
|
235
|
+
"comment": "Bump @fluentui/react-textarea to v9.1.0",
|
236
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"author": "beachball",
|
240
|
+
"package": "@fluentui/react-field",
|
241
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.14",
|
242
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
243
|
+
}
|
244
|
+
]
|
245
|
+
}
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"date": "Thu, 15 Sep 2022 09:49:04 GMT",
|
249
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.1",
|
250
|
+
"version": "9.0.0-alpha.1",
|
251
|
+
"comments": {
|
252
|
+
"prerelease": [
|
253
|
+
{
|
254
|
+
"author": "behowell@microsoft.com",
|
255
|
+
"package": "@fluentui/react-field",
|
256
|
+
"commit": "cd8f5a11fd89c77582950fe714fece2bdf9c08c0",
|
257
|
+
"comment": "Initial release"
|
258
|
+
},
|
259
|
+
{
|
260
|
+
"author": "beachball",
|
261
|
+
"package": "@fluentui/react-field",
|
262
|
+
"comment": "Bump @fluentui/react-checkbox to v9.0.5",
|
263
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
264
|
+
},
|
265
|
+
{
|
266
|
+
"author": "beachball",
|
267
|
+
"package": "@fluentui/react-field",
|
268
|
+
"comment": "Bump @fluentui/react-combobox to v9.0.0-beta.9",
|
269
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"author": "beachball",
|
273
|
+
"package": "@fluentui/react-field",
|
274
|
+
"comment": "Bump @fluentui/react-context-selector to v9.0.3",
|
275
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"author": "beachball",
|
279
|
+
"package": "@fluentui/react-field",
|
280
|
+
"comment": "Bump @fluentui/react-input to v9.1.0",
|
281
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"author": "beachball",
|
285
|
+
"package": "@fluentui/react-field",
|
286
|
+
"comment": "Bump @fluentui/react-label to v9.0.5",
|
287
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
288
|
+
},
|
289
|
+
{
|
290
|
+
"author": "beachball",
|
291
|
+
"package": "@fluentui/react-field",
|
292
|
+
"comment": "Bump @fluentui/react-radio to v9.0.5",
|
293
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"author": "beachball",
|
297
|
+
"package": "@fluentui/react-field",
|
298
|
+
"comment": "Bump @fluentui/react-select to v9.0.0-beta.9",
|
299
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
300
|
+
},
|
301
|
+
{
|
302
|
+
"author": "beachball",
|
303
|
+
"package": "@fluentui/react-field",
|
304
|
+
"comment": "Bump @fluentui/react-slider to v9.0.4",
|
305
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"author": "beachball",
|
309
|
+
"package": "@fluentui/react-field",
|
310
|
+
"comment": "Bump @fluentui/react-spinbutton to v9.0.1",
|
311
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"author": "beachball",
|
315
|
+
"package": "@fluentui/react-field",
|
316
|
+
"comment": "Bump @fluentui/react-switch to v9.0.5",
|
317
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"author": "beachball",
|
321
|
+
"package": "@fluentui/react-field",
|
322
|
+
"comment": "Bump @fluentui/react-textarea to v9.0.5",
|
323
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"author": "beachball",
|
327
|
+
"package": "@fluentui/react-field",
|
328
|
+
"comment": "Bump @fluentui/react-theme to v9.1.0",
|
329
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"author": "beachball",
|
333
|
+
"package": "@fluentui/react-field",
|
334
|
+
"comment": "Bump @fluentui/react-utilities to v9.1.0",
|
335
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"author": "beachball",
|
339
|
+
"package": "@fluentui/react-field",
|
340
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.13",
|
341
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
342
|
+
}
|
343
|
+
]
|
344
|
+
}
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"date": "Wed, 03 Aug 2022 16:04:10 GMT",
|
348
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.0",
|
349
|
+
"version": "9.0.0-alpha.0",
|
350
|
+
"comments": {
|
351
|
+
"patch": [
|
352
|
+
{
|
353
|
+
"author": "beachball",
|
354
|
+
"package": "@fluentui/react-field",
|
355
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.12",
|
356
|
+
"commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
|
357
|
+
}
|
358
|
+
]
|
359
|
+
}
|
360
|
+
}
|
361
|
+
]
|
362
|
+
}
|
package/CHANGELOG.md
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
# Change Log - @fluentui/react-field
|
2
|
+
|
3
|
+
This log was last generated on Fri, 07 Oct 2022 12:44:19 GMT and should not be manually modified.
|
4
|
+
|
5
|
+
<!-- Start content -->
|
6
|
+
|
7
|
+
## [0.0.0-nightly-20221007-1237.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v0.0.0-nightly-20221007-1237.1)
|
8
|
+
|
9
|
+
Fri, 07 Oct 2022 12:44:19 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.3..@fluentui/react-field_v0.0.0-nightly-20221007-1237.1)
|
11
|
+
|
12
|
+
### Changes
|
13
|
+
|
14
|
+
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
|
15
|
+
- Bump @fluentui/react-checkbox to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
16
|
+
- Bump @fluentui/react-combobox to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
17
|
+
- Bump @fluentui/react-context-selector to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
18
|
+
- Bump @fluentui/react-input to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
19
|
+
- Bump @fluentui/react-label to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
20
|
+
- Bump @fluentui/react-progress to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
21
|
+
- Bump @fluentui/react-radio to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
22
|
+
- Bump @fluentui/react-select to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
23
|
+
- Bump @fluentui/react-slider to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
24
|
+
- Bump @fluentui/react-spinbutton to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
25
|
+
- Bump @fluentui/react-switch to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
26
|
+
- Bump @fluentui/react-textarea to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
27
|
+
- Bump @fluentui/react-theme to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
28
|
+
- Bump @fluentui/react-utilities to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
29
|
+
- Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
30
|
+
|
31
|
+
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.3)
|
32
|
+
|
33
|
+
Mon, 03 Oct 2022 22:24:37 GMT
|
34
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.2..@fluentui/react-field_v9.0.0-alpha.3)
|
35
|
+
|
36
|
+
### Changes
|
37
|
+
|
38
|
+
- fix: Remove SwitchField's labelPosition prop, as it has no effect ([PR #24876](https://github.com/microsoft/fluentui/pull/24876) by behowell@microsoft.com)
|
39
|
+
- Bump @fluentui/react-checkbox to v9.0.7 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
40
|
+
- Bump @fluentui/react-combobox to v9.0.0-beta.11 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
41
|
+
- Bump @fluentui/react-input to v9.2.0 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
42
|
+
- Bump @fluentui/react-radio to v9.0.7 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
43
|
+
- Bump @fluentui/react-slider to v9.0.6 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
44
|
+
- Bump @fluentui/react-spinbutton to v9.0.3 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
45
|
+
- Bump @fluentui/react-switch to v9.0.7 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
46
|
+
- Bump @fluentui/react-textarea to v9.1.1 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
47
|
+
|
48
|
+
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.2)
|
49
|
+
|
50
|
+
Tue, 20 Sep 2022 20:55:45 GMT
|
51
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.1..@fluentui/react-field_v9.0.0-alpha.2)
|
52
|
+
|
53
|
+
### Changes
|
54
|
+
|
55
|
+
- Bump @fluentui/react-checkbox to v9.0.6 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
56
|
+
- Bump @fluentui/react-combobox to v9.0.0-beta.10 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
57
|
+
- Bump @fluentui/react-input to v9.1.1 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
58
|
+
- Bump @fluentui/react-label to v9.0.6 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
59
|
+
- Bump @fluentui/react-radio to v9.0.6 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
60
|
+
- Bump @fluentui/react-select to v9.0.0-beta.10 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
61
|
+
- Bump @fluentui/react-slider to v9.0.5 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
62
|
+
- Bump @fluentui/react-spinbutton to v9.0.2 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
63
|
+
- Bump @fluentui/react-switch to v9.0.6 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
64
|
+
- Bump @fluentui/react-textarea to v9.1.0 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
65
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.14 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
66
|
+
|
67
|
+
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.1)
|
68
|
+
|
69
|
+
Thu, 15 Sep 2022 09:49:04 GMT
|
70
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.0..@fluentui/react-field_v9.0.0-alpha.1)
|
71
|
+
|
72
|
+
### Changes
|
73
|
+
|
74
|
+
- Initial release ([PR #24235](https://github.com/microsoft/fluentui/pull/24235) by behowell@microsoft.com)
|
75
|
+
- Bump @fluentui/react-checkbox to v9.0.5 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
76
|
+
- Bump @fluentui/react-combobox to v9.0.0-beta.9 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
77
|
+
- Bump @fluentui/react-context-selector to v9.0.3 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
78
|
+
- Bump @fluentui/react-input to v9.1.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
79
|
+
- Bump @fluentui/react-label to v9.0.5 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
80
|
+
- Bump @fluentui/react-radio to v9.0.5 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
81
|
+
- Bump @fluentui/react-select to v9.0.0-beta.9 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
82
|
+
- Bump @fluentui/react-slider to v9.0.4 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
83
|
+
- Bump @fluentui/react-spinbutton to v9.0.1 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
84
|
+
- Bump @fluentui/react-switch to v9.0.5 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
85
|
+
- Bump @fluentui/react-textarea to v9.0.5 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
86
|
+
- Bump @fluentui/react-theme to v9.1.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
87
|
+
- Bump @fluentui/react-utilities to v9.1.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
88
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.13 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
89
|
+
|
90
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.0)
|
91
|
+
|
92
|
+
Wed, 03 Aug 2022 16:04:10 GMT
|
93
|
+
|
94
|
+
### Patches
|
95
|
+
|
96
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.12 ([PR #24131](https://github.com/microsoft/fluentui/pull/24131) by beachball)
|
package/LICENSE
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
@fluentui/react-field
|
2
|
+
|
3
|
+
Copyright (c) Microsoft Corporation
|
4
|
+
|
5
|
+
All rights reserved.
|
6
|
+
|
7
|
+
MIT License
|
8
|
+
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
14
|
+
|
15
|
+
Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
|
package/README.md
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
# @fluentui/react-field
|
2
|
+
|
3
|
+
**React Field components for [Fluent UI React](https://react.fluentui.dev/)**
|
4
|
+
|
5
|
+
These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.
|