@nubisco/ui 1.12.1 → 1.13.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.
@@ -0,0 +1,41 @@
1
+ import type { IBlueprintConnection, IBlueprintProps } from './Blueprint.d';
2
+ declare function onPortMouseDown(data: {
3
+ nodeId: string;
4
+ portId: string;
5
+ type: string;
6
+ }): void;
7
+ declare function onPortMouseUp(data: {
8
+ nodeId: string;
9
+ portId: string;
10
+ type: string;
11
+ }): void;
12
+ declare function centerView(): void;
13
+ declare var __VLS_1: {};
14
+ type __VLS_Slots = {} & {
15
+ default?: (props: typeof __VLS_1) => any;
16
+ };
17
+ declare const __VLS_base: import("vue").DefineComponent<IBlueprintProps, {
18
+ centerView: typeof centerView;
19
+ onPortMouseDown: typeof onPortMouseDown;
20
+ onPortMouseUp: typeof onPortMouseUp;
21
+ panX: import("vue").Ref<number, number>;
22
+ panY: import("vue").Ref<number, number>;
23
+ zoom: import("vue").Ref<number, number>;
24
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
+ disconnect: (conn: IBlueprintConnection) => any;
26
+ connect: (conn: IBlueprintConnection) => any;
27
+ }, string, import("vue").PublicProps, Readonly<IBlueprintProps> & Readonly<{
28
+ onDisconnect?: ((conn: IBlueprintConnection) => any) | undefined;
29
+ onConnect?: ((conn: IBlueprintConnection) => any) | undefined;
30
+ }>, {
31
+ connections: IBlueprintConnection[];
32
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
33
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
34
+ declare const _default: typeof __VLS_export;
35
+ export default _default;
36
+ type __VLS_WithSlots<T, S> = T & {
37
+ new (): {
38
+ $slots: S;
39
+ };
40
+ };
41
+ //# sourceMappingURL=Blueprint.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Blueprint.vue.d.ts","sourceRoot":"","sources":["../../src/components/Blueprint.vue"],"names":[],"mappings":"AAqVA,OAAO,KAAK,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AAkF1E,iBAAS,eAAe,CAAC,IAAI,EAAE;IAC7B,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,MAAM,CAAA;CACb,QAIA;AA8BD,iBAAS,aAAa,CAAC,IAAI,EAAE;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,QAiB5E;AAwCD,iBAAS,UAAU,SA+BlB;AA+GD,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAO/C,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;6EAKd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
@@ -0,0 +1,52 @@
1
+ import type { IBlueprintCardProps, IBlueprintPort } from './BlueprintCard.d';
2
+ declare var __VLS_1: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_1) => any;
5
+ };
6
+ declare const __VLS_base: import("vue").DefineComponent<IBlueprintCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ select: (id: string) => any;
8
+ toggle: (id: string, enabled: boolean) => any;
9
+ remove: (id: string) => any;
10
+ "port-mousedown": (data: {
11
+ nodeId: string;
12
+ portId: string;
13
+ type: "input" | "output";
14
+ }) => any;
15
+ "port-mouseup": (data: {
16
+ nodeId: string;
17
+ portId: string;
18
+ type: "input" | "output";
19
+ }) => any;
20
+ }, string, import("vue").PublicProps, Readonly<IBlueprintCardProps> & Readonly<{
21
+ onSelect?: ((id: string) => any) | undefined;
22
+ onToggle?: ((id: string, enabled: boolean) => any) | undefined;
23
+ onRemove?: ((id: string) => any) | undefined;
24
+ "onPort-mousedown"?: ((data: {
25
+ nodeId: string;
26
+ portId: string;
27
+ type: "input" | "output";
28
+ }) => any) | undefined;
29
+ "onPort-mouseup"?: ((data: {
30
+ nodeId: string;
31
+ portId: string;
32
+ type: "input" | "output";
33
+ }) => any) | undefined;
34
+ }>, {
35
+ x: number;
36
+ y: number;
37
+ category: string;
38
+ color: string;
39
+ enabled: boolean;
40
+ selected: boolean;
41
+ ports: IBlueprintPort[];
42
+ removable: boolean;
43
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
44
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
45
+ declare const _default: typeof __VLS_export;
46
+ export default _default;
47
+ type __VLS_WithSlots<T, S> = T & {
48
+ new (): {
49
+ $slots: S;
50
+ };
51
+ };
52
+ //# sourceMappingURL=BlueprintCard.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BlueprintCard.vue.d.ts","sourceRoot":"","sources":["../../src/components/BlueprintCard.vue"],"names":[],"mappings":"AAqSA,OAAO,KAAK,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAwO5E,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;;;;gBA5NI,MAAM;gBAAU,MAAM;cAAQ,OAAO,GAAG,QAAQ;;;gBAGhD,MAAM;gBAAU,MAAM;cAAQ,OAAO,GAAG,QAAQ;;;;;;;gBAHhD,MAAM;gBAAU,MAAM;cAAQ,OAAO,GAAG,QAAQ;;;gBAGhD,MAAM;gBAAU,MAAM;cAAQ,OAAO,GAAG,QAAQ;;;;;;;;;;;6EA6NlE,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
@@ -0,0 +1,29 @@
1
+ import type { TBottomPanelSize, IBottomPanelProps } from './BottomPanel.d';
2
+ declare function setSize(size: TBottomPanelSize): void;
3
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
4
+ type __VLS_Slots = {} & {
5
+ title?: (props: typeof __VLS_1) => any;
6
+ } & {
7
+ toolbar?: (props: typeof __VLS_3) => any;
8
+ } & {
9
+ default?: (props: typeof __VLS_5) => any;
10
+ };
11
+ declare const __VLS_base: import("vue").DefineComponent<IBottomPanelProps, {
12
+ setSize: typeof setSize;
13
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:size": (size: TBottomPanelSize) => any;
15
+ }, string, import("vue").PublicProps, Readonly<IBottomPanelProps> & Readonly<{
16
+ "onUpdate:size"?: ((size: TBottomPanelSize) => any) | undefined;
17
+ }>, {
18
+ size: TBottomPanelSize;
19
+ title: string;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
22
+ declare const _default: typeof __VLS_export;
23
+ export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
29
+ //# sourceMappingURL=BottomPanel.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BottomPanel.vue.d.ts","sourceRoot":"","sources":["../../src/components/BottomPanel.vue"],"names":[],"mappings":"AAmPA,OAAO,KAAK,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;AAkB1E,iBAAS,OAAO,CAAC,IAAI,EAAE,gBAAgB,QAEtC;AA4MD,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,OAAO,IAAW,CAAE;AAC9D,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAO/C,QAAA,MAAM,UAAU;;;;;;;;;6EAKd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
@@ -185,10 +185,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
185
185
  shift: import("./Grid.d").TGridShiftInput;
186
186
  visible: import("./Grid.d").TGridVisibleInput;
187
187
  mode: import("./Grid.d").TGridMode;
188
+ dir: import("./Grid.d").TGridTypeInput;
188
189
  id: string;
189
190
  wrap: import("./Grid.d").TGridWrapInput;
190
191
  is: string;
191
- dir: import("./Grid.d").TGridTypeInput;
192
192
  align: import("./Grid.d").TGridAlignInput;
193
193
  justify: import("./Grid.d").TGridJustifyInput;
194
194
  gap: import("./Grid.d").TGridGapInput;
@@ -8,8 +8,8 @@ declare const __VLS_export: import("vue").DefineComponent<IIconProps, {}, {}, {}
8
8
  size: ESize | string | number;
9
9
  title: string;
10
10
  animation: import("./Icon.d").EAnimation | null;
11
- animationMode: EAnimationMode;
12
11
  color: string;
12
+ animationMode: EAnimationMode;
13
13
  weight: EWeight;
14
14
  clickable: boolean;
15
15
  hoverable: boolean;
@@ -8,20 +8,20 @@ export interface INumberInputProps extends IFieldComponent {
8
8
  declare const __VLS_export: import("vue").DefineComponent<INumberInputProps, {
9
9
  focus: () => void | undefined;
10
10
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
- "update:modelValue": (value: number | null) => any;
12
11
  change: (value: number | null) => any;
12
+ "update:modelValue": (value: number | null) => any;
13
13
  }, string, import("vue").PublicProps, Readonly<INumberInputProps> & Readonly<{
14
- "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
15
14
  onChange?: ((value: number | null) => any) | undefined;
15
+ "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
16
16
  }>, {
17
17
  variant: "default" | "fluid";
18
18
  size: "sm" | "md" | "lg";
19
19
  label: string;
20
+ error: string;
20
21
  id: string;
21
22
  required: boolean;
22
23
  disabled: boolean;
23
24
  modelValue: number | null;
24
- error: string;
25
25
  step: number;
26
26
  warning: string;
27
27
  helper: string;
@@ -1 +1 @@
1
- {"version":3,"file":"NumberInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/NumberInput.vue"],"names":[],"mappings":"AA0hBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAKtD,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAukBD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;gBA3kBH,MAAM,GAAG,IAAI;;UAGnB,MAAM;;;SAFP,MAAM;SACN,MAAM;;6EA8kBZ,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"NumberInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/NumberInput.vue"],"names":[],"mappings":"AA0hBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAKtD,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAukBD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;gBA3kBH,MAAM,GAAG,IAAI;UAGnB,MAAM;;;SAFP,MAAM;SACN,MAAM;;6EA8kBZ,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -4,9 +4,9 @@ declare const __VLS_export: import("vue").DefineComponent<IRadioProps, {}, {}, {
4
4
  }, string, import("vue").PublicProps, Readonly<IRadioProps> & Readonly<{
5
5
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
6
6
  }>, {
7
+ error: string;
7
8
  id: string;
8
9
  disabled: boolean;
9
- error: string;
10
10
  warning: string;
11
11
  helper: string;
12
12
  direction: ERadioDirection;
@@ -11,23 +11,23 @@ declare const __VLS_base: import("vue").DefineComponent<ISelectProps, {
11
11
  open: typeof openDropdown;
12
12
  close: typeof closeDropdown;
13
13
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
- "update:modelValue": (value: string | number | (string | number)[] | null) => any;
15
14
  change: (value: string | number | (string | number)[] | null) => any;
15
+ "update:modelValue": (value: string | number | (string | number)[] | null) => any;
16
16
  }, string, import("vue").PublicProps, Readonly<ISelectProps> & Readonly<{
17
- "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
18
17
  onChange?: ((value: string | number | (string | number)[] | null) => any) | undefined;
18
+ "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
19
19
  }>, {
20
20
  variant: "default" | "fluid";
21
21
  size: "sm" | "md" | "lg";
22
22
  label: string;
23
23
  name: string;
24
+ error: string;
24
25
  id: string;
25
26
  required: boolean;
26
27
  disabled: boolean;
27
28
  modelValue: string | number | Array<string | number> | null;
28
29
  options: ISelectOption[];
29
30
  multiple: boolean;
30
- error: string;
31
31
  warning: string;
32
32
  helper: string;
33
33
  placeholder: string;
@@ -1 +1 @@
1
- {"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../src/components/Select.vue"],"names":[],"mappings":"AA6qBA,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AAwGtD,iBAAS,YAAY,SAapB;AAED,iBAAS,aAAa,SAGrB;AAqnBD,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAY,CAAE;AAC7C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAO9C,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;6EAKd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../src/components/Select.vue"],"names":[],"mappings":"AA4qBA,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AAwGtD,iBAAS,YAAY,SAapB;AAED,iBAAS,aAAa,SAGrB;AAqnBD,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAY,CAAE;AAC7C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAO9C,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;6EAKd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { IShellProps } from './Shell.d';
2
- declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}, __VLS_9: {}, __VLS_11: {}, __VLS_13: {}, __VLS_15: {}, __VLS_17: {};
2
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}, __VLS_9: {}, __VLS_11: {}, __VLS_13: {}, __VLS_15: {}, __VLS_17: {}, __VLS_19: {};
3
3
  type __VLS_Slots = {} & {
4
4
  'sidebar-logo'?: (props: typeof __VLS_1) => any;
5
5
  } & {
@@ -17,7 +17,9 @@ type __VLS_Slots = {} & {
17
17
  } & {
18
18
  default?: (props: typeof __VLS_15) => any;
19
19
  } & {
20
- inspector?: (props: typeof __VLS_17) => any;
20
+ bottom?: (props: typeof __VLS_17) => any;
21
+ } & {
22
+ inspector?: (props: typeof __VLS_19) => any;
21
23
  };
22
24
  declare const __VLS_base: import("vue").DefineComponent<IShellProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<IShellProps> & Readonly<{}>, {
23
25
  inspectorVisible: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"Shell.vue.d.ts","sourceRoot":"","sources":["../../src/components/Shell.vue"],"names":[],"mappings":"AAiQA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAwJvC,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACxL,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACnD;IAAE,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAClD;IAAE,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACrD;IAAE,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACjD;IAAE,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAClD;IAAE,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACpD;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKlD,QAAA,MAAM,UAAU;;;6EAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Shell.vue.d.ts","sourceRoot":"","sources":["../../src/components/Shell.vue"],"names":[],"mappings":"AA2RA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAsKvC,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AAC7M,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACnD;IAAE,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAClD;IAAE,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACrD;IAAE,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACjD;IAAE,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAClD;IAAE,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACpD;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKlD,QAAA,MAAM,UAAU;;;6EAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
@@ -9,10 +9,10 @@ declare const __VLS_base: import("vue").DefineComponent<ISidebarLinkProps, {}, {
9
9
  onClick?: ((event: MouseEvent) => any) | undefined;
10
10
  }>, {
11
11
  tooltip: string;
12
+ active: boolean;
12
13
  disabled: boolean;
13
14
  href: string;
14
15
  to: string | Record<string, unknown>;
15
- active: boolean;
16
16
  danger: boolean;
17
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
18
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -1,15 +1,15 @@
1
1
  import type { ISliderProps } from './Slider.d';
2
2
  declare const __VLS_export: import("vue").DefineComponent<ISliderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
- "update:modelValue": (value: number | [number, number]) => any;
4
3
  change: (value: number | [number, number]) => any;
4
+ "update:modelValue": (value: number | [number, number]) => any;
5
5
  }, string, import("vue").PublicProps, Readonly<ISliderProps> & Readonly<{
6
- "onUpdate:modelValue"?: ((value: number | [number, number]) => any) | undefined;
7
6
  onChange?: ((value: number | [number, number]) => any) | undefined;
7
+ "onUpdate:modelValue"?: ((value: number | [number, number]) => any) | undefined;
8
8
  }>, {
9
9
  variant: "default" | "fluid";
10
10
  size: "sm" | "md" | "lg";
11
- disabled: boolean;
12
11
  range: boolean;
12
+ disabled: boolean;
13
13
  step: number;
14
14
  min: number;
15
15
  max: number;
@@ -54,10 +54,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
54
54
  type: string;
55
55
  rows: number;
56
56
  name: string;
57
+ error: string;
57
58
  id: string;
58
59
  required: boolean;
59
60
  disabled: boolean;
60
- error: string;
61
61
  step: string | number;
62
62
  warning: string;
63
63
  helper: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;;iBAkEf,GAAG;;AADlB,wBAMC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;;iBAwEf,GAAG;;AADlB,wBAMC"}