@pnx-mixtape/ids-shape 0.0.3 → 0.0.4

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.
Files changed (3) hide show
  1. package/enums.ts +5 -1
  2. package/index.ts +1 -0
  3. package/package.json +1 -1
package/enums.ts CHANGED
@@ -14,6 +14,8 @@ export enum IconColourModifier {
14
14
  ERROR = "error",
15
15
  WARNING = "warning",
16
16
  SUCCESS = "success",
17
+ BRAND = "brand",
18
+ ACCENT = "accent"
17
19
  }
18
20
 
19
21
  export enum IconRotateModifier {
@@ -33,6 +35,8 @@ export enum ButtonTypes {
33
35
  INPUT = "input",
34
36
  BUTTON = "button",
35
37
  LINK = "link",
38
+ SUBMIT = "submit",
39
+ RESET = "reset",
36
40
  }
37
41
 
38
42
  export enum ButtonModifiers {
@@ -40,7 +44,7 @@ export enum ButtonModifiers {
40
44
  LIGHT = "light",
41
45
  WHITE = "white",
42
46
  DESTRUCTIVE = "destructive",
43
- WIDE = "wide",
47
+ FULL_WIDTH = "full-width",
44
48
  OUTLINE = "outline",
45
49
  }
46
50
 
package/index.ts CHANGED
@@ -99,6 +99,7 @@ export type Image = {
99
99
 
100
100
  export type Media = {
101
101
  item: Image | Video
102
+ type?: "image" | "video"
102
103
  caption?: string
103
104
  attribution?: string
104
105
  align?: MediaAlignmentTypes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnx-mixtape/ids-shape",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "shape details for ids project",
5
5
  "main": "./index.ts",
6
6
  "type": "module",