@returnless/focus-ui 0.0.14 → 0.0.16

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/style.css CHANGED
@@ -1 +1 @@
1
- ._visuallyHidden_o6qmb_6{position:absolute!important;width:1px!important;height:1px!important;margin:0!important;padding:0!important;overflow:hidden!important;clip-path:inset(50%)!important;border:0!important;white-space:nowrap!important}.spinner[data-v-86edaaad]{display:inline-flex;animation:spinner-86edaaad .75s linear infinite}path[data-v-86edaaad]{fill-opacity:0}@keyframes spinner-86edaaad{0%{transform:rotate(0)}to{transform:rotate(1turn)}}input[type=number][data-v-8e82f794]::-webkit-inner-spin-button,input[type=number][data-v-8e82f794]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
1
+ ._visuallyHidden_o6qmb_6{position:absolute!important;width:1px!important;height:1px!important;margin:0!important;padding:0!important;overflow:hidden!important;clip-path:inset(50%)!important;border:0!important;white-space:nowrap!important}.spinner[data-v-86edaaad]{display:inline-flex;animation:spinner-86edaaad .75s linear infinite}path[data-v-86edaaad]{fill-opacity:0}@keyframes spinner-86edaaad{0%{transform:rotate(0)}to{transform:rotate(1turn)}}input[type=number][data-v-8908e8cb]::-webkit-inner-spin-button,input[type=number][data-v-8908e8cb]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@returnless/focus-ui",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -22,6 +22,8 @@
22
22
  "@tailwindcss/typography": "^0.5.13",
23
23
  "@types/node": "^20.13.0",
24
24
  "@typescript-eslint/eslint-plugin": "^7.11.0",
25
+ "@unovis/ts": "^1.4.2",
26
+ "@unovis/vue": "^1.4.2",
25
27
  "@vitejs/plugin-vue": "^5.0.5",
26
28
  "@vueuse/core": "^10.11.0",
27
29
  "autoprefixer": "^10.4.19",
@@ -29,6 +31,7 @@
29
31
  "dayjs": "^1.11.11",
30
32
  "eslint": "^8.57.0",
31
33
  "eslint-plugin-vue": "^9.26.0",
34
+ "front-matter": "^4.0.2",
32
35
  "postcss": "^8.4.38",
33
36
  "rimraf": "^5.0.7",
34
37
  "tailwindcss": "^3.4.3",
@@ -36,8 +39,7 @@
36
39
  "vite": "^5.2.12",
37
40
  "vitepress": "^1.2.3",
38
41
  "vue-component-meta": "^2.0.19",
39
- "vue-tsc": "^2.0.19",
40
- "vuedraggable": "^4.1.0"
42
+ "vue-tsc": "^2.0.19"
41
43
  },
42
44
  "files": [
43
45
  "dist"
@@ -1,27 +0,0 @@
1
- import { TailwindColor } from '../../composables';
2
- type DataPoint = {
3
- label: string;
4
- value: number;
5
- color: TailwindColor;
6
- };
7
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
8
- /** The data points to display */
9
- dataPoints: DataPoint[];
10
- /** The height of the chart */
11
- height: number;
12
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
13
- /** The data points to display */
14
- dataPoints: DataPoint[];
15
- /** The height of the chart */
16
- height: number;
17
- }>>>, {}, {}>;
18
- export default _default;
19
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
20
- type __VLS_TypePropsToOption<T> = {
21
- [K in keyof T]-?: {} extends Pick<T, K> ? {
22
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
23
- } : {
24
- type: import('vue').PropType<T[K]>;
25
- required: true;
26
- };
27
- };
@@ -1,9 +0,0 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
- default?(_: {}): any;
3
- }>;
4
- export default _default;
5
- type __VLS_WithTemplateSlots<T, S> = T & {
6
- new (): {
7
- $slots: S;
8
- };
9
- };
@@ -1,27 +0,0 @@
1
- import { TailwindColor } from '../../composables';
2
- type DataPointStack = {
3
- label: string;
4
- dataPoints: DataPoint[];
5
- };
6
- type DataPoint = {
7
- label: string;
8
- value: number;
9
- color: TailwindColor;
10
- };
11
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
12
- dataPoints: DataPointStack[];
13
- height: number;
14
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
15
- dataPoints: DataPointStack[];
16
- height: number;
17
- }>>>, {}, {}>;
18
- export default _default;
19
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
20
- type __VLS_TypePropsToOption<T> = {
21
- [K in keyof T]-?: {} extends Pick<T, K> ? {
22
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
23
- } : {
24
- type: import('vue').PropType<T[K]>;
25
- required: true;
26
- };
27
- };
@@ -1,3 +0,0 @@
1
- export { default as BarChart } from './BarChart.vue';
2
- export { default as BarChartContainer } from './BarChartContainer.vue';
3
- export { default as BarChartStacked } from './BarChartStacked.vue';