@propelinc/citrus-ui 0.4.0-dev.0 → 0.4.0-dev.2
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/colors/theme.d.ts +12 -0
- package/components/index.d.ts +21 -0
- package/dist/citrus-ui.common.js +12439 -12394
- package/dist/citrus-ui.common.js.map +1 -1
- package/dist/citrus-ui.css +1 -1
- package/dist/citrus-ui.umd.js +12439 -12394
- package/dist/citrus-ui.umd.js.map +1 -1
- package/dist/citrus-ui.umd.min.js +9 -4
- package/dist/citrus-ui.umd.min.js.map +1 -1
- package/dist/colors/theme.d.ts +12 -0
- package/dist/components/index.d.ts +21 -0
- package/dist/index.d.ts +45 -0
- package/dist/plugin.d.ts +3 -0
- package/dist/theme/icons.d.ts +3 -0
- package/index.d.ts +45 -0
- package/package.json +4 -2
- package/plugin.d.ts +3 -0
- package/src/colors/theme.d.ts +12 -0
- package/src/components/index.d.ts +21 -22
- package/src/index.d.ts +44 -8
- package/src/index.ts +6 -2
- package/src/plugin.d.ts +3 -0
- package/src/plugin.ts +6 -9
- package/src/theme/icons.d.ts +3 -0
- package/theme/icons.d.ts +3 -0
- package/tsconfig.json +5 -6
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
[x: string]: import("vuetify/types/services/theme").VuetifyThemeItem;
|
|
3
|
+
primary?: import("vuetify/types/services/theme").VuetifyThemeItem;
|
|
4
|
+
secondary?: import("vuetify/types/services/theme").VuetifyThemeItem;
|
|
5
|
+
accent?: import("vuetify/types/services/theme").VuetifyThemeItem;
|
|
6
|
+
info?: import("vuetify/types/services/theme").VuetifyThemeItem;
|
|
7
|
+
warning?: import("vuetify/types/services/theme").VuetifyThemeItem;
|
|
8
|
+
error?: import("vuetify/types/services/theme").VuetifyThemeItem;
|
|
9
|
+
success?: import("vuetify/types/services/theme").VuetifyThemeItem;
|
|
10
|
+
anchor?: string | number | undefined;
|
|
11
|
+
};
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import _CAlert from '../src/components/CAlert.vue';
|
|
2
|
+
export declare const CAlert: import("vue").VueConstructor<_CAlert>;
|
|
3
|
+
export declare const CBanner: import("vue").VueConstructor<_CAlert>;
|
|
4
|
+
export declare const CButton: import("vue").VueConstructor<_CAlert>;
|
|
5
|
+
export declare const CCard: import("vue").VueConstructor<_CAlert>;
|
|
6
|
+
export declare const CCardFooter: import("vue").VueConstructor<_CAlert>;
|
|
7
|
+
export declare const CCardHeader: import("vue").VueConstructor<_CAlert>;
|
|
8
|
+
export declare const CCardSection: import("vue").VueConstructor<_CAlert>;
|
|
9
|
+
export declare const CCheckbox: import("vue").VueConstructor<_CAlert>;
|
|
10
|
+
export declare const CIconButton: import("vue").VueConstructor<_CAlert>;
|
|
11
|
+
export declare const CListItem: import("vue").VueConstructor<_CAlert>;
|
|
12
|
+
export declare const CModal: import("vue").VueConstructor<_CAlert>;
|
|
13
|
+
export declare const CModalLoading: import("vue").VueConstructor<_CAlert>;
|
|
14
|
+
export declare const CSegmentedButton: import("vue").VueConstructor<_CAlert>;
|
|
15
|
+
export declare const CSegmentedButtonOption: import("vue").VueConstructor<_CAlert>;
|
|
16
|
+
export declare const CSelect: import("vue").VueConstructor<_CAlert>;
|
|
17
|
+
export declare const CSkeletonLoaderCircle: import("vue").VueConstructor<_CAlert>;
|
|
18
|
+
export declare const CSkeletonLoaderText: import("vue").VueConstructor<_CAlert>;
|
|
19
|
+
export declare const CTextArea: import("vue").VueConstructor<_CAlert>;
|
|
20
|
+
export declare const CTextField: import("vue").VueConstructor<_CAlert>;
|
|
21
|
+
export declare const CTextLink: import("vue").VueConstructor<_CAlert>;
|