@invopop/popui 0.0.111 → 0.0.113

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.
@@ -16,6 +16,12 @@ $:
16
16
  "border border-blue-200": status === "blue" && dot,
17
17
  "bg-purple-100 text-purple-500": status === "purple",
18
18
  "border border-purple-200": status === "purple" && dot,
19
+ "bg-olive-100 text-olive-500": status === "olive",
20
+ "border border-olive-200": status === "olive" && dot,
21
+ "bg-teal-100 text-teal-500": status === "teal",
22
+ "border border-teal-200": status === "teal" && dot,
23
+ "bg-crimson-100 text-crimson-500": status === "crimson",
24
+ "border border-crimson-200": status === "crimson" && dot,
19
25
  "border border-dashed border-neutral-200 text-neutral-400": status === "empty",
20
26
  "bg-neutral-100 text-neutral-500": status === "grey",
21
27
  "border border-neutral-200": status === "grey" && dot,
@@ -31,6 +37,9 @@ $:
31
37
  "bg-warning-500": status === "orange",
32
38
  "bg-blue-500": status === "blue",
33
39
  "bg-purple-500": status === "purple",
40
+ "bg-olive-500": status === "olive",
41
+ "bg-teal-500": status === "teal",
42
+ "bg-crimson-500": status === "crimson",
34
43
  "bg-neutral-300": status === "empty",
35
44
  "bg-neutral-500": status === "grey"
36
45
  });
@@ -127,6 +127,21 @@ declare namespace _default {
127
127
  let danger_1: string;
128
128
  export { danger_1 as danger };
129
129
  }
130
+ let olive: {
131
+ 100: string;
132
+ 200: string;
133
+ 500: string;
134
+ };
135
+ let crimson: {
136
+ 100: string;
137
+ 200: string;
138
+ 500: string;
139
+ };
140
+ let teal: {
141
+ 100: string;
142
+ 200: string;
143
+ 500: string;
144
+ };
130
145
  }
131
146
  namespace boxShadow {
132
147
  export let active: string;
package/dist/tw.theme.js CHANGED
@@ -127,7 +127,22 @@ export default {
127
127
  banner: {
128
128
  sandbox: '#D2F7CB',
129
129
  warning: '#A04A12',
130
- danger: '#B32530',
130
+ danger: '#B32530'
131
+ },
132
+ olive: {
133
+ 100: 'rgba(117, 117, 30, 0.1)',
134
+ 200: 'rgba(117, 117, 30, 0.25)',
135
+ 500: 'rgba(117, 117, 30, 1)'
136
+ },
137
+ crimson: {
138
+ 100: 'rgba(220, 20, 60, 0.1)',
139
+ 200: 'rgba(220, 20, 60, 0.25)',
140
+ 500: 'rgba(220, 20, 60, 1)'
141
+ },
142
+ teal: {
143
+ 100: 'rgba(0, 128, 128, 0.1)',
144
+ 200: 'rgba(0, 128, 128, 0.25)',
145
+ 500: 'rgba(0, 128, 128, 1)'
131
146
  }
132
147
  },
133
148
 
package/dist/types.d.ts CHANGED
@@ -2,7 +2,7 @@ import type { IconSource } from '@steeze-ui/svelte-icon';
2
2
  export type IconTheme = 'default' | 'solid' | 'mini';
3
3
  export type IconPosition = 'right' | 'left';
4
4
  export type ButtonVariant = 'default' | 'primary' | 'secondary' | 'warning' | 'danger' | 'dark' | 'outline';
5
- export type StatusType = 'grey' | 'green' | 'yellow' | 'red' | 'orange' | 'blue' | 'purple' | 'empty';
5
+ export type StatusType = 'grey' | 'green' | 'yellow' | 'red' | 'orange' | 'blue' | 'purple' | 'olive' | 'teal' | 'crimson' | 'empty';
6
6
  export type AnyProp = string | number | object | boolean;
7
7
  export type SidebarIcon = {
8
8
  path: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@invopop/popui",
3
3
  "license": "MIT",
4
- "version": "0.0.111",
4
+ "version": "0.0.113",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run package",