@knime/kds-components 0.24.0 → 0.25.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/index.css +126 -83
- package/dist/index.js +963 -392
- package/dist/index.js.map +1 -1
- package/dist/src/buttons/BaseButton.vue.d.ts.map +1 -1
- package/dist/src/containers/ContextMenu/KdsContextMenu.vue.d.ts +22 -1
- package/dist/src/containers/ContextMenu/KdsContextMenu.vue.d.ts.map +1 -1
- package/dist/src/containers/ListContainer/KdsListContainer.vue.d.ts.map +1 -1
- package/dist/src/containers/ListContainer/types.d.ts +10 -5
- package/dist/src/containers/ListContainer/types.d.ts.map +1 -1
- package/dist/src/containers/MenuContainer/KdsMenuContainer.vue.d.ts.map +1 -1
- package/dist/src/containers/MenuContainer/types.d.ts +6 -0
- package/dist/src/containers/MenuContainer/types.d.ts.map +1 -1
- package/dist/src/containers/_helpers/types.d.ts +20 -0
- package/dist/src/containers/_helpers/types.d.ts.map +1 -0
- package/dist/src/containers/_helpers/useListItemKeyboardNav.d.ts +3 -1
- package/dist/src/containers/_helpers/useListItemKeyboardNav.d.ts.map +1 -1
- package/dist/src/forms/inputs/BaseInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/IntervalInput/IntervalInputPopover.vue.d.ts +16 -0
- package/dist/src/forms/inputs/IntervalInput/IntervalInputPopover.vue.d.ts.map +1 -0
- package/dist/src/forms/inputs/IntervalInput/KdsIntervalInput.vue.d.ts +398 -0
- package/dist/src/forms/inputs/IntervalInput/KdsIntervalInput.vue.d.ts.map +1 -0
- package/dist/src/forms/inputs/IntervalInput/enums.d.ts +12 -0
- package/dist/src/forms/inputs/IntervalInput/enums.d.ts.map +1 -0
- package/dist/src/forms/inputs/IntervalInput/index.d.ts +4 -0
- package/dist/src/forms/inputs/IntervalInput/index.d.ts.map +1 -0
- package/dist/src/forms/inputs/IntervalInput/intervalUtils.d.ts +31 -0
- package/dist/src/forms/inputs/IntervalInput/intervalUtils.d.ts.map +1 -0
- package/dist/src/forms/inputs/IntervalInput/types.d.ts +19 -0
- package/dist/src/forms/inputs/IntervalInput/types.d.ts.map +1 -0
- package/dist/src/forms/inputs/NumberInput/KdsNumberInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/index.d.ts +2 -0
- package/dist/src/forms/inputs/index.d.ts.map +1 -1
- package/dist/src/layouts/PanelHeader/KdsPanelHeader.vue.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/src/containers/ListContainer/enums.d.ts +0 -6
- package/dist/src/containers/ListContainer/enums.d.ts.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/IntervalInput/enums.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB;;;;CAIzB,CAAC;AAEX,eAAO,MAAM,uBAAuB,sCAAwC,CAAC;AAE7E,eAAO,MAAM,yBAAyB;;;CAG5B,CAAC;AAEX,eAAO,MAAM,2BAA2B,gCAEvC,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { default as KdsIntervalInput } from './KdsIntervalInput.vue';
|
|
2
|
+
export { kdsIntervalDirectionality, kdsIntervalDirectionalities, kdsIntervalInputFormat, kdsIntervalInputFormats, } from './enums';
|
|
3
|
+
export type { KdsIntervalDirectionality, KdsIntervalInputFormat, KdsIntervalInputProps, } from './types';
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/IntervalInput/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AACrE,OAAO,EACL,yBAAyB,EACzB,2BAA2B,EAC3B,sBAAsB,EACtB,uBAAuB,GACxB,MAAM,SAAS,CAAC;AACjB,YAAY,EACV,yBAAyB,EACzB,sBAAsB,EACtB,qBAAqB,GACtB,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Temporal } from 'temporal-polyfill';
|
|
2
|
+
import { KdsIntervalInputFormat, KdsIntervalInputUsedFormat } from './types';
|
|
3
|
+
export type IntervalPeriodNumericKey = "years" | "months" | "weeks" | "days";
|
|
4
|
+
export type IntervalDurationNumericKey = "hours" | "minutes" | "seconds" | "milliseconds";
|
|
5
|
+
export declare const periodNumericKeys: IntervalPeriodNumericKey[];
|
|
6
|
+
export declare const durationNumericKeys: IntervalDurationNumericKey[];
|
|
7
|
+
export declare const getMax: (key: IntervalPeriodNumericKey | IntervalDurationNumericKey) => number;
|
|
8
|
+
export declare const extractDurationFields: (duration: Temporal.Duration) => Record<IntervalPeriodNumericKey | IntervalDurationNumericKey, number>;
|
|
9
|
+
export declare const withDurationField: (duration: Temporal.Duration, key: IntervalPeriodNumericKey | IntervalDurationNumericKey, value: number) => Temporal.Duration;
|
|
10
|
+
export declare const createDefaultDuration: () => Temporal.Duration;
|
|
11
|
+
export declare const classifyDuration: (duration: Temporal.Duration) => KdsIntervalInputUsedFormat;
|
|
12
|
+
export declare const formatDurationToHumanReadable: (duration: Temporal.Duration, usedFormat: KdsIntervalInputUsedFormat) => string;
|
|
13
|
+
export declare const parseHumanReadableInterval: (input: string) => Temporal.Duration | null;
|
|
14
|
+
export declare const parseISOInterval: (input: string) => Temporal.Duration | null;
|
|
15
|
+
export declare const parseGenericInterval: (input: string) => Temporal.Duration | null;
|
|
16
|
+
export type IntervalValidationResult = {
|
|
17
|
+
valid: true;
|
|
18
|
+
type: KdsIntervalInputUsedFormat;
|
|
19
|
+
negative: boolean;
|
|
20
|
+
duration: Temporal.Duration;
|
|
21
|
+
} | {
|
|
22
|
+
valid: false;
|
|
23
|
+
};
|
|
24
|
+
export declare const validateIntervalInput: (input: string, expectedFormat: KdsIntervalInputFormat) => IntervalValidationResult;
|
|
25
|
+
/**
|
|
26
|
+
* Zero-out the fields that are NOT part of the given format, so the emitted
|
|
27
|
+
* `modelValue` is always a pure date-only or time-only Duration.
|
|
28
|
+
*/
|
|
29
|
+
export declare const stripInactiveFields: (duration: Temporal.Duration, usedFormat: KdsIntervalInputUsedFormat) => Temporal.Duration;
|
|
30
|
+
export declare const toTitleCase: (key: string) => string;
|
|
31
|
+
//# sourceMappingURL=intervalUtils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"intervalUtils.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/IntervalInput/intervalUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAG7C,OAAO,KAAK,EACV,sBAAsB,EACtB,0BAA0B,EAC3B,MAAM,SAAS,CAAC;AAIjB,MAAM,MAAM,wBAAwB,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;AAE7E,MAAM,MAAM,0BAA0B,GAClC,OAAO,GACP,SAAS,GACT,SAAS,GACT,cAAc,CAAC;AAEnB,eAAO,MAAM,iBAAiB,EAAE,wBAAwB,EAKvD,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,0BAA0B,EAK3D,CAAC;AAMF,eAAO,MAAM,MAAM,GACjB,KAAK,wBAAwB,GAAG,0BAA0B,KACzD,MACkE,CAAC;AAItE,eAAO,MAAM,qBAAqB,GAChC,UAAU,QAAQ,CAAC,QAAQ,KAC1B,MAAM,CAAC,wBAAwB,GAAG,0BAA0B,EAAE,MAAM,CASrE,CAAC;AAEH,eAAO,MAAM,iBAAiB,GAC5B,UAAU,QAAQ,CAAC,QAAQ,EAC3B,KAAK,wBAAwB,GAAG,0BAA0B,EAC1D,OAAO,MAAM,KACZ,QAAQ,CAAC,QACkE,CAAC;AAM/E,eAAO,MAAM,qBAAqB,QAAO,QAAQ,CAAC,QAAwB,CAAC;AAI3E,eAAO,MAAM,gBAAgB,GAC3B,UAAU,QAAQ,CAAC,QAAQ,KAC1B,0BAWF,CAAC;AAWF,eAAO,MAAM,6BAA6B,GACxC,UAAU,QAAQ,CAAC,QAAQ,EAC3B,YAAY,0BAA0B,KACrC,MA0CF,CAAC;AAqEF,eAAO,MAAM,0BAA0B,GACrC,OAAO,MAAM,KACZ,QAAQ,CAAC,QAAQ,GAAG,IA8BtB,CAAC;AAIF,eAAO,MAAM,gBAAgB,GAAI,OAAO,MAAM,KAAG,QAAQ,CAAC,QAAQ,GAAG,IAMpE,CAAC;AAIF,eAAO,MAAM,oBAAoB,GAAI,OAAO,MAAM,KAAG,QAAQ,CAAC,QAAQ,GAAG,IACX,CAAC;AAI/D,MAAM,MAAM,wBAAwB,GAChC;IACE,KAAK,EAAE,IAAI,CAAC;IACZ,IAAI,EAAE,0BAA0B,CAAC;IACjC,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,QAAQ,CAAC,QAAQ,CAAC;CAC7B,GACD;IAAE,KAAK,EAAE,KAAK,CAAA;CAAE,CAAC;AAErB,eAAO,MAAM,qBAAqB,GAChC,OAAO,MAAM,EACb,gBAAgB,sBAAsB,KACrC,wBAoBF,CAAC;AAIF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,GAC9B,UAAU,QAAQ,CAAC,QAAQ,EAC3B,YAAY,0BAA0B,KACrC,QAAQ,CAAC,QAgBX,CAAC;AAIF,eAAO,MAAM,WAAW,GAAI,KAAK,MAAM,KAAG,MACgB,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { KdsInputFieldProps } from '../types';
|
|
2
|
+
import { kdsIntervalDirectionality, kdsIntervalInputFormat } from './enums';
|
|
3
|
+
export type KdsIntervalInputFormat = (typeof kdsIntervalInputFormat)[keyof typeof kdsIntervalInputFormat];
|
|
4
|
+
/** date or time — the two formats actually used inside the popover (excludes date_or_time). */
|
|
5
|
+
export type KdsIntervalInputUsedFormat = Extract<KdsIntervalInputFormat, "date" | "time">;
|
|
6
|
+
export type KdsIntervalDirectionality = (typeof kdsIntervalDirectionality)[keyof typeof kdsIntervalDirectionality];
|
|
7
|
+
export type KdsIntervalInputProps = KdsInputFieldProps & {
|
|
8
|
+
/** Restricts the interval type. `date_or_time` allows format switching in the popover. */
|
|
9
|
+
format?: KdsIntervalInputFormat;
|
|
10
|
+
/** Allows negative intervals (descending/backward). */
|
|
11
|
+
allowDescending?: boolean;
|
|
12
|
+
};
|
|
13
|
+
export type IntervalInputPopoverProps = {
|
|
14
|
+
/** Available format modes. `date_or_time` enables switching inside the popover. */
|
|
15
|
+
format: KdsIntervalInputFormat;
|
|
16
|
+
/** Shows the forward/backward direction switch when enabled. */
|
|
17
|
+
allowDescending: boolean;
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/IntervalInput/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAEnD,OAAO,EAAE,yBAAyB,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAE5E,MAAM,MAAM,sBAAsB,GAChC,CAAC,OAAO,sBAAsB,CAAC,CAAC,MAAM,OAAO,sBAAsB,CAAC,CAAC;AAEvE,+FAA+F;AAC/F,MAAM,MAAM,0BAA0B,GAAG,OAAO,CAC9C,sBAAsB,EACtB,MAAM,GAAG,MAAM,CAChB,CAAC;AAEF,MAAM,MAAM,yBAAyB,GACnC,CAAC,OAAO,yBAAyB,CAAC,CAAC,MAAM,OAAO,yBAAyB,CAAC,CAAC;AAE7E,MAAM,MAAM,qBAAqB,GAAG,kBAAkB,GAAG;IACvD,0FAA0F;IAC1F,MAAM,CAAC,EAAE,sBAAsB,CAAC;IAChC,uDAAuD;IACvD,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B,CAAC;AAQF,MAAM,MAAM,yBAAyB,GAAG;IACtC,mFAAmF;IACnF,MAAM,EAAE,sBAAsB,CAAC;IAC/B,gEAAgE;IAChE,eAAe,EAAE,OAAO,CAAC;CAC1B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsNumberInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/NumberInput/KdsNumberInput.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"KdsNumberInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/NumberInput/KdsNumberInput.vue"],"names":[],"mappings":";iBAifa,MAAM;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA4PggH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBzoH,wBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsPasswordInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/PasswordInput/KdsPasswordInput.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsPasswordInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/PasswordInput/KdsPasswordInput.vue"],"names":[],"mappings":"AAmGA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAErD,KAAK,WAAW,GAAG,qBAAqB,CAAC;AAsCzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAuMkle,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBxte,wBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsSearchInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/SearchInput/KdsSearchInput.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"KdsSearchInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/SearchInput/KdsSearchInput.vue"],"names":[],"mappings":";iBAuSa,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAiP6qS,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBtzS,wBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsTimeInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/KdsTimeInput.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsTimeInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TimeInput/KdsTimeInput.vue"],"names":[],"mappings":"AAyLA,OAAO,EAEL,QAAQ,EAKT,MAAM,KAAK,CAAC;AACb,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AASlD,OAAO,KAAK,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAG7E,KAAK,WAAW,GAAG,iBAAiB,CAAC;AA+GrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;IACvC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACvC,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA6O2qR,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlBjzR,wBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,iBAAiB,CAAC;AAChC,mBAAmB,iBAAiB,CAAC;AAErC,cAAc,iBAAiB,CAAC;AAChC,mBAAmB,iBAAiB,CAAC;AAErC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,uBAAuB,CAAC;AACtC,mBAAmB,uBAAuB,CAAC;AAE3C,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,gBAAgB,CAAC;AAC/B,mBAAmB,gBAAgB,CAAC;AAEpC,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,YAAY,CAAC;AAC3B,mBAAmB,YAAY,CAAC;AAEhC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,iBAAiB,CAAC;AAChC,mBAAmB,iBAAiB,CAAC;AAErC,cAAc,iBAAiB,CAAC;AAChC,mBAAmB,iBAAiB,CAAC;AAErC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,uBAAuB,CAAC;AACtC,mBAAmB,uBAAuB,CAAC;AAE3C,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,gBAAgB,CAAC;AAC/B,mBAAmB,gBAAgB,CAAC;AAEpC,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,YAAY,CAAC;AAC3B,mBAAmB,YAAY,CAAC;AAEhC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,iBAAiB,CAAC;AAChC,mBAAmB,iBAAiB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsPanelHeader.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/PanelHeader/KdsPanelHeader.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KdsPanelHeader.vue.d.ts","sourceRoot":"","sources":["../../../../src/layouts/PanelHeader/KdsPanelHeader.vue"],"names":[],"mappings":"AA0DA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;;;;;;AAwFnD,wBAQG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/kds-components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.0",
|
|
4
4
|
"description": "Package containing basic Vue components of the KNIME Design System",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"consola": "^3.4.2",
|
|
39
39
|
"pretty-bytes": "^7.1.0",
|
|
40
40
|
"temporal-polyfill": "^0.3.2",
|
|
41
|
-
"@knime/kds-styles": "^0.
|
|
41
|
+
"@knime/kds-styles": "^0.25.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@storybook/vue3-vite": "^10.3.4",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../../../src/containers/ListContainer/enums.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,oBAAoB;;;CAGvB,CAAC;AAEX,eAAO,MAAM,qBAAqB,wBAAsC,CAAC"}
|