revdev-components 0.5.0 → 0.7.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev-components",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
4
4
  "main": "build/index.js",
5
5
  "module": "build/index.esm.js",
6
6
  "scripts": {
@@ -8,6 +8,7 @@
8
8
  "build:next": "next build",
9
9
  "start:next": "next start",
10
10
  "storybook": "storybook dev -p 6006",
11
+ "s": "npm run storybook",
11
12
  "build-storybook": "storybook build",
12
13
  "lint": "eslint . && stylelint \"**/*.scss\"",
13
14
  "lint:fix": "eslint . --fix && stylelint \"**/*.scss\" --fix",
@@ -16,6 +17,7 @@
16
17
  "v": "npm --no-git-tag-version version minor",
17
18
  "build": "rollup -c --bundleConfigAsCjs",
18
19
  "build:dev": "cross-env BUILD=dev rollup -c --bundleConfigAsCjs",
20
+ "pm": "npm run lint:fix && git add * && git commit -m\"update\" && git push origin master",
19
21
  "p": "npm run v && npm run lint:fix && git add * && git commit -m\"v\" && git push origin master"
20
22
  },
21
23
  "peerDependencies": {
@@ -1,5 +0,0 @@
1
- import React from "react";
2
- import { AmenityIconName } from "./names";
3
- import { BasicIconProps } from "../basic";
4
- export * from "./names";
5
- export declare const AmenityIcon: React.FC<BasicIconProps<AmenityIconName>>;
@@ -1,2 +0,0 @@
1
- export declare const AmenityIconNameList: ("book" | "calendar" | "edit" | "group" | "key" | "language" | "location" | "tag" | "map" | "view" | "ac" | "additional-request" | "baby-bath" | "baking-sheet" | "balcony" | "bathtub" | "bbq-grill" | "beach-access" | "beach-view" | "beach" | "bed-linens" | "board-games" | "breakfast" | "calendar-verified" | "ceiling-fan" | "children-dinnerware" | "city-skyline-view" | "cleaning-products" | "clothing-storage" | "coffee-maker" | "communication" | "crib" | "dedicated-workspace" | "dining-table" | "dishes" | "dishwasher" | "door-open" | "dryer" | "electric-stove" | "elevator" | "essentials" | "ethernet-connection" | "exterior-camera" | "fire-extinguisher" | "first-aid-kit" | "flash" | "hair-dryer" | "hanger" | "heating" | "high-chair" | "hot-tub" | "hot-water" | "housekeeping" | "indoor-fireplace" | "iron" | "kettle" | "keypad" | "kitchen" | "laundromat" | "lighthouse" | "lit-path" | "lock-up" | "lockbox" | "luggage-drop-off" | "marina-view" | "microwave" | "mountain-view" | "neff-oven" | "outdoor-furniture" | "oven" | "parking" | "peaceful" | "pet" | "poll" | "portable-fan" | "pillow" | "private-entrance" | "refrigerator" | "return-keys" | "rice-maker" | "room-darkening-shades" | "rule" | "shampoo" | "smart-lock" | "smoke-alarm" | "smoking" | "soap" | "sound-system" | "stove" | "stylish" | "toaster" | "toy" | "trash" | "travel-crib" | "turn-things-off" | "tv" | "used-towels" | "washer" | "wifi" | "wine-glass" | "yard")[];
2
- export type AmenityIconName = (typeof AmenityIconNameList)[number];