@rededor/cura 1.5.0 → 1.5.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cura-api.type.js","sourceRoot":"","sources":["../../src/api/cura-api.type.ts"],"names":[],"mappings":"AA+CC,CAAC;AAEF,MAAM,CAAN,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,iCAAe,CAAA;IACf,+BAAa,CAAA;AACf,CAAC,EAHW,cAAc,KAAd,cAAc,QAGzB","sourcesContent":["export interface CuraCustomThemeColorDepth {\n base?: string,\n depth0?: string,\n depth20?: string,\n depth40?: string,\n depth80?: string,\n depth100?: string\n}\nexport interface CuraCustomThemeColors {\n primary?: CuraCustomThemeColorDepth,\n secondary?: CuraCustomThemeColorDepth,\n accent?: CuraCustomThemeColorDepth\n}\n\nexport interface CuraCustomThemeSpacing {\n base?: string;\n}\n\nexport interface CuraCustomThemeFontFamily {\n title?: string;\n body?: string;\n}\nexport interface CuraCustomThemeFontSize {\n base?: string;\n}\nexport interface CuraCustomThemeFont {\n family?: CuraCustomThemeFontFamily;\n size?: CuraCustomThemeFontSize;\n}\n\nexport interface CuraCustomThemeDefinitions {\n colors?: CuraCustomThemeColors,\n spacing?: CuraCustomThemeSpacing,\n font?: CuraCustomThemeFont\n}\n\nexport interface CuraCustomTheme {\n name: string;\n definitions: CuraCustomThemeDefinitions;\n fromPreset?: string;\n}\n\nexport interface CuraConfig {\n localAssetsPath?: string;\n theme?: string;\n customTheme?: CuraCustomTheme;\n onReady?(api? : any): any;\n};\n\nexport enum InterfaceModes {\n LIGHT = 'light',\n DARK = 'dark'\n}\n\nexport interface APIThemeFunctions {\n load(themeTag: string): unknown,\n setCustom(customThemeDefinitions: CuraCustomTheme): unknown,\n colors: {\n getColor(colorWithDepth?: string, opacity?: number): string,\n },\n fonts: {\n getFamily(type?: string): string,\n getWeights(): any,\n getSize(): string,\n getColor(): string\n },\n spacing: {\n getSpacing(): string,\n },\n breakpoints: {\n get(): any\n }\n}\n\n"]}
|
|
1
|
+
{"version":3,"file":"cura-api.type.js","sourceRoot":"","sources":["../../src/api/cura-api.type.ts"],"names":[],"mappings":"AA+CC,CAAC;AAEF,MAAM,CAAN,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,iCAAe,CAAA;IACf,+BAAa,CAAA;AACf,CAAC,EAHW,cAAc,KAAd,cAAc,QAGzB","sourcesContent":["export interface CuraCustomThemeColorDepth {\n base?: string,\n depth0?: string,\n depth20?: string,\n depth40?: string,\n depth80?: string,\n depth100?: string\n}\nexport interface CuraCustomThemeColors {\n primary?: CuraCustomThemeColorDepth,\n secondary?: CuraCustomThemeColorDepth,\n accent?: CuraCustomThemeColorDepth\n}\n\nexport interface CuraCustomThemeSpacing {\n base?: string;\n}\n\nexport interface CuraCustomThemeFontFamily {\n title?: string;\n body?: string;\n}\nexport interface CuraCustomThemeFontSize {\n base?: string;\n}\nexport interface CuraCustomThemeFont {\n family?: CuraCustomThemeFontFamily;\n size?: CuraCustomThemeFontSize;\n}\n\nexport interface CuraCustomThemeDefinitions {\n colors?: CuraCustomThemeColors,\n spacing?: CuraCustomThemeSpacing,\n font?: CuraCustomThemeFont\n}\n\nexport interface CuraCustomTheme {\n name: string;\n definitions: CuraCustomThemeDefinitions;\n fromPreset?: string;\n}\n\nexport interface CuraConfig {\n localAssetsPath?: string;\n theme?: string;\n customTheme?: CuraCustomTheme;\n onReady?(api? : any): any;\n};\n\nexport enum InterfaceModes {\n LIGHT = 'light',\n DARK = 'dark'\n}\n\nexport interface APIThemeFunctions {\n load(themeTag: string): unknown,\n setCustom(customThemeDefinitions: CuraCustomTheme): unknown,\n colors: {\n getColor(colorWithDepth?: string, opacity?: number): string,\n },\n fonts: {\n getFamily(type?: string): string,\n getWeights(): any,\n getSize(): string,\n getColor(): string\n },\n spacing: {\n getSpacing(): string,\n },\n breakpoints: {\n get(size?: string, position?: string): any\n }\n}\n\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rededor/cura",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Cura Design System",
|
|
5
5
|
"author": "Rede D`Or São Luiz",
|
|
6
6
|
"license": "MIT",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"storybook": "^7.6.7",
|
|
52
52
|
"svgo": "^3.3.2"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "f07a25d1617503c3d80dbc2a2d97cf29817ed646"
|
|
55
55
|
}
|