@fkui/vue-labs 6.42.0 → 6.43.1

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.
@@ -34,4 +34,8 @@
34
34
  #fillista:hover {
35
35
  cursor: default;
36
36
  background-color: transparent;
37
- }
37
+ }
38
+ time[data-v-03b0dfe5] {
39
+ color: var(--fkds-color-text-primary);
40
+ }
41
+ /*$vite$:1*/
@@ -75,7 +75,9 @@ declare const __VLS_export: <T extends object, KeyAttribute extends keyof T = ke
75
75
 
76
76
  declare const __VLS_export_2: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
77
77
 
78
- declare const __VLS_export_3: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
78
+ declare const __VLS_export_3: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
79
+
80
+ declare const __VLS_export_4: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
79
81
  props: PublicProps & __VLS_PrettifyLocal_2<{
80
82
  data: T[];
81
83
  sort?(data: T[]): T[];
@@ -99,7 +101,7 @@ declare const __VLS_export_3: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_
99
101
  __ctx?: Awaited<typeof __VLS_setup>;
100
102
  };
101
103
 
102
- declare const __VLS_export_4: DefineComponent<ExtractPropTypes< {
104
+ declare const __VLS_export_5: DefineComponent<ExtractPropTypes< {
103
105
  formatter: {
104
106
  type: PropType<FormatFunction<HoursMinutesString>>;
105
107
  required: false;
@@ -595,6 +597,19 @@ declare type __VLS_PrettifyLocal_2<T> = (T extends any ? {
595
597
  [K in keyof T as K]: T[K];
596
598
  }) & {};
597
599
 
600
+ declare type __VLS_Props = {
601
+ /**
602
+ * Unix timestamp in milliseconds.
603
+ */
604
+ timestamp: number;
605
+ /**
606
+ * Referemce time to compare the timestamp to.
607
+ *
608
+ * Defaults to the current time.
609
+ */
610
+ reference?: number;
611
+ };
612
+
598
613
  declare type __VLS_Slots = {} & {
599
614
  image?: (props: typeof __VLS_1) => any;
600
615
  };
@@ -968,9 +983,11 @@ export declare function uniqueValues<T, K extends keyof T = keyof T>(items: T[],
968
983
 
969
984
  export declare const XFileDragdrop: typeof __VLS_export_2;
970
985
 
971
- export declare const XSortFilterDatasetNg: typeof __VLS_export_3;
986
+ export declare const XRelativeTime: typeof __VLS_export_3;
987
+
988
+ export declare const XSortFilterDatasetNg: typeof __VLS_export_4;
972
989
 
973
- export declare const XTimeTextField: typeof __VLS_export_4;
990
+ export declare const XTimeTextField: typeof __VLS_export_5;
974
991
 
975
992
  export { }
976
993
 
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.58.1"
8
+ "packageVersion": "7.58.5"
9
9
  }
10
10
  ]
11
11
  }
@@ -7,6 +7,21 @@ module.exports = defineMetadata({
7
7
  flow: true,
8
8
  },
9
9
 
10
+ "x-relative-time": {
11
+ flow: true,
12
+ phrasing: true,
13
+ permittedContent: [],
14
+ textContent: "none",
15
+ attributes: {
16
+ timestamp: {
17
+ required: true,
18
+ },
19
+ reference: {
20
+ required: false,
21
+ },
22
+ },
23
+ },
24
+
10
25
  "x-sort-filter-dataset-ng": {
11
26
  flow: true,
12
27
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fkui/vue-labs",
3
- "version": "6.42.0",
3
+ "version": "6.43.1",
4
4
  "description": "Experimental and unstable FKUI components",
5
5
  "keywords": [
6
6
  "fkui",
@@ -27,7 +27,7 @@
27
27
  "import": "./dist/esm/cypress.esm.js",
28
28
  "require": "./dist/cjs/cypress.cjs.js"
29
29
  },
30
- "./style.css": "./dummy.css",
30
+ "./style.css": "./dist/esm/vue-labs.css",
31
31
  "./htmlvalidate": "./htmlvalidate/index.cjs"
32
32
  },
33
33
  "main": "./dist/cjs/index.cjs.js",
@@ -59,10 +59,10 @@
59
59
  "unit:watch": "jest --watch"
60
60
  },
61
61
  "peerDependencies": {
62
- "@fkui/date": "^6.42.0",
63
- "@fkui/design": "^6.42.0",
64
- "@fkui/logic": "^6.42.0",
65
- "@fkui/vue": "^6.42.0",
62
+ "@fkui/date": "^6.43.1",
63
+ "@fkui/design": "^6.43.1",
64
+ "@fkui/logic": "^6.43.1",
65
+ "@fkui/vue": "^6.43.1",
66
66
  "html-validate": ">= 7.9.0",
67
67
  "vue": "^3.5.0"
68
68
  },
@@ -75,5 +75,5 @@
75
75
  "node": ">= 20",
76
76
  "npm": ">= 7"
77
77
  },
78
- "gitHead": "14cda3b6de43b4b4bb9250f672d79215282b0e7c"
78
+ "gitHead": "b36dad98769c0172363a98a175c3c747c751e000"
79
79
  }