-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[core] Typescript support planned? #662
Comments
vue-material/index.d.tsimport Vue from 'vue';
type Component = 'MdCore'
| 'MdAvatar'
| 'MdBackdrop'
| 'MdBottomBar'
| 'MdButton'
| 'MdButtonToggle'
| 'MdCard'
| 'MdCheckbox'
| 'MdChips'
| 'MdDialog'
| 'MdDivider'
| 'MdFile'
| 'MdIcon'
| 'MdImage'
| 'MdInputContainer'
| 'MdLayout'
| 'MdList'
| 'MdMenu'
| 'MdProgress'
| 'MdRadio'
| 'MdSelect'
| 'MdSidenav'
| 'MdSnackbar'
| 'MdSpeedDial'
| 'MdSpinner'
| 'MdSubheader'
| 'MdSwitch'
| 'MdTable'
| 'MdTabs'
| 'MdToolbar'
| 'MdTooltip'
| 'MdWhiteframe';
type Options =
{ install: Vue.PluginFunction<never>} &
{ [key in Component]: Vue.PluginFunction<never> };
declare const options: Options;
export default options;
type Color = 'red'
| 'pink'
| 'purple'
| 'deep-purple'
| 'indigo'
| 'blue'
| 'light-blue'
| 'cyan'
| 'teal'
| 'green'
| 'light-green'
| 'lime'
| 'yellow'
| 'amber'
| 'orange'
| 'deep-orange'
| 'brown'
| 'grey'
| 'blue-grey'
| 'white'
| 'black';
type ThemeOption = Color | {
color?: Color;
hue?: string | number;
textColor?: Color;
};
interface ThemeType {
primary?: ThemeOption;
accent?: ThemeOption;
warn?: ThemeOption;
background?: ThemeOption;
}
declare module 'vue/types/vue' {
namespace Vue {
const material: {
registerTheme(name: string | { [key: string]: ThemeType }, spec?: ThemeType): void,
setCurrentTheme(name: string): void
};
}
} |
@akaSybe Right now, there isn't any typescript support on the roadmap, but we will discuss internally. I personally feel that the core developers' time is best spent on fixing our backlog of issues and implementing missing components, however we would gladly accept a pull request to add types. |
I am using Typescript. There is a couple of other places to grab some definitions. Will helpi with this, self interest. |
@waratah could you please share links to definitions you talk about? |
Hey, can you try new Vue Material 1.0.0 with TypeScript? |
in the meantime we can use |
@matths that is outdated and only works for older version |
When V1 releases, I will likely try my hand at adding TS support. I would start working on it now but I'm fearful types will dramatically change before then |
@CatsMiaow so how can I use then? |
@Saidabbos Thanks for putting that up there. One problem, however, is you import "Vue" at the top, but then try to use the same identifier "Vue" in the namespace at the bottom of the file. The compiler complains about this. |
@kenkopelson Changing import Vue from "vue";
type Component = "MdCore"
| "MdAvatar"
| "MdBackdrop"
| "MdBottomBar"
| "MdButton"
| "MdButtonToggle"
| "MdCard"
| "MdCheckbox"
| "MdChips"
| "MdDialog"
| "MdDivider"
| "MdFile"
| "MdIcon"
| "MdImage"
| "MdInputContainer"
| "MdLayout"
| "MdList"
| "MdMenu"
| "MdProgress"
| "MdRadio"
| "MdSelect"
| "MdSidenav"
| "MdSnackbar"
| "MdSpeedDial"
| "MdSpinner"
| "MdSubheader"
| "MdSwitch"
| "MdTable"
| "MdTabs"
| "MdToolbar"
| "MdTooltip"
| "MdWhiteframe";
type Options =
{ install: Vue.PluginFunction<never>} &
{ [key in Component]: Vue.PluginFunction<never> };
declare const options: Options;
export default options;
type Color = "red"
| "pink"
| "purple"
| "deep-purple"
| "indigo"
| "blue"
| "light-blue"
| "cyan"
| "teal"
| "green"
| "light-green"
| "lime"
| "yellow"
| "amber"
| "orange"
| "deep-orange"
| "brown"
| "grey"
| "blue-grey"
| "white"
| "black";
type ThemeOption = Color | {
color?: Color;
hue?: string | number;
textColor?: Color;
};
interface ThemeType {
primary?: ThemeOption;
accent?: ThemeOption;
warn?: ThemeOption;
background?: ThemeOption;
}
declare module "vue/types/vue" {
namespace VueM {
const material: {
registerTheme(name: string | { [key: string]: ThemeType }, spec?: ThemeType): void,
setCurrentTheme(name: string): void
};
}
} |
@shoffing I've created a folder called 'types' in my project with subdirectory 'vue-material':
and inside tsconfig.json I've added:
However, this line in main.ts gives an error:
Could not find a declaration file for module 'vue-material'. '/workspace/myproject/node_modules/vue-material/dist/vue-material.js' implicitly has an 'any' type. Can you explain how to load index.d.ts? Thanks. |
@matsch01 and others who hit this issue. The index.d.ts above is wrong. Import has to be inside declaration module. This is what works for me
|
In regards to @maxhillaert's fix, here's a good answer on stackoverflow about this. |
Any roadmap to support typescript???? |
Any news on this? Proper Typescript support would be a huge improvement over native JavaScript (even though I love JS, partly because it's so f'ed up ;) ) |
Thanks for the information. Could you perhaps elaborate a bit? I don't see any trivial way to use your code sample, and if I just "show it in" I get the following message: TS2665: Invalid module name in augmentation. Module 'vue-material/dist/components' resolves to an untyped module at '/home/rohdef/git/customer-web/node_modules/vue-material/dist/components/index.js', which cannot be augmented. It might be my lack of experience with the TypeScript type definitons, but I'm kind of stuck |
@rfftrifork Running into the same issue. Did you ever find a solution? Pretty insane that after 3 years there is still no typescript support out of the box |
I've tried this but it doesn't even say that my file exists. here is the repository with the bug: https://github.com/Suyashtnt/vuejs-weather log:
|
Running into the same error. Wish someone could add TypeScript support. I would, but I'm fairly new to the language.
|
pretty insane that no one has bothered to properly answer everyone's questions about this.... if you want to use specific components (recommended since it minimizes payload size) in your ts files:
place it anywhere under your source directory.
if you prefer to load the whole library (kinda nuts) then do the following instead
and in your code
note 1: when you import a specific component (like in the first example), you can't use the component like you normally do in a Vuejs components block. it only supports being registered globally as I showed in the examples above. ie this DOESN'T work
see here for a three-year old feature request regarding that. note 2: for clarity, adding declarations via |
You can use this on top of your normal npm installation: Worked like a charm for me |
I started a project and I want to use vue-material with Typescript. As far as I can see there is no Typescript support right now.
The text was updated successfully, but these errors were encountered: