vueless 0.0.97 → 0.0.99

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.
@@ -176,10 +176,10 @@ function mergeConfigs({
176
176
  if (isGlobalConfig || isPropsConfig) {
177
177
  if (key === "strategy") {
178
178
  config[key] = propsConfig[key] || globalConfig[key] || defaultConfig[key];
179
- } else if (key === "safelist") {
179
+ } else if (key === "safelist" || key === "safelistColors") {
180
180
  if (propsConfig[key]) {
181
181
  // eslint-disable-next-line no-console
182
- console.warn("Passing component safelist by `config` prop is not supported.");
182
+ console.warn(`Passing '${key}' key by 'config' prop is not allowed.`);
183
183
  }
184
184
  } else if (key === "defaultVariants") {
185
185
  config[key] = { ...defaultConfig[key], ...globalConfig[key], ...propsConfig[key] };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.97",
3
+ "version": "0.0.99",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -20,7 +20,7 @@ export default /*tw*/ {
20
20
  stickyHeaderColumn: "flex-none text-sm font-normal text-gray-500 p-4",
21
21
  selectedRowsCount: "absolute left-11 pr-2 font-medium text-sm text-gray-900 bg-gradient-to-r from-white from-80%",
22
22
  selectAllCheckbox: "flex-none text-sm font-normal text-gray-500 pr-[1.125rem] pl-4 py-4 group-[]/table-compact:!px-4",
23
- innerWrapper: "overflow-visible rounded-lg border border-gray-200",
23
+ innerWrapper: "!overflow-visible rounded-lg border border-gray-200",
24
24
  innerWrapperSelected: "!rounded-t-none border-t-0",
25
25
  table: "min-w-full border-none text-sm w-full",
26
26
  tableLoader: "absolute !top-auto",
@@ -39,7 +39,7 @@ export default /*tw*/ {
39
39
  body: "group/body divide-none",
40
40
  bodyRow: "hover:bg-gray-50",
41
41
  checkboxBodyWrapperCell: "py-3 px-4 align-top",
42
- bodyCell: "overflow-visible",
42
+ bodyCell: "",
43
43
  tableCheckbox: "",
44
44
  dateSeparator: "",
45
45
  toggleItemButton: "flex relative -top-px",
@@ -2,7 +2,7 @@ export default /*tw*/ {
2
2
  tableCell: {
3
3
  base: `
4
4
  p-[1.125rem] py-5 first:p-5 [&:nth-child(2)]:pl-0 group-[]/body:truncate group-[]/body:align-top
5
- group-[]/body:last:p-5
5
+ group-[]/body:last:p-5 !overflow-visible
6
6
  `,
7
7
  variants: {
8
8
  compact: {
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.97",
4
+ "version": "0.0.99",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",