@techfides/ui-library-core 0.5.0 → 0.8.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/dist/charts/bars.d.ts +1 -1
- package/dist/charts/groupedBars.d.ts +1 -1
- package/dist/charts/spark.d.ts +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/travel.d.ts +1 -1
- package/package.json +2 -2
package/dist/charts/bars.d.ts
CHANGED
|
@@ -16,4 +16,4 @@ interface GroupedBarsOptionInput {
|
|
|
16
16
|
}
|
|
17
17
|
declare const groupedBarsOption: (input: GroupedBarsOptionInput) => EChartsOption;
|
|
18
18
|
//#endregion
|
|
19
|
-
export { type GroupedBarsOptionInput,
|
|
19
|
+
export { type GroupedBarsOptionInput, groupedBarsOption };
|
package/dist/charts/spark.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { regionOf } from "./aria.js";
|
|
2
|
-
import { BarsAccent,
|
|
3
|
-
import { GroupedBarsOptionInput,
|
|
4
|
-
import {
|
|
2
|
+
import { BarsAccent, BarsPoint, barsOption } from "./charts/bars.js";
|
|
3
|
+
import { GroupedBarsOptionInput, groupedBarsOption } from "./charts/groupedBars.js";
|
|
4
|
+
import { sparkOption } from "./charts/spark.js";
|
|
5
5
|
import { SIDEBAR_COOKIE, cookieValue, rememberCookie, sidebarCollapsedFrom, sidebarCookieValue } from "./cookie.js";
|
|
6
6
|
import { DatePickerWords, DialogWords, Language, SearchWords, SelectWords, SidebarWords, StatWords, TableWords, TailWords, UserMenuWords, Words, english } from "./words.js";
|
|
7
7
|
import { czech } from "./czech.js";
|
|
@@ -12,5 +12,5 @@ import { paintedLength } from "./measure.js";
|
|
|
12
12
|
import { Tally, WHOLE, tallyAt, tallyOf } from "./tally.js";
|
|
13
13
|
import { readDuration, readToken } from "./tokens.js";
|
|
14
14
|
import { TONE_ICON_NAME, ToneIconName } from "./toneIcons.js";
|
|
15
|
-
import { NOWHERE, NOWHERE_NEAR,
|
|
16
|
-
export { type BarsAccent, type
|
|
15
|
+
import { NOWHERE, NOWHERE_NEAR, highlightedIn, listOf, spotIn, stateOf, travelStyle } from "./travel.js";
|
|
16
|
+
export { type BarsAccent, type BarsPoint, type DatePickerWords, type DialogWords, type GroupedBarsOptionInput, type Hotkey, type IndicatorSpot, type Language, NOWHERE, NOWHERE_AT_ALL, NOWHERE_NEAR, SIDEBAR_COOKIE, type SearchWords, type SelectWords, type SidebarWords, type StatWords, TONE_ICON_NAME, type TableWords, type TailWords, type Tally, type ToneIconName, type UserMenuWords, WHOLE, type Words, barsOption, cookieValue, czech, english, fieldStateOf, groupedBarsOption, heldOf, highlightedIn, indicatorSpotIn, indicatorStyle, listOf, paintedLength, readDuration, readToken, regionOf, rememberCookie, sidebarCollapsedFrom, sidebarCookieValue, sparkOption, spotIn, stateOf, tallyAt, tallyOf, travelStyle };
|
package/dist/travel.d.ts
CHANGED
|
@@ -11,4 +11,4 @@ declare const highlightedIn: (list: HTMLElement) => string;
|
|
|
11
11
|
declare const stateOf: (lit: string, travelling: boolean) => Record<string, string>;
|
|
12
12
|
declare const travelStyle: (spot: Spot) => Record<string, string>;
|
|
13
13
|
//#endregion
|
|
14
|
-
export { NOWHERE, NOWHERE_NEAR,
|
|
14
|
+
export { NOWHERE, NOWHERE_NEAR, highlightedIn, listOf, spotIn, stateOf, travelStyle };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techfides/ui-library-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Framework-agnostic logic for the TechFides UI library: words and languages, number tallies, chart options, field state and shared DOM maths",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design-system",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@tanstack/hotkeys": "^0.8.0",
|
|
36
|
-
"@techfides/ui-library-design": "^0.
|
|
36
|
+
"@techfides/ui-library-design": "^0.8.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@arethetypeswrong/core": "^0.18.5",
|