@descope/web-components-ui 1.0.277 → 1.0.279
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/cjs/index.cjs.js +48 -2
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/descope-grid-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-grid/GridClass.js +1 -0
- package/src/index.cjs.js +1 -0
package/dist/cjs/index.cjs.js
CHANGED
@@ -393,7 +393,7 @@ const genColors = (colors) => {
|
|
393
393
|
|
394
394
|
const direction = 'ltr';
|
395
395
|
|
396
|
-
const colors = genColors({
|
396
|
+
const colors$1 = genColors({
|
397
397
|
surface: {
|
398
398
|
main: '#ffffff',
|
399
399
|
dark: '#636c74',
|
@@ -557,7 +557,7 @@ const shadow = {
|
|
557
557
|
};
|
558
558
|
|
559
559
|
const globals = {
|
560
|
-
colors,
|
560
|
+
colors: colors$1,
|
561
561
|
typography,
|
562
562
|
spacing,
|
563
563
|
border,
|
@@ -8845,6 +8845,7 @@ const GridClass = compose(
|
|
8845
8845
|
}
|
8846
8846
|
vaadin-grid::part(selected-row-cell) {
|
8847
8847
|
background-image: none;
|
8848
|
+
box-shadow: none;
|
8848
8849
|
}
|
8849
8850
|
`,
|
8850
8851
|
excludeAttrsSync: ['columns', 'tabindex'],
|
@@ -9895,6 +9896,50 @@ const vars = Object.keys(components).reduce(
|
|
9895
9896
|
const defaultTheme = { globals, components: theme };
|
9896
9897
|
const themeVars = { globals: vars$y, components: vars };
|
9897
9898
|
|
9899
|
+
const colors = {
|
9900
|
+
surface: {
|
9901
|
+
main: '#181a1c',
|
9902
|
+
dark: '#bec4ca',
|
9903
|
+
light: '#555f68',
|
9904
|
+
highlight: '#22262a',
|
9905
|
+
contrast: '#f5f6f7',
|
9906
|
+
},
|
9907
|
+
primary: {
|
9908
|
+
main: '#1f80ff',
|
9909
|
+
dark: '#71aeff',
|
9910
|
+
light: '#004094',
|
9911
|
+
highlight: '#00214d',
|
9912
|
+
contrast: '#000000',
|
9913
|
+
},
|
9914
|
+
secondary: {
|
9915
|
+
main: '#a665eb',
|
9916
|
+
dark: '#b9a0f3',
|
9917
|
+
light: '#683ae6',
|
9918
|
+
highlight: '#361299',
|
9919
|
+
contrast: '#000000',
|
9920
|
+
},
|
9921
|
+
success: {
|
9922
|
+
main: '#27963c',
|
9923
|
+
dark: '#8bc3a2',
|
9924
|
+
light: '#004d0f',
|
9925
|
+
highlight: '#001f00',
|
9926
|
+
contrast: '#000000',
|
9927
|
+
},
|
9928
|
+
error: {
|
9929
|
+
main: '#f85249',
|
9930
|
+
dark: '#fa7c75',
|
9931
|
+
light: '#c51107',
|
9932
|
+
highlight: '#4a0603',
|
9933
|
+
contrast: '#000000',
|
9934
|
+
},
|
9935
|
+
};
|
9936
|
+
|
9937
|
+
const darkTheme = merge({}, defaultTheme, {
|
9938
|
+
globals: {
|
9939
|
+
colors,
|
9940
|
+
},
|
9941
|
+
});
|
9942
|
+
|
9898
9943
|
const componentName$1 = getComponentName('recaptcha');
|
9899
9944
|
|
9900
9945
|
const observedAttributes = ['enabled', 'site-key', 'action', 'enterprise'];
|
@@ -10186,6 +10231,7 @@ exports.UploadFileClass = UploadFileClass;
|
|
10186
10231
|
exports.componentsThemeManager = componentsThemeManager;
|
10187
10232
|
exports.createComponentsTheme = createComponentsTheme;
|
10188
10233
|
exports.createHelperVars = createHelperVars;
|
10234
|
+
exports.darkTheme = darkTheme;
|
10189
10235
|
exports.defaultTheme = defaultTheme;
|
10190
10236
|
exports.genColor = genColor;
|
10191
10237
|
exports.genColors = genColors;
|