@bottlebooks/valid-values 10.51.3-alpha.0 → 10.53.0
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [10.53.0](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.51.3-alpha.0...@bottlebooks/valid-values@10.53.0) (2025-05-06)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add Muscat of Turnavos variety, remove misspelled Assyrtiko option. ([ef52458](https://github.com/bottlebooks/bottlebooks/commit/ef52458f0dc834707e168e2f5f6f0593653b045c))
|
|
11
|
+
|
|
12
|
+
# [10.52.0](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.51.3-alpha.0...@bottlebooks/valid-values@10.52.0) (2025-05-06)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- add Muscat of Turnavos variety, remove misspelled Assyrtiko option. ([ef52458](https://github.com/bottlebooks/bottlebooks/commit/ef52458f0dc834707e168e2f5f6f0593653b045c))
|
|
17
|
+
|
|
6
18
|
## [10.51.3-alpha.0](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.51.2...@bottlebooks/valid-values@10.51.3-alpha.0) (2025-05-01)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @bottlebooks/valid-values
|
|
@@ -1925,7 +1925,6 @@ declare const allVarietyNames: {
|
|
|
1925
1925
|
readonly 'Aspiran Bouschet': VarietyName;
|
|
1926
1926
|
readonly Asprinio: VarietyName;
|
|
1927
1927
|
readonly Asprouda: VarietyName;
|
|
1928
|
-
readonly 'Assyrtiko/assyritco': VarietyName;
|
|
1929
1928
|
readonly 'Asuretuli Shavi': VarietyName;
|
|
1930
1929
|
readonly 'Aubin Blanc': VarietyName;
|
|
1931
1930
|
readonly 'Aubin Vert': VarietyName;
|
|
@@ -2025,6 +2024,7 @@ declare const allVarietyNames: {
|
|
|
2025
2024
|
readonly Tortosi: VarietyName;
|
|
2026
2025
|
readonly Mavrokoudoura: VarietyName;
|
|
2027
2026
|
readonly Lagorthi: VarietyName;
|
|
2027
|
+
readonly "Muscat of Turnavos": VarietyName;
|
|
2028
2028
|
};
|
|
2029
2029
|
export type VarietyNameKey = keyof typeof allVarietyNames;
|
|
2030
2030
|
export default allVarietyNames;
|
|
@@ -7701,10 +7701,6 @@ var allVarietyNames = {
|
|
|
7701
7701
|
key: 'Asprouda',
|
|
7702
7702
|
label: 'Asprouda'
|
|
7703
7703
|
}),
|
|
7704
|
-
'Assyrtiko/assyritco': varietyName({
|
|
7705
|
-
key: 'Assyrtiko/assyritco',
|
|
7706
|
-
label: 'Assyrtiko/assyritco'
|
|
7707
|
-
}),
|
|
7708
7704
|
'Asuretuli Shavi': varietyName({
|
|
7709
7705
|
key: 'Asuretuli Shavi',
|
|
7710
7706
|
label: 'Asuretuli Shavi'
|
|
@@ -8100,6 +8096,10 @@ var allVarietyNames = {
|
|
|
8100
8096
|
Lagorthi: varietyName({
|
|
8101
8097
|
key: 'Lagorthi',
|
|
8102
8098
|
label: 'Lagorthi'
|
|
8099
|
+
}),
|
|
8100
|
+
"Muscat of Turnavos": varietyName({
|
|
8101
|
+
key: "Muscat of Turnavos",
|
|
8102
|
+
label: "Muscat of Turnavos"
|
|
8103
8103
|
})
|
|
8104
8104
|
};
|
|
8105
8105
|
var _default = allVarietyNames;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@bottlebooks/valid-values",
|
|
3
3
|
"description": "The Bottlebooks lookup values, defined globally.",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "10.
|
|
5
|
+
"version": "10.53.0",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@lingui/core": "3.14.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "b73815361fd4b44802c6b4a226163751292d4208"
|
|
41
41
|
}
|
|
@@ -7698,10 +7698,6 @@ const allVarietyNames = {
|
|
|
7698
7698
|
key: 'Asprouda',
|
|
7699
7699
|
label: 'Asprouda',
|
|
7700
7700
|
}),
|
|
7701
|
-
'Assyrtiko/assyritco': varietyName({
|
|
7702
|
-
key: 'Assyrtiko/assyritco',
|
|
7703
|
-
label: 'Assyrtiko/assyritco',
|
|
7704
|
-
}),
|
|
7705
7701
|
'Asuretuli Shavi': varietyName({
|
|
7706
7702
|
key: 'Asuretuli Shavi',
|
|
7707
7703
|
label: 'Asuretuli Shavi',
|
|
@@ -8098,6 +8094,10 @@ const allVarietyNames = {
|
|
|
8098
8094
|
key: 'Lagorthi',
|
|
8099
8095
|
label: 'Lagorthi',
|
|
8100
8096
|
}),
|
|
8097
|
+
"Muscat of Turnavos": varietyName({
|
|
8098
|
+
key: "Muscat of Turnavos",
|
|
8099
|
+
label: "Muscat of Turnavos",
|
|
8100
|
+
}),
|
|
8101
8101
|
} as const;
|
|
8102
8102
|
|
|
8103
8103
|
export type VarietyNameKey = keyof typeof allVarietyNames;
|