memorial-ui-component-library 1.0.4-dev.2396 → 1.1.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/README.md +17 -17
- package/package.json +63 -63
- package/src/assets/scss/_transitions.scss +71 -71
- package/src/assets/scss/_variables.module.scss +56 -56
- package/src/assets/scss/main.scss +12 -12
- package/src/assets/scss/scrollbar.scss +33 -33
- package/types/async-validator.d.ts +147 -147
- package/types/autocomplete.d.ts +94 -94
- package/types/button.d.ts +74 -74
- package/types/card.d.ts +27 -27
- package/types/checkbox.d.ts +23 -23
- package/types/component.d.ts +17 -17
- package/types/dialog.d.ts +643 -643
- package/types/divider.d.ts +33 -33
- package/types/element-ui/locale.d.ts +1 -1
- package/types/form.d.ts +122 -122
- package/types/index.d.ts +4 -4
- package/types/input.d.ts +53 -53
- package/types/loader.d.ts +28 -28
- package/types/memorial-ui-component-library.d.ts +41 -41
- package/types/options.d.ts +20 -20
- package/types/popout-menu.d.ts +14 -14
- package/types/radio.d.ts +45 -45
- package/types/rater.d.ts +34 -34
- package/types/select.d.ts +77 -77
- package/dist/demo.html +0 -1
- package/dist/memorial-ui-component-library.common.js +0 -29221
- package/dist/memorial-ui-component-library.common.js.map +0 -1
- package/dist/memorial-ui-component-library.css +0 -1
- package/dist/memorial-ui-component-library.umd.js +0 -29240
- package/dist/memorial-ui-component-library.umd.js.map +0 -1
- package/dist/memorial-ui-component-library.umd.min.js +0 -15
- package/dist/memorial-ui-component-library.umd.min.js.map +0 -1
- package/dist/report.html +0 -53
package/types/card.d.ts
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { MemorialUIPluginComponent } from './component';
|
|
2
|
-
|
|
3
|
-
/** Card component */
|
|
4
|
-
export declare class SdCard extends MemorialUIPluginComponent {
|
|
5
|
-
/**
|
|
6
|
-
* Whether the to remove the cards content padding.
|
|
7
|
-
* @default false
|
|
8
|
-
*/
|
|
9
|
-
clearPadding: boolean;
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* Whether to add a border to the card.
|
|
13
|
-
* @default false
|
|
14
|
-
*/
|
|
15
|
-
border: boolean;
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* The window width in pixels at which the card will expand to the full width of its container. Border radius is removed. The primary use case is to file the screen when viewing on a mobile device.
|
|
19
|
-
*/
|
|
20
|
-
stretchWidth?: number;
|
|
21
|
-
|
|
22
|
-
/** Whether the card should display a box shadow. */
|
|
23
|
-
shadow: boolean;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
declare const plugin: SdCard;
|
|
27
|
-
export default plugin;
|
|
1
|
+
import { MemorialUIPluginComponent } from './component';
|
|
2
|
+
|
|
3
|
+
/** Card component */
|
|
4
|
+
export declare class SdCard extends MemorialUIPluginComponent {
|
|
5
|
+
/**
|
|
6
|
+
* Whether the to remove the cards content padding.
|
|
7
|
+
* @default false
|
|
8
|
+
*/
|
|
9
|
+
clearPadding: boolean;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Whether to add a border to the card.
|
|
13
|
+
* @default false
|
|
14
|
+
*/
|
|
15
|
+
border: boolean;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* The window width in pixels at which the card will expand to the full width of its container. Border radius is removed. The primary use case is to file the screen when viewing on a mobile device.
|
|
19
|
+
*/
|
|
20
|
+
stretchWidth?: number;
|
|
21
|
+
|
|
22
|
+
/** Whether the card should display a box shadow. */
|
|
23
|
+
shadow: boolean;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
declare const plugin: SdCard;
|
|
27
|
+
export default plugin;
|
package/types/checkbox.d.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import Vue from 'vue';
|
|
2
|
-
import { MemorialUIFormPluginComponent } from './component';
|
|
3
|
-
|
|
4
|
-
export declare class SdCheckbox extends MemorialUIFormPluginComponent {
|
|
5
|
-
$refs: Vue['$refs'] & {
|
|
6
|
-
checkbox: HTMLInputElement;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
/** The current state value of the component. This value changes in response to what the component is bound to (v-model). */
|
|
10
|
-
state: any;
|
|
11
|
-
|
|
12
|
-
/** The value the radio component represents. */
|
|
13
|
-
value: any;
|
|
14
|
-
|
|
15
|
-
/** Whether the radio component is disabled. */
|
|
16
|
-
disabled: boolean;
|
|
17
|
-
|
|
18
|
-
/** Whether the radio is checked. */
|
|
19
|
-
checked: boolean;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
declare const plugin: SdCheckbox;
|
|
23
|
-
export default plugin;
|
|
1
|
+
import Vue from 'vue';
|
|
2
|
+
import { MemorialUIFormPluginComponent } from './component';
|
|
3
|
+
|
|
4
|
+
export declare class SdCheckbox extends MemorialUIFormPluginComponent {
|
|
5
|
+
$refs: Vue['$refs'] & {
|
|
6
|
+
checkbox: HTMLInputElement;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
/** The current state value of the component. This value changes in response to what the component is bound to (v-model). */
|
|
10
|
+
state: any;
|
|
11
|
+
|
|
12
|
+
/** The value the radio component represents. */
|
|
13
|
+
value: any;
|
|
14
|
+
|
|
15
|
+
/** Whether the radio component is disabled. */
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
|
|
18
|
+
/** Whether the radio is checked. */
|
|
19
|
+
checked: boolean;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
declare const plugin: SdCheckbox;
|
|
23
|
+
export default plugin;
|
package/types/component.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import Vue, { PluginFunction } from 'vue';
|
|
2
|
-
import { SdFormWidget } from './form';
|
|
3
|
-
|
|
4
|
-
/** MemorialUI component common definition */
|
|
5
|
-
export declare class MemorialUIComponent extends Vue {}
|
|
6
|
-
|
|
7
|
-
/** MemorialUI component plugin definition */
|
|
8
|
-
export declare class MemorialUIPluginComponent extends Vue {
|
|
9
|
-
/** Install component into Vue */
|
|
10
|
-
static install: PluginFunction<void>;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/** MemorialUI component form widget plugin definition */
|
|
14
|
-
export declare class MemorialUIFormPluginComponent extends SdFormWidget {
|
|
15
|
-
/** Install component into Vue */
|
|
16
|
-
static install(vue: typeof Vue): void;
|
|
17
|
-
}
|
|
1
|
+
import Vue, { PluginFunction } from 'vue';
|
|
2
|
+
import { SdFormWidget } from './form';
|
|
3
|
+
|
|
4
|
+
/** MemorialUI component common definition */
|
|
5
|
+
export declare class MemorialUIComponent extends Vue {}
|
|
6
|
+
|
|
7
|
+
/** MemorialUI component plugin definition */
|
|
8
|
+
export declare class MemorialUIPluginComponent extends Vue {
|
|
9
|
+
/** Install component into Vue */
|
|
10
|
+
static install: PluginFunction<void>;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/** MemorialUI component form widget plugin definition */
|
|
14
|
+
export declare class MemorialUIFormPluginComponent extends SdFormWidget {
|
|
15
|
+
/** Install component into Vue */
|
|
16
|
+
static install(vue: typeof Vue): void;
|
|
17
|
+
}
|