@anker-in/ui 0.1.8 → 0.1.10
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/{DemoRoom-Dx3PluHP.d.mts → DemoRoom-YZ2To7p9.d.mts} +1 -0
- package/dist/{DemoRoom-Dx3PluHP.d.ts → DemoRoom-YZ2To7p9.d.ts} +1 -0
- package/dist/demo-room.d.mts +4 -58
- package/dist/demo-room.d.ts +4 -58
- package/dist/demo-room.js +32 -220
- package/dist/demo-room.js.map +1 -1
- package/dist/demo-room.mjs +33 -219
- package/dist/demo-room.mjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +452 -169
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +452 -169
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { D as DemoRoom, a as DemoRoomProps } from './DemoRoom-
|
|
1
|
+
export { D as DemoRoom, a as DemoRoomProps } from './DemoRoom-YZ2To7p9.mjs';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
export { ThemeProvider, useTheme } from './theme.mjs';
|
|
4
4
|
import { ClassValue } from 'clsx';
|
|
@@ -140,7 +140,7 @@ type TimeslotStatus = 'available' | 'full' | 'disabled';
|
|
|
140
140
|
type DemoRoomType = 'flagship' | 'standard' | 'popup';
|
|
141
141
|
type DemoRoomStatus = 'enabled' | 'disabled';
|
|
142
142
|
type BookingStatus = 'pending' | 'checked_in' | 'completed' | 'cancelled';
|
|
143
|
-
type QuestionType = 'text' | 'email' | 'tel' | 'radio' | 'checkbox' | 'textarea' | 'select';
|
|
143
|
+
type QuestionType = 'text' | 'email' | 'tel' | 'phone' | 'radio' | 'checkbox' | 'textarea' | 'select';
|
|
144
144
|
interface Timeslot {
|
|
145
145
|
id: number;
|
|
146
146
|
start_time: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { D as DemoRoom, a as DemoRoomProps } from './DemoRoom-
|
|
1
|
+
export { D as DemoRoom, a as DemoRoomProps } from './DemoRoom-YZ2To7p9.js';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
export { ThemeProvider, useTheme } from './theme.js';
|
|
4
4
|
import { ClassValue } from 'clsx';
|
|
@@ -140,7 +140,7 @@ type TimeslotStatus = 'available' | 'full' | 'disabled';
|
|
|
140
140
|
type DemoRoomType = 'flagship' | 'standard' | 'popup';
|
|
141
141
|
type DemoRoomStatus = 'enabled' | 'disabled';
|
|
142
142
|
type BookingStatus = 'pending' | 'checked_in' | 'completed' | 'cancelled';
|
|
143
|
-
type QuestionType = 'text' | 'email' | 'tel' | 'radio' | 'checkbox' | 'textarea' | 'select';
|
|
143
|
+
type QuestionType = 'text' | 'email' | 'tel' | 'phone' | 'radio' | 'checkbox' | 'textarea' | 'select';
|
|
144
144
|
interface Timeslot {
|
|
145
145
|
id: number;
|
|
146
146
|
start_time: string;
|