@nmorph/nmorph-ui-kit 3.0.0 → 3.0.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.
- package/dist/assets/icons/mute-speaker.svg.js +28 -0
- package/dist/components/basic/nmorph-button/NmorphButton.css +1 -1
- package/dist/components/basic/nmorph-button/NmorphButton.vue2.js +11 -9
- package/dist/components/basic/nmorph-icon/NmorphIcons.js +271 -270
- package/dist/components/data/nmorph-media-tile/NmorphMediaTile.vue.js +23 -19
- package/dist/components/data/nmorph-media-tile/NmorphMediaTile.vue2.js +9 -8
- package/dist/components/form/nmorph-select-button/NmorphSelectButton.css +1 -1
- package/dist/components/form/nmorph-select-button/NmorphSelectButton.vue2.js +26 -34
- package/dist/components/form/nmorph-select-button/components/nmorph-select-button-item/NmorphSelectButtonItem.css +1 -1
- package/dist/icons.js +271 -270
- package/dist/index.es.js +422 -421
- package/dist/index.umd.js +10 -10
- package/dist/package.json.js +1 -1
- package/dist/src/components/basic/nmorph-button/NmorphButton.vue.d.ts +1 -0
- package/dist/src/components/basic/nmorph-button/types.d.ts +1 -0
- package/dist/src/components/basic/nmorph-icon/NmorphIcons.d.ts +2 -1
- package/dist/src/components/data/nmorph-media-tile/NmorphMediaTile.vue.d.ts +1 -0
- package/dist/src/components/data/nmorph-media-tile/types.d.ts +1 -0
- package/dist/src/components/form/nmorph-select-button/NmorphSelectButton.vue.d.ts +1 -4
- package/dist/src/components/form/nmorph-select-button/types.d.ts +1 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/assets/icons/speaker-off.svg.js +0 -28
package/dist/package.json.js
CHANGED
|
@@ -14,6 +14,7 @@ export declare const NmorphButtonShape: {
|
|
|
14
14
|
export type NmorphButtonShape = keyof typeof NmorphButtonShape;
|
|
15
15
|
export interface INmorphButtonProps extends INmorphCommonInputProps {
|
|
16
16
|
design?: NmorphElementDesignType;
|
|
17
|
+
borderless?: boolean;
|
|
17
18
|
color?: string;
|
|
18
19
|
loading?: boolean;
|
|
19
20
|
ripple?: boolean;
|
|
@@ -188,6 +188,7 @@ export { default as NmorphIconMouse } from '../../../assets/icons/mouse.svg';
|
|
|
188
188
|
export { default as NmorphIconMug } from '../../../assets/icons/mug.svg';
|
|
189
189
|
export { default as NmorphIconMuteNotification } from '../../../assets/icons/mute-notification.svg';
|
|
190
190
|
export { default as NmorphIconMute } from '../../../assets/icons/mute.svg';
|
|
191
|
+
export { default as NmorphIconMuteSpeaker } from '../../../assets/icons/mute-speaker.svg';
|
|
191
192
|
export { default as NmorphIconNoSmoking } from '../../../assets/icons/no-smoking.svg';
|
|
192
193
|
export { default as NmorphIconNotebook } from '../../../assets/icons/notebook.svg';
|
|
193
194
|
export { default as NmorphIconNotification } from '../../../assets/icons/notification.svg';
|
|
@@ -268,7 +269,7 @@ export { default as NmorphIconSoldOut } from '../../../assets/icons/sold-out.svg
|
|
|
268
269
|
export { default as NmorphIconSortDown } from '../../../assets/icons/sort-down.svg';
|
|
269
270
|
export { default as NmorphIconSortUp } from '../../../assets/icons/sort-up.svg';
|
|
270
271
|
export { default as NmorphIconSort } from '../../../assets/icons/sort.svg';
|
|
271
|
-
export { default as NmorphIconSpeakerOff } from '../../../assets/icons/speaker
|
|
272
|
+
export { default as NmorphIconSpeakerOff } from '../../../assets/icons/mute-speaker.svg';
|
|
272
273
|
export { default as NmorphIconSpeaker } from '../../../assets/icons/speaker.svg';
|
|
273
274
|
export { default as NmorphIconStamp } from '../../../assets/icons/stamp.svg';
|
|
274
275
|
export { default as NmorphIconStarFilled } from '../../../assets/icons/star-filled.svg';
|
|
@@ -11,10 +11,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<INmorphSelectBu
|
|
|
11
11
|
thickness: "basic" | "thick" | "thin";
|
|
12
12
|
disabled: boolean;
|
|
13
13
|
options: INmorphSelectButtonOption[];
|
|
14
|
-
|
|
15
|
-
itemSize: string | number;
|
|
16
|
-
itemFontSize: string;
|
|
17
|
-
itemLineHeight: string;
|
|
14
|
+
customThickness: string | number;
|
|
18
15
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
|
|
19
16
|
default?(_: {}): any;
|
|
20
17
|
}>;
|
|
@@ -11,10 +11,7 @@ export interface INmorphSelectButtonProps extends INmorphCommonInputProps {
|
|
|
11
11
|
modelValue?: string;
|
|
12
12
|
options?: INmorphSelectButtonOption[];
|
|
13
13
|
fill?: boolean;
|
|
14
|
-
|
|
15
|
-
itemSize?: number | string;
|
|
16
|
-
itemFontSize?: string;
|
|
17
|
-
itemLineHeight?: string;
|
|
14
|
+
customThickness?: number | string;
|
|
18
15
|
}
|
|
19
16
|
export interface INmorphSelectButtonEmit {
|
|
20
17
|
(e: 'update:model-value', val: string): void;
|