rei-kit 0.19.0 → 1.0.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/README.md +59 -19
- package/dist/{GoogleButton-dXOuBJwe.js → GoogleButton-lxNEycyw.js} +44 -5
- package/dist/GoogleButton-lxNEycyw.js.map +1 -0
- package/dist/{SettingsGroup-DtEB_Hrd.js → SettingsGroup-JsD19V81.js} +8 -1
- package/dist/{SettingsGroup-DtEB_Hrd.js.map → SettingsGroup-JsD19V81.js.map} +1 -1
- package/dist/app.js +1 -1
- package/dist/components/BaseCombobox.vue.d.ts +36 -0
- package/dist/components/BaseSlider.vue.d.ts +40 -0
- package/dist/components/BaseTable.vue.d.ts +44 -0
- package/dist/components/EmptyState.vue.d.ts +8 -0
- package/dist/components/PageHeader.vue.d.ts +9 -0
- package/dist/components/SettingsGroup.vue.d.ts +7 -0
- package/dist/components/StatCard.vue.d.ts +9 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +399 -39
- package/dist/index.js.map +1 -1
- package/dist/pwa.js +1 -1
- package/dist/styles.css +238 -10
- package/dist/utils/sheet-root.d.ts +20 -0
- package/package.json +23 -4
- package/dist/GoogleButton-dXOuBJwe.js.map +0 -1
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A titled run of settings rows.
|
|
3
|
+
*
|
|
4
|
+
* The heading is a real `h2` rather than styled text, because a settings screen
|
|
5
|
+
* is long and the headings are how somebody moves through it without reading
|
|
6
|
+
* all of it. Uppercase and quiet in the design, structural in the markup.
|
|
7
|
+
*/
|
|
1
8
|
type __VLS_Props = {
|
|
2
9
|
title: string;
|
|
3
10
|
};
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* One number, with what it means and which way it is going.
|
|
3
|
+
*
|
|
4
|
+
* The trend is an arrow and a colour, and neither is allowed to be the whole
|
|
5
|
+
* message: the direction is also in the arrow's shape, so it survives a reader
|
|
6
|
+
* who cannot separate the kit's positive and negative hues. `null` is a real
|
|
7
|
+
* state rather than a missing one — a figure with no comparison yet is not a
|
|
8
|
+
* flat figure.
|
|
9
|
+
*/
|
|
1
10
|
type __VLS_Props = {
|
|
2
11
|
value: string;
|
|
3
12
|
label: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export { formatDate, setFormatLocale } from './utils/format';
|
|
|
26
26
|
export { relativeDayLabel } from './utils/day-label';
|
|
27
27
|
export type { DayLabels } from './utils/day-label';
|
|
28
28
|
export { downloadJson } from './utils/download';
|
|
29
|
+
export { ensureSheetRoot, SHEET_ROOT_ID } from './utils/sheet-root';
|
|
29
30
|
export { safeRedirect, toRedirectPath } from './utils/redirect';
|
|
30
31
|
export type { QueryValue } from './utils/redirect';
|
|
31
32
|
export { tapFeedback } from './utils/haptics';
|
|
@@ -51,11 +52,16 @@ export { default as BaseInput } from './components/BaseInput.vue';
|
|
|
51
52
|
export { default as BaseMenu } from './components/BaseMenu.vue';
|
|
52
53
|
export { default as BaseSheet } from './components/BaseSheet.vue';
|
|
53
54
|
export { default as BaseCard } from './components/BaseCard.vue';
|
|
55
|
+
export { default as BaseCombobox } from './components/BaseCombobox.vue';
|
|
56
|
+
export type { ComboboxOption } from './components/BaseCombobox.vue';
|
|
54
57
|
export { default as BaseCheckbox } from './components/BaseCheckbox.vue';
|
|
55
58
|
export { default as BaseRadioGroup } from './components/BaseRadioGroup.vue';
|
|
56
59
|
export { default as BaseSelect } from './components/BaseSelect.vue';
|
|
60
|
+
export { default as BaseSlider } from './components/BaseSlider.vue';
|
|
57
61
|
export { default as BaseSpinner } from './components/BaseSpinner.vue';
|
|
58
62
|
export { default as BaseSwitch } from './components/BaseSwitch.vue';
|
|
63
|
+
export { default as BaseTable } from './components/BaseTable.vue';
|
|
64
|
+
export type { Column } from './components/BaseTable.vue';
|
|
59
65
|
export { default as BaseTextarea } from './components/BaseTextarea.vue';
|
|
60
66
|
export { default as EmptyState } from './components/EmptyState.vue';
|
|
61
67
|
export { default as FormField } from './components/FormField.vue';
|