startup-ui 0.12.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/AGENTS.md +18 -0
- package/CHANGELOG.md +39 -0
- package/CLAUDE.md +1 -0
- package/LICENSE +21 -0
- package/README.md +54 -0
- package/dist/defaults.css +83 -0
- package/dist/index.css +1 -1
- package/dist/startup-ui.cjs.js +33 -586
- package/dist/startup-ui.cjs.js.map +1 -1
- package/dist/startup-ui.es.js +7109 -8839
- package/dist/startup-ui.es.js.map +1 -1
- package/dist/types/components/SActionIcon.d.ts +2 -1
- package/dist/types/components/SActionIcon.d.ts.map +1 -1
- package/dist/types/components/SCanvas.d.ts +0 -1
- package/dist/types/components/SCanvas.d.ts.map +1 -1
- package/dist/types/components/SCheckbox.d.ts.map +1 -1
- package/dist/types/components/SCheckboxGroup.d.ts +4 -0
- package/dist/types/components/SCheckboxGroup.d.ts.map +1 -1
- package/dist/types/components/SColumnSettings.d.ts +4 -4
- package/dist/types/components/SColumnSettings.d.ts.map +1 -1
- package/dist/types/components/SConfirm/SConfirm.d.ts +2 -0
- package/dist/types/components/SConfirm/SConfirm.d.ts.map +1 -1
- package/dist/types/components/SCopyText.d.ts.map +1 -1
- package/dist/types/components/SDatePicker.d.ts +3 -4
- package/dist/types/components/SDatePicker.d.ts.map +1 -1
- package/dist/types/components/SDialog.d.ts.map +1 -1
- package/dist/types/components/SFilterGroup.d.ts +3 -3
- package/dist/types/components/SFilterGroup.d.ts.map +1 -1
- package/dist/types/components/SFooter.d.ts.map +1 -1
- package/dist/types/components/SForm.d.ts.map +1 -1
- package/dist/types/components/SFormRow.d.ts.map +1 -1
- package/dist/types/components/SHtmlEditor.d.ts +20 -0
- package/dist/types/components/SHtmlEditor.d.ts.map +1 -1
- package/dist/types/components/SImagePreview.d.ts.map +1 -1
- package/dist/types/components/SInput.d.ts +9 -2
- package/dist/types/components/SInput.d.ts.map +1 -1
- package/dist/types/components/SMenu.d.ts +39 -0
- package/dist/types/components/SMenu.d.ts.map +1 -0
- package/dist/types/components/SNote.d.ts.map +1 -1
- package/dist/types/components/SPagination.d.ts.map +1 -1
- package/dist/types/components/SProgressbar.d.ts.map +1 -1
- package/dist/types/components/SRadio.d.ts.map +1 -1
- package/dist/types/components/SRadioGroup.d.ts +4 -0
- package/dist/types/components/SRadioGroup.d.ts.map +1 -1
- package/dist/types/components/SSelect.d.ts +6 -0
- package/dist/types/components/SSelect.d.ts.map +1 -1
- package/dist/types/components/SStatus.d.ts.map +1 -1
- package/dist/types/components/STable.d.ts +4 -4
- package/dist/types/components/STable.d.ts.map +1 -1
- package/dist/types/components/SToggle.d.ts.map +1 -1
- package/dist/types/components/STooltip.d.ts +0 -1
- package/dist/types/components/STooltip.d.ts.map +1 -1
- package/dist/types/components/STree.d.ts +11 -5
- package/dist/types/components/STree.d.ts.map +1 -1
- package/dist/types/components/SUpload.d.ts +5 -4
- package/dist/types/components/SUpload.d.ts.map +1 -1
- package/dist/types/components/SVerticalMenu.d.ts.map +1 -1
- package/dist/types/components/htmlEditor/contentStyle.d.ts +9 -0
- package/dist/types/components/htmlEditor/contentStyle.d.ts.map +1 -0
- package/dist/types/components/icons.d.ts +24 -0
- package/dist/types/components/icons.d.ts.map +1 -0
- package/dist/types/config.d.ts +49 -0
- package/dist/types/config.d.ts.map +1 -0
- package/dist/types/global-components.d.ts +3 -6
- package/dist/types/global-components.d.ts.map +1 -1
- package/dist/types/index.d.ts +12 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/locale/index.d.ts +49 -0
- package/dist/types/locale/index.d.ts.map +1 -0
- package/dist/types/locale/messages/en-US.d.ts +4 -0
- package/dist/types/locale/messages/en-US.d.ts.map +1 -0
- package/dist/types/locale/messages/en.d.ts +4 -0
- package/dist/types/locale/messages/en.d.ts.map +1 -0
- package/dist/types/locale/messages/ru.d.ts +4 -0
- package/dist/types/locale/messages/ru.d.ts.map +1 -0
- package/dist/types/locale/types.d.ts +74 -0
- package/dist/types/locale/types.d.ts.map +1 -0
- package/dist/types/plugin.d.ts +2 -1
- package/dist/types/plugin.d.ts.map +1 -1
- package/dist/types/utils/deepMerge.d.ts +9 -0
- package/dist/types/utils/deepMerge.d.ts.map +1 -0
- package/dist/types/utils/options.d.ts +25 -0
- package/dist/types/utils/options.d.ts.map +1 -0
- package/llms/components/data/sfilter.md +194 -0
- package/llms/components/data/spagination.md +114 -0
- package/llms/components/data/stable.md +638 -0
- package/llms/components/data/stree.md +213 -0
- package/llms/components/forms/scheckbox.md +139 -0
- package/llms/components/forms/sdatepicker.md +161 -0
- package/llms/components/forms/sform.md +240 -0
- package/llms/components/forms/shtmleditor.md +143 -0
- package/llms/components/forms/sinput.md +165 -0
- package/llms/components/forms/sradio.md +164 -0
- package/llms/components/forms/sselect.md +149 -0
- package/llms/components/forms/sswitch.md +69 -0
- package/llms/components/forms/supload.md +189 -0
- package/llms/components/interfaces/sactionbar.md +40 -0
- package/llms/components/interfaces/sactionicon.md +126 -0
- package/llms/components/interfaces/salert.md +87 -0
- package/llms/components/interfaces/sbutton.md +167 -0
- package/llms/components/interfaces/scolumnsettings.md +204 -0
- package/llms/components/interfaces/sconfirm.md +57 -0
- package/llms/components/interfaces/scopytext.md +67 -0
- package/llms/components/interfaces/sdashboard.md +130 -0
- package/llms/components/interfaces/sdialog.md +158 -0
- package/llms/components/interfaces/simagepreview.md +98 -0
- package/llms/components/interfaces/snote.md +64 -0
- package/llms/components/interfaces/sprogressbar.md +48 -0
- package/llms/components/interfaces/sstat.md +79 -0
- package/llms/components/interfaces/sstatus.md +76 -0
- package/llms/components/interfaces/stag.md +70 -0
- package/llms/components/interfaces/stimeline.md +47 -0
- package/llms/components/interfaces/stoggle.md +120 -0
- package/llms/components/interfaces/stooltip.md +88 -0
- package/llms/components/template/scanvas.md +61 -0
- package/llms/components/template/smenu.md +88 -0
- package/llms/components/template/sverticalmenu.md +113 -0
- package/llms/llms.txt +49 -0
- package/package.json +37 -4
- package/dist/types/components/SDropdownMenu.d.ts +0 -39
- package/dist/types/components/SDropdownMenu.d.ts.map +0 -1
- package/dist/types/components/SHorizontalMenu.d.ts +0 -33
- package/dist/types/components/SHorizontalMenu.d.ts.map +0 -1
|
@@ -4,6 +4,8 @@ export interface SActionIconProps {
|
|
|
4
4
|
danger?: boolean;
|
|
5
5
|
confirm?: string;
|
|
6
6
|
confirmTitle?: string;
|
|
7
|
+
/** Additional options passed through to SConfirm.open (acceptLabel, cancelLabel, variant, ...) */
|
|
8
|
+
confirmOptions?: Record<string, any>;
|
|
7
9
|
is?: string | Component;
|
|
8
10
|
}
|
|
9
11
|
declare const _default: import('vue').DefineComponent<SActionIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
@@ -12,7 +14,6 @@ declare const _default: import('vue').DefineComponent<SActionIconProps, {}, {},
|
|
|
12
14
|
onClick?: (() => any) | undefined;
|
|
13
15
|
}>, {
|
|
14
16
|
danger: boolean;
|
|
15
|
-
confirmTitle: string;
|
|
16
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
18
|
export default _default;
|
|
18
19
|
//# sourceMappingURL=SActionIcon.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SActionIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SActionIcon.vue"],"names":[],"mappings":"AAKA;
|
|
1
|
+
{"version":3,"file":"SActionIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SActionIcon.vue"],"names":[],"mappings":"AAKA;AAoFA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AAErC,MAAM,WAAW,gBAAgB;IAC7B,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACxB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,kGAAkG;IAClG,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACrC,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B;;;;;;YANY,OAAO;;AAmHpB,wBASG"}
|
|
@@ -18,7 +18,6 @@ declare function __VLS_template(): {
|
|
|
18
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
19
|
declare const __VLS_component: import('vue').DefineComponent<SCanvasProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SCanvasProps> & Readonly<{}>, {
|
|
20
20
|
hasStickySidebar: boolean;
|
|
21
|
-
sidebarMobileTitle: string;
|
|
22
21
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
23
22
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
23
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCanvas.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SCanvas.vue"],"names":[],"mappings":"AAgCA;
|
|
1
|
+
{"version":3,"file":"SCanvas.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SCanvas.vue"],"names":[],"mappings":"AAgCA;AAoPA,MAAM,WAAW,YAAY;IACzB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC/B;AAkBD,iBAAS,cAAc;WAkGT,OAAO,IAA6B;;wBAftB,GAAG;2BACA,GAAG;yBACL,GAAG;yBACH,GAAG;yBACF,GAAG;yBACH,GAAG;;;;EAehC;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;sBAxIE,OAAO;wFAgJ5B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCheckbox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SCheckbox.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SCheckbox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SCheckbox.vue"],"names":[],"mappings":"AAaA;AAgKA,MAAM,WAAW,cAAc;IAC3B,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;IAClC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,KAAK,WAAW,GAAG,cAAc,CAAC;AA8ClC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAuDT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;6FAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -2,6 +2,10 @@ export interface SCheckboxGroupProps {
|
|
|
2
2
|
modelValue?: any[];
|
|
3
3
|
options?: Record<string | number, any> | any[];
|
|
4
4
|
vertical?: boolean;
|
|
5
|
+
/** Value key for an array of objects (default 'value') */
|
|
6
|
+
optionValue?: string;
|
|
7
|
+
/** Label key for an array of objects (default 'label') */
|
|
8
|
+
optionLabel?: string;
|
|
5
9
|
}
|
|
6
10
|
type __VLS_Props = SCheckboxGroupProps;
|
|
7
11
|
type __VLS_PublicProps = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCheckboxGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SCheckboxGroup.vue"],"names":[],"mappings":"AAQA;
|
|
1
|
+
{"version":3,"file":"SCheckboxGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SCheckboxGroup.vue"],"names":[],"mappings":"AAQA;AAuDA,MAAM,WAAW,mBAAmB;IAChC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;IAEnB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,GAAG,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,CAAC;IAC/C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,0DAA0D;IAC1D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,0DAA0D;IAC1D,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,KAAK,WAAW,GAAG,mBAAmB,CAAC;AAevC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;CAClB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA2CT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;6FAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -4,19 +4,19 @@ export interface SColumnSettingsPreset {
|
|
|
4
4
|
}
|
|
5
5
|
export interface SColumnSettingsProps {
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Set of shown columns in the format: ['id1', 'id2', ...]
|
|
8
8
|
*/
|
|
9
9
|
modelValue?: string[];
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Set of available columns: {id1: 'Column title 1', ...}
|
|
12
12
|
*/
|
|
13
13
|
options?: Record<string, string>;
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Default value for reset
|
|
16
16
|
*/
|
|
17
17
|
columnPresets?: SColumnSettingsPreset[];
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* These columns cannot be disabled
|
|
20
20
|
*/
|
|
21
21
|
permanentColumns?: string[];
|
|
22
22
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SColumnSettings.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SColumnSettings.vue"],"names":[],"mappings":"AAwCA;
|
|
1
|
+
{"version":3,"file":"SColumnSettings.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SColumnSettings.vue"],"names":[],"mappings":"AAwCA;AA6aA,MAAM,WAAW,qBAAqB;IAClC,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,EAAE,CAAC;CACrB;AAED,MAAM,WAAW,oBAAoB;IACjC;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC;;OAEG;IACH,aAAa,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACxC;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC/B;AAmJD,iBAAS,cAAc;WAyJT,OAAO,IAA6B;;uBAdvB,GAAG;;;YACE,GAAG;;;;;;;;EAkBlC;AAsBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;gBArVJ,MAAM,EAAE;aAIX,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;mBAIhB,qBAAqB,EAAE;sBAIpB,MAAM,EAAE;;;;;kBAmV7B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -2,6 +2,8 @@ interface TemplateData {
|
|
|
2
2
|
title?: string;
|
|
3
3
|
cancelLabel?: string;
|
|
4
4
|
acceptLabel?: string;
|
|
5
|
+
/** Color of the accept button: 'danger' (red, default) for destructive actions, 'primary' for non-destructive ones */
|
|
6
|
+
variant?: 'primary' | 'danger';
|
|
5
7
|
onAccept?: () => void;
|
|
6
8
|
onCancel?: () => void;
|
|
7
9
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SConfirm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/SConfirm/SConfirm.vue"],"names":[],"mappings":"AAoBA;
|
|
1
|
+
{"version":3,"file":"SConfirm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/SConfirm/SConfirm.vue"],"names":[],"mappings":"AAoBA;AAkKA,UAAU,YAAY;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,sHAAsH;IACtH,OAAO,CAAC,EAAE,SAAS,GAAG,QAAQ,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;CACzB;AAaD,iBAAS,IAAI,CAAC,GAAG,EAAE,MAAM,EAAE,YAAY,GAAE,YAAiB,QAmBzD;;;;;;;AAsKD,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCopyText.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SCopyText.vue"],"names":[],"mappings":"AAgBA;
|
|
1
|
+
{"version":3,"file":"SCopyText.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SCopyText.vue"],"names":[],"mappings":"AAgBA;AA4GA,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,MAAM,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;IAE5B,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAsBF,iBAAS,cAAc;WAgFT,OAAO,IAA6B;;yBAXrB,GAAG;yBACH,GAAG;;;;EAe/B;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;UAhIV,OAAO,GAAG,QAAQ,GAAG,OAAO;YAC1B,OAAO,GAAG,QAAQ;6EAsI7B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -5,10 +5,11 @@ export interface SDatePickerProps {
|
|
|
5
5
|
min?: string;
|
|
6
6
|
max?: string;
|
|
7
7
|
numberOfMonths?: number;
|
|
8
|
-
|
|
9
|
-
monthNames?: string[];
|
|
8
|
+
firstDay?: number;
|
|
10
9
|
buttons?: Record<string, string>;
|
|
11
10
|
withTime?: boolean;
|
|
11
|
+
clearable?: boolean;
|
|
12
|
+
icon?: string | string[];
|
|
12
13
|
}
|
|
13
14
|
type __VLS_Props = SDatePickerProps;
|
|
14
15
|
type __VLS_PublicProps = {
|
|
@@ -20,8 +21,6 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
20
21
|
"onUpdate:modelValue"?: ((value: string | string[] | null) => any) | undefined;
|
|
21
22
|
}>, {
|
|
22
23
|
range: boolean;
|
|
23
|
-
weekDayNames: string[];
|
|
24
|
-
monthNames: string[];
|
|
25
24
|
withTime: boolean;
|
|
26
25
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
26
|
input: HTMLDivElement;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SDatePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SDatePicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SDatePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SDatePicker.vue"],"names":[],"mappings":"AA4FA;AA+0BA,MAAM,WAAW,gBAAgB;IAC7B,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,SAAS,CAAC,EAAE,OAAO,CAAC;IAIpB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC5B;AAED,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAodpC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,CAAC;CACrC,GAAG,WAAW,CAAC;;;;;;WA1eJ,OAAO;cAWJ,OAAO;;;;;AAk3BtB,wBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SDialog.vue"],"names":[],"mappings":"AAkBA;AAsJA,MAAM,WAAW,YAAY;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,KAAK,WAAW,GAAG,YAAY,CAAC;AAuDhC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;
|
|
1
|
+
{"version":3,"file":"SDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SDialog.vue"],"names":[],"mappings":"AAkBA;AAsJA,MAAM,WAAW,YAAY;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,KAAK,WAAW,GAAG,YAAY,CAAC;AAuDhC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAmFT,OAAO,IAA6B;;yBAZpB,GAAG;;;;;;;EAiBhC;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;uBASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* If set, reads the model value from query parameters on load and updates them when filter values change
|
|
4
4
|
*/
|
|
5
5
|
bindToQuery?: boolean;
|
|
6
6
|
/**
|
|
7
|
-
* Query
|
|
7
|
+
* Query parameters that are not included in the model
|
|
8
8
|
*/
|
|
9
9
|
ignoreQueryNames?: string[];
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Model values that are not written to query parameters (such parameters are skipped)
|
|
12
12
|
*/
|
|
13
13
|
ignoreQueryValues?: any[];
|
|
14
14
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SFilterGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SFilterGroup.vue"],"names":[],"mappings":"AAKA;
|
|
1
|
+
{"version":3,"file":"SFilterGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SFilterGroup.vue"],"names":[],"mappings":"AAKA;AA+GA,KAAK,WAAW,GAAG;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B;;OAEG;IACH,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC;CAC7B,CAAC;AAgFF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAChC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA0BT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;iBA1IH,OAAO;sBAIF,MAAM,EAAE;uBAIP,GAAG,EAAE;wFA2I3B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SFooter.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SFooter.vue"],"names":[],"mappings":"AAKA;
|
|
1
|
+
{"version":3,"file":"SFooter.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SFooter.vue"],"names":[],"mappings":"AAKA;AA8FA,iBAAS,cAAc;WA0BT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAOD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,0RAMnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SForm.vue"],"names":[],"mappings":"AAMA;
|
|
1
|
+
{"version":3,"file":"SForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SForm.vue"],"names":[],"mappings":"AAMA;AAoJA,MAAM,WAAW,UAAU;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAChC;AAED,KAAK,WAAW,GAAG,UAAU,CAAC;AAwF9B,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAChC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA4BT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;YArJR,MAAM;kBAEA,OAAO;aACZ,OAAO;iBACH,MAAM,GAAG,MAAM;YACpB,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;yFAyJ9B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SFormRow.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SFormRow.vue"],"names":[],"mappings":"AAwBA;
|
|
1
|
+
{"version":3,"file":"SFormRow.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SFormRow.vue"],"names":[],"mappings":"AAwBA;AAgOA,MAAM,WAAW,aAAa;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAChC;AAgGD,iBAAS,KAAK,SAMb;AAOD,iBAAS,cAAc;WAwFT,OAAO,IAA6B;;uBAbvB,GAAG;yBACD,GAAG;sBACN,GAAG;;;;;;EAgB5B;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;kBASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -3,6 +3,24 @@ export interface SHtmlEditorProps {
|
|
|
3
3
|
placeholder?: string;
|
|
4
4
|
media?: boolean;
|
|
5
5
|
height?: number;
|
|
6
|
+
/** Additional TinyMCE plugins (merged with the base ones) */
|
|
7
|
+
plugins?: string[];
|
|
8
|
+
/** Toolbar override */
|
|
9
|
+
toolbar?: string;
|
|
10
|
+
/** TinyMCE menu bar (disabled by default) */
|
|
11
|
+
menubar?: string | boolean;
|
|
12
|
+
/** Additional content CSS — appended to the base content_style */
|
|
13
|
+
contentStyle?: string;
|
|
14
|
+
/** External content CSS (content_css) */
|
|
15
|
+
contentCss?: string | string[];
|
|
16
|
+
/** Header offset for fullscreen, px. Alternative — the --s-header-height CSS variable */
|
|
17
|
+
headerOffset?: number;
|
|
18
|
+
/**
|
|
19
|
+
* Deep merge into the default TinyMCE configuration (highest priority).
|
|
20
|
+
* The `setup` field is composed with the library one (called after it),
|
|
21
|
+
* `plugins` are merged with the base ones.
|
|
22
|
+
*/
|
|
23
|
+
init?: Record<string, any>;
|
|
6
24
|
}
|
|
7
25
|
type __VLS_Props = SHtmlEditorProps;
|
|
8
26
|
type __VLS_PublicProps = {
|
|
@@ -11,9 +29,11 @@ type __VLS_PublicProps = {
|
|
|
11
29
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
30
|
"update:modelValue": (value: string) => any;
|
|
13
31
|
} & {
|
|
32
|
+
init: (editor: any) => any;
|
|
14
33
|
changeContent: () => any;
|
|
15
34
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
35
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
36
|
+
onInit?: ((editor: any) => any) | undefined;
|
|
17
37
|
onChangeContent?: (() => any) | undefined;
|
|
18
38
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
19
39
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SHtmlEditor.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SHtmlEditor.vue"],"names":[],"mappings":"AAKA;
|
|
1
|
+
{"version":3,"file":"SHtmlEditor.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SHtmlEditor.vue"],"names":[],"mappings":"AAKA;AA+XA,MAAM,WAAW,gBAAgB;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,6DAA6D;IAC7D,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,uBAAuB;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,6CAA6C;IAC7C,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAC3B,kEAAkE;IAClE,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,yCAAyC;IACzC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAC/B,yFAAyF;IACzF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC9B;AAED,KAAK,WAAW,GAAG,gBAAgB,CAAC;AA0UpC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;AAqEhB,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SImagePreview.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SImagePreview.vue"],"names":[],"mappings":"AAqBA;AAkJA,MAAM,WAAW,kBAAkB;IAC/B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAgDD,iBAAS,cAAc;
|
|
1
|
+
{"version":3,"file":"SImagePreview.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SImagePreview.vue"],"names":[],"mappings":"AAqBA;AAkJA,MAAM,WAAW,kBAAkB;IAC/B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAgDD,iBAAS,cAAc;WAoFT,OAAO,IAA6B;;yBAZrB,GAAG;sBACN,GAAG;;;;;;EAgB5B;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;kBAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
import { StyleValue } from 'vue';
|
|
2
2
|
export interface SInputProps {
|
|
3
3
|
modelValue?: number | string | null;
|
|
4
|
-
type?: 'text' | 'string' | 'number' | 'email' | 'password' | 'textarea'
|
|
4
|
+
type?: 'text' | 'string' | 'number' | 'email' | 'password' | 'textarea';
|
|
5
5
|
placeholder?: string;
|
|
6
6
|
prefix?: string;
|
|
7
7
|
suffix?: string;
|
|
8
|
+
clearable?: boolean;
|
|
8
9
|
disabled?: boolean;
|
|
9
10
|
rows?: number;
|
|
10
11
|
inputStyle?: StyleValue;
|
|
12
|
+
/**
|
|
13
|
+
* What to represent an empty value with: '' or null.
|
|
14
|
+
* By default (undefined) the behavior is unchanged. For example, emptyValue="" guarantees
|
|
15
|
+
* an empty string instead of null (useful for NOT NULL fields).
|
|
16
|
+
*/
|
|
17
|
+
emptyValue?: '' | null;
|
|
11
18
|
}
|
|
12
19
|
type __VLS_Props = SInputProps;
|
|
13
20
|
type __VLS_PublicProps = {
|
|
@@ -31,7 +38,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
31
38
|
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
32
39
|
onChange?: ((value: string) => any) | undefined;
|
|
33
40
|
}>, {
|
|
34
|
-
type: "text" | "string" | "number" | "email" | "password" | "textarea"
|
|
41
|
+
type: "text" | "string" | "number" | "email" | "password" | "textarea";
|
|
35
42
|
disabled: boolean;
|
|
36
43
|
rows: number;
|
|
37
44
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SInput.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SInput.vue"],"names":[],"mappings":"AAqBA;AAwKA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAEtC,MAAM,WAAW,WAAW;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IACpC,IAAI,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,UAAU,GAAG,UAAU,CAAC;IACxE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,EAAE,GAAG,IAAI,CAAC;CAC1B;AAED,KAAK,WAAW,GAAG,WAAW,CAAC;AAwC/B,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;CACnC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA0FT,OAAO,IAA6B;;wBAXtB,GAAG;wBACH,GAAG;;;;EAe9B;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;UA9KV,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,UAAU,GAAG,UAAU;cAK5D,OAAO;UACX,MAAM;wFAiLf,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export interface SMenuItem {
|
|
2
|
+
label?: string;
|
|
3
|
+
url?: string;
|
|
4
|
+
/** Custom icon name passed to the icon renderer (FontAwesome by default). */
|
|
5
|
+
icon?: string | string[];
|
|
6
|
+
/** Image URL shown instead of an icon (rendered as a round avatar). */
|
|
7
|
+
avatar?: string;
|
|
8
|
+
/** Small badge with a number/text (e.g. an unread count). */
|
|
9
|
+
counter?: string | number;
|
|
10
|
+
active?: boolean;
|
|
11
|
+
/** HTTP method for SPA navigation links (e.g. 'post' for a logout link). */
|
|
12
|
+
method?: string;
|
|
13
|
+
/** Extra class on the menu item. */
|
|
14
|
+
class?: string;
|
|
15
|
+
children?: SMenuItem[];
|
|
16
|
+
}
|
|
17
|
+
export interface SMenuProps {
|
|
18
|
+
items?: SMenuItem[];
|
|
19
|
+
}
|
|
20
|
+
declare function __VLS_template(): {
|
|
21
|
+
attrs: Partial<{}>;
|
|
22
|
+
slots: {
|
|
23
|
+
default?(_: {}): any;
|
|
24
|
+
};
|
|
25
|
+
refs: {};
|
|
26
|
+
rootEl: HTMLDivElement;
|
|
27
|
+
};
|
|
28
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
29
|
+
declare const __VLS_component: import('vue').DefineComponent<SMenuProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SMenuProps> & Readonly<{}>, {
|
|
30
|
+
items: SMenuItem[];
|
|
31
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
32
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
33
|
+
export default _default;
|
|
34
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=SMenu.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SMenu.vue"],"names":[],"mappings":"AA0BA;AAqNA,MAAM,WAAW,SAAS;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,6EAA6E;IAC7E,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACzB,uEAAuE;IACvE,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,6DAA6D;IAC7D,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,4EAA4E;IAC5E,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,SAAS,EAAE,CAAC;CAC1B;AAED,MAAM,WAAW,UAAU;IAEvB,KAAK,CAAC,EAAE,SAAS,EAAE,CAAC;CACvB;AA4BD,iBAAS,cAAc;WAsIT,OAAO,IAA6B;;yBAVpB,GAAG;;;;EAehC;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;WAtLT,SAAS,EAAE;wFA8LrB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SNote.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SNote.vue"],"names":[],"mappings":"AAWA;
|
|
1
|
+
{"version":3,"file":"SNote.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SNote.vue"],"names":[],"mappings":"AAWA;AA6FA,MAAM,WAAW,UAAU;IACvB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;CACnB;AAUD,iBAAS,cAAc;WA8CT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,2SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SPagination.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SPagination.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SPagination.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SPagination.vue"],"names":[],"mappings":"AAoBA;AAuKA,UAAU,cAAc;IACpB,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,OAAO,CAAC;IAChB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB;AAED,KAAK,WAAW,GAAG;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,cAAc,EAAE,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,CAAC;IACvE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;;oBANmB,OAAO;mBACR,OAAO;SAJjB,MAAM;WACJ,cAAc,EAAE;;AA6K5B,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SProgressbar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SProgressbar.vue"],"names":[],"mappings":"AAYA;
|
|
1
|
+
{"version":3,"file":"SProgressbar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SProgressbar.vue"],"names":[],"mappings":"AAYA;AAsFA,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;CACtB,CAAC;AAMF,iBAAS,cAAc;WAwCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,6SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SRadio.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SRadio.vue"],"names":[],"mappings":"AAMA;
|
|
1
|
+
{"version":3,"file":"SRadio.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SRadio.vue"],"names":[],"mappings":"AAMA;AA8EA,MAAM,WAAW,WAAW;IACxB,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;IACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAkCD,iBAAS,cAAc;WAsCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;+FAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -3,6 +3,10 @@ export interface SRadioGroupProps {
|
|
|
3
3
|
buttons?: boolean;
|
|
4
4
|
vertical?: boolean;
|
|
5
5
|
placeholder?: string;
|
|
6
|
+
/** Value key for an array of objects (default 'value') */
|
|
7
|
+
optionValue?: string;
|
|
8
|
+
/** Label key for an array of objects (default 'label') */
|
|
9
|
+
optionLabel?: string;
|
|
6
10
|
}
|
|
7
11
|
type __VLS_Props = SRadioGroupProps;
|
|
8
12
|
type __VLS_PublicProps = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SRadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SRadioGroup.vue"],"names":[],"mappings":"AAaA;
|
|
1
|
+
{"version":3,"file":"SRadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SRadioGroup.vue"],"names":[],"mappings":"AAaA;AA+JA,MAAM,WAAW,gBAAgB;IAE7B,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,GAAG,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,CAAC;IAC/C,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,0DAA0D;IAC1D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,0DAA0D;IAC1D,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,KAAK,WAAW,GAAG,gBAAgB,CAAC;AA6BpC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAgET,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;6FAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -7,6 +7,10 @@ export interface SSelectProps {
|
|
|
7
7
|
inline?: boolean;
|
|
8
8
|
virtual?: boolean;
|
|
9
9
|
virtualScrollSize?: number;
|
|
10
|
+
/** Value key for an array of objects (default 'value') */
|
|
11
|
+
optionValue?: string;
|
|
12
|
+
/** Label key for an array of objects (default 'label') */
|
|
13
|
+
optionLabel?: string;
|
|
10
14
|
}
|
|
11
15
|
type __VLS_Props = SSelectProps;
|
|
12
16
|
type __VLS_PublicProps = {
|
|
@@ -33,6 +37,7 @@ declare function __VLS_template(): {
|
|
|
33
37
|
};
|
|
34
38
|
refs: {
|
|
35
39
|
selectRef: HTMLDivElement;
|
|
40
|
+
fieldRef: HTMLDivElement;
|
|
36
41
|
dropdownRef: HTMLDivElement;
|
|
37
42
|
scrollContainer: HTMLDivElement;
|
|
38
43
|
};
|
|
@@ -53,6 +58,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
53
58
|
virtualScrollSize: number;
|
|
54
59
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
55
60
|
selectRef: HTMLDivElement;
|
|
61
|
+
fieldRef: HTMLDivElement;
|
|
56
62
|
dropdownRef: HTMLDivElement;
|
|
57
63
|
scrollContainer: HTMLDivElement;
|
|
58
64
|
}, HTMLDivElement>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SSelect.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SSelect.vue"],"names":[],"mappings":"AA+DA;AAwoBA,MAAM,WAAW,YAAY;IAEzB,OAAO,EAAE,MAAM,CAAC,MAAM,GAAG,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,CAAC;IAC9C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,0DAA0D;IAC1D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,0DAA0D;IAC1D,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,KAAK,WAAW,GAAG,YAAY,CAAC;AA8UhC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAuNT,OAAO,IAA6B;;;;YAhBvB,GAAG;;;;;;YACF,GAAG;;;;;;YACH,GAAG;;;;;;;;;EAmB9B;AAgCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;aA1lBP,OAAO;uBACG,MAAM;;;;;;kBAmmB5B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SStatus.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SStatus.vue"],"names":[],"mappings":"AAMA;
|
|
1
|
+
{"version":3,"file":"SStatus.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SStatus.vue"],"names":[],"mappings":"AAMA;AA4FA,KAAK,KAAK,GAAG,YAAY,GAAG,MAAM,GAAG,SAAS,GAAG,cAAc,GAAG,iBAAiB,GAAG,eAAe,GAAG,kBAAkB,GAAG,KAAK,GAAG,UAAU,GAAG,WAAW,GAAG,cAAc,GAAG,QAAQ,GAAG,aAAa,GAAG,cAAc,GAAG,iBAAiB,GAAG,OAAO,GAAG,YAAY,GAAG,aAAa,GAAG,gBAAgB,CAAC;AAC3S,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC5B,CAAC;AAQF,iBAAS,cAAc;WAqCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,6SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -16,7 +16,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
16
16
|
headers?(_: {}): any;
|
|
17
17
|
nodata?(_: {}): any;
|
|
18
18
|
row?(_: {
|
|
19
|
-
row: number | (() => string) | (() => string) | T | {
|
|
19
|
+
row: number | (() => string) | (() => string) | T | ((callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any) => void) | (() => ArrayIterator<[number, T]>) | (() => ArrayIterator<number>) | (() => ArrayIterator<T>) | {
|
|
20
20
|
(...items: ConcatArray<T>[]): T[];
|
|
21
21
|
(...items: (T | ConcatArray<T>)[]): T[];
|
|
22
22
|
} | ((searchElement: T, fromIndex?: number) => number) | ((searchElement: T, fromIndex?: number) => number) | ((start?: number, end?: number) => T[]) | ((searchElement: T, fromIndex?: number) => boolean) | ((index: number) => T | undefined) | {
|
|
@@ -28,7 +28,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
28
28
|
} | ((...items: T[]) => number) | {
|
|
29
29
|
<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): this is S[];
|
|
30
30
|
(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;
|
|
31
|
-
} | ((predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any) => boolean) | (
|
|
31
|
+
} | ((predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any) => boolean) | (<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any) => U[]) | {
|
|
32
32
|
<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S[];
|
|
33
33
|
(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): T[];
|
|
34
34
|
} | {
|
|
@@ -42,14 +42,14 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
42
42
|
} | {
|
|
43
43
|
<S extends T>(predicate: (value: T, index: number, obj: T[]) => value is S, thisArg?: any): S | undefined;
|
|
44
44
|
(predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any): T | undefined;
|
|
45
|
-
} | ((predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any) => number) | ((value: T, start?: number, end?: number) => T[]) | ((target: number, start: number, end?: number) => T[]) | (
|
|
45
|
+
} | ((predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any) => number) | ((value: T, start?: number, end?: number) => T[]) | ((target: number, start: number, end?: number) => T[]) | (<U, This = undefined>(callback: (this: This, value: T, index: number, array: T[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) | {
|
|
46
46
|
<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S | undefined;
|
|
47
47
|
(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): T | undefined;
|
|
48
48
|
} | ((predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any) => number) | (() => T[]) | ((compareFn?: ((a: T, b: T) => number) | undefined) => T[]) | {
|
|
49
49
|
(start: number, deleteCount: number, ...items: T[]): T[];
|
|
50
50
|
(start: number, deleteCount?: number): T[];
|
|
51
51
|
} | ((index: number, value: T) => T[]) | (() => string);
|
|
52
|
-
index: number | "concat" | "indexOf" | "lastIndexOf" | "slice" | "length" | "includes" | "at" | "toLocaleString" | "pop" | "push" | "join" | "reverse" | "shift" | "sort" | "splice" | "unshift" | "every" | "some" | "
|
|
52
|
+
index: number | "forEach" | "entries" | "keys" | "values" | "concat" | "indexOf" | "lastIndexOf" | "slice" | "length" | "includes" | "at" | "toLocaleString" | "pop" | "push" | "join" | "reverse" | "shift" | "sort" | "splice" | "unshift" | "every" | "some" | "map" | "filter" | "reduce" | "reduceRight" | "find" | "findIndex" | "fill" | "copyWithin" | "flatMap" | "flat" | "findLast" | "findLastIndex" | "toReversed" | "toSorted" | "toSpliced" | "with" | "toString";
|
|
53
53
|
}): any;
|
|
54
54
|
default?(_: {}): any;
|
|
55
55
|
footer?(_: {}): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"STable.vue.d.ts","sourceRoot":"","sources":["../../../src/components/STable.vue"],"names":[],"mappings":"AA+BA;
|
|
1
|
+
{"version":3,"file":"STable.vue.d.ts","sourceRoot":"","sources":["../../../src/components/STable.vue"],"names":[],"mappings":"AA+BA;yBA6MiB,CAAC,EACjB,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WAsJO,mBAAmB,CAAC;eApJjB,CAAC,EAAE,GAAG,MAAM,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,CAAC;oBAC3B,OAAO;kBACT,OAAO;mBACN,OAAO;iBACT,MAAM;sBACD,OAAO;iBACZ,MAAM;oBACH,OAAO;mBA6IuE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;wBArCiB,GAAG;yBACF,GAAG;wBACJ,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YACN,GAAG;yBACC,GAAG;wBACJ,GAAG;yBACF,GAAG;;UAiCzB,EAAE;EAEL,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAjKzE,wBAiK4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SToggle.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SToggle.vue"],"names":[],"mappings":"AAYA;
|
|
1
|
+
{"version":3,"file":"SToggle.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SToggle.vue"],"names":[],"mappings":"AAYA;AA+HA,MAAM,WAAW,YAAY;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,IAAI,GAAG,SAAS,GAAG,KAAK,GAAG,OAAO,CAAC;CAC9C;AA+CD,iBAAS,cAAc;WA+CT,OAAO,IAA6B;;uBAXvB,GAAG;yBACD,GAAG;;;;EAe/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;WAjHT,IAAI,GAAG,SAAS,GAAG,KAAK,GAAG,OAAO;YADjC,OAAO;wFA0HlB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -17,7 +17,6 @@ declare function __VLS_template(): {
|
|
|
17
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
18
|
declare const __VLS_component: import('vue').DefineComponent<STooltipProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<STooltipProps> & Readonly<{}>, {
|
|
19
19
|
at: "top" | "bottom" | "right" | "left" | null;
|
|
20
|
-
icon: string | string[];
|
|
21
20
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
22
21
|
$icon: HTMLDivElement;
|
|
23
22
|
$tooltip: HTMLDivElement;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"STooltip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/STooltip.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"STooltip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/STooltip.vue"],"names":[],"mappings":"AAkBA;AAgRA,MAAM,WAAW,aAAa;IAC1B,EAAE,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,CAAC;IAGhD,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC5B;AAiGD,iBAAS,cAAc;WAwFT,OAAO,IAA6B;;sBAbxB,GAAG;yBACC,GAAG;;;;;;;EAiBhC;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;QApNZ,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI;;;;kBA6NjD,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -6,26 +6,26 @@ export interface STreeNode {
|
|
|
6
6
|
}
|
|
7
7
|
type __VLS_Props = {
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Array of the form [{id, label, children: [...]}, ...]
|
|
10
10
|
*/
|
|
11
11
|
data: STreeNode[];
|
|
12
12
|
expandedKeys?: (string | number)[];
|
|
13
13
|
draggable?: boolean;
|
|
14
14
|
selectable?: boolean;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Enable checkboxes
|
|
17
17
|
*/
|
|
18
18
|
checkboxes?: boolean;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* When clicking a checkbox in a parent node, the checkbox state of descendants does not change
|
|
21
21
|
*/
|
|
22
22
|
selectWithChildren?: boolean;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Key under which expanded nodes are stored in localStorage
|
|
25
25
|
*/
|
|
26
26
|
storeExpandedKeysTo?: string;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Borders
|
|
29
29
|
*/
|
|
30
30
|
bordered?: boolean;
|
|
31
31
|
};
|
|
@@ -38,10 +38,16 @@ declare function __VLS_template(): {
|
|
|
38
38
|
node?(props: {
|
|
39
39
|
node: STreeNode;
|
|
40
40
|
}): any;
|
|
41
|
+
'node-actions'?(props: {
|
|
42
|
+
node: STreeNode;
|
|
43
|
+
}): any;
|
|
41
44
|
}> & {
|
|
42
45
|
node?(props: {
|
|
43
46
|
node: STreeNode;
|
|
44
47
|
}): any;
|
|
48
|
+
'node-actions'?(props: {
|
|
49
|
+
node: STreeNode;
|
|
50
|
+
}): any;
|
|
45
51
|
};
|
|
46
52
|
refs: {};
|
|
47
53
|
rootEl: HTMLDivElement;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"STree.vue.d.ts","sourceRoot":"","sources":["../../../src/components/STree.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"STree.vue.d.ts","sourceRoot":"","sources":["../../../src/components/STree.vue"],"names":[],"mappings":"AA6CA;AA0ZA,MAAM,WAAW,SAAS;IACtB,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,SAAS,EAAE,CAAC;IACvB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB;AAED,KAAK,WAAW,GAAG;IACf;;OAEG;IACH,IAAI,EAAE,SAAS,EAAE,CAAC;IAClB,YAAY,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAC;IACnC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B;;OAEG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AA4PF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAgLT,OAAO,IAA6B;;qBAtajC;YAAE,IAAI,EAAE,SAAS,CAAA;SAAE,GAAG,GAAG;+BACf;YAAE,IAAI,EAAE,SAAS,CAAA;SAAE,GAAG,GAAG;;qBADnC;YAAE,IAAI,EAAE,SAAS,CAAA;SAAE,GAAG,GAAG;+BACf;YAAE,IAAI,EAAE,SAAS,CAAA;SAAE,GAAG,GAAG;;;;EA0anD;AAyBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;kBAreF,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE;wFA8epC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|