@shakerquiz/utilities 0.5.215 → 0.5.217
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,21 +1,24 @@
|
|
|
1
1
|
export const VenueStatus = Object.freeze({
|
|
2
2
|
'Active': 'Active',
|
|
3
|
-
'
|
|
3
|
+
'Archive': 'Archive',
|
|
4
4
|
})
|
|
5
5
|
|
|
6
|
+
/** @satisfies {Array<keyof typeof VenueStatus>} */
|
|
6
7
|
export const VenueStatuses = Object.freeze([
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
'Active',
|
|
9
|
+
'Archive',
|
|
9
10
|
])
|
|
10
11
|
|
|
12
|
+
/** @satisfies {Record<keyof typeof VenueStatus, string>} */
|
|
11
13
|
export const VenueStatusTitle = Object.freeze({
|
|
12
|
-
|
|
13
|
-
|
|
14
|
+
'Active': 'Активно',
|
|
15
|
+
'Archive': 'Архив',
|
|
14
16
|
})
|
|
15
17
|
|
|
18
|
+
/** @satisfies {Record<keyof typeof VenueStatus, string>} */
|
|
16
19
|
export const VenueStatusIcon = Object.freeze({
|
|
17
|
-
|
|
18
|
-
|
|
20
|
+
'Active': 'hero/outline/check',
|
|
21
|
+
'Archive': 'hero/outline/archive-box',
|
|
19
22
|
})
|
|
20
23
|
|
|
21
24
|
export const inferVenueStatus = Object.freeze(
|
package/source/index.js
CHANGED
|
@@ -25,10 +25,13 @@ export * from './enumerations/entities/registration-mailing.js'
|
|
|
25
25
|
export * from './enumerations/entities/role.js'
|
|
26
26
|
export * from './enumerations/entities/version.js'
|
|
27
27
|
|
|
28
|
-
export * from './enumerations/registration/status.js'
|
|
29
28
|
export * from './enumerations/venue/audience.js'
|
|
30
29
|
export * from './enumerations/venue/status.js'
|
|
31
30
|
|
|
31
|
+
export * from './enumerations/theme/status.js'
|
|
32
|
+
|
|
33
|
+
export * from './enumerations/registration/status.js'
|
|
34
|
+
|
|
32
35
|
export * from './functions/hydrate-route-params.js'
|
|
33
36
|
export * from './functions/hydrate-route-pathname.js'
|
|
34
37
|
export * from './functions/key.js'
|