rotion 0.0.13 → 0.1.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/README.md +23 -7
- package/dist/ui/cjs/index.js +1 -1
- package/dist/ui/cjs/index.js.map +1 -1
- package/dist/ui/cjs/style.css +91 -112
- package/dist/ui/cjs/types/ui/components/Checkbox/Checkbox.d.ts +5 -0
- package/dist/ui/cjs/types/ui/components/Checkbox/index.d.ts +2 -0
- package/dist/ui/cjs/types/ui/components/Page/CodeBlock/Code/Code.d.ts +0 -2
- package/dist/ui/cjs/types/ui/components/Page/RichText/LinkIfLinked/LinkIfLinked.d.ts +1 -1
- package/dist/ui/cjs/types/ui/components/Page/RichText/LinkIfLinked/LinkIfLinked.types.d.ts +1 -1
- package/dist/ui/cjs/types/ui/components/index.d.ts +1 -0
- package/dist/ui/cjs/types/ui/components/lib.d.ts +8 -0
- package/dist/ui/cjs/types/ui/components/tokens.stylex.d.ts +67 -4
- package/dist/ui/esm/index.js +1 -1
- package/dist/ui/esm/index.js.map +1 -1
- package/dist/ui/esm/style.css +91 -112
- package/dist/ui/esm/types/ui/components/Checkbox/Checkbox.d.ts +5 -0
- package/dist/ui/esm/types/ui/components/Checkbox/index.d.ts +2 -0
- package/dist/ui/esm/types/ui/components/Page/CodeBlock/Code/Code.d.ts +0 -2
- package/dist/ui/esm/types/ui/components/Page/RichText/LinkIfLinked/LinkIfLinked.d.ts +1 -1
- package/dist/ui/esm/types/ui/components/Page/RichText/LinkIfLinked/LinkIfLinked.types.d.ts +1 -1
- package/dist/ui/esm/types/ui/components/index.d.ts +1 -0
- package/dist/ui/esm/types/ui/components/lib.d.ts +8 -0
- package/dist/ui/esm/types/ui/components/tokens.stylex.d.ts +67 -4
- package/dist/ui/types.d.ts +13 -1
- package/dist/ui/umd/index.js +1 -1
- package/dist/ui/umd/index.js.map +1 -1
- package/dist/ui/umd/style.css +91 -112
- package/dist/ui/umd/types/ui/components/Checkbox/Checkbox.d.ts +5 -0
- package/dist/ui/umd/types/ui/components/Checkbox/index.d.ts +2 -0
- package/dist/ui/umd/types/ui/components/Page/CodeBlock/Code/Code.d.ts +0 -2
- package/dist/ui/umd/types/ui/components/Page/RichText/LinkIfLinked/LinkIfLinked.d.ts +1 -1
- package/dist/ui/umd/types/ui/components/Page/RichText/LinkIfLinked/LinkIfLinked.types.d.ts +1 -1
- package/dist/ui/umd/types/ui/components/index.d.ts +1 -0
- package/dist/ui/umd/types/ui/components/lib.d.ts +8 -0
- package/dist/ui/umd/types/ui/components/tokens.stylex.d.ts +67 -4
- package/package.json +17 -16
- package/dist/ui/cjs/assets/index-FwXMjctj.css +0 -1
- package/dist/ui/esm/assets/index-FwXMjctj.css +0 -1
- package/dist/ui/styles/base.css +0 -44
- package/dist/ui/styles/gallery.css +0 -172
- package/dist/ui/styles/list.css +0 -153
- package/dist/ui/styles/notionate-dark.css +0 -304
- package/dist/ui/styles/notionate.css +0 -5
- package/dist/ui/styles/page.css +0 -785
- package/dist/ui/styles/table.css +0 -166
- package/dist/ui/umd/assets/index-FwXMjctj.css +0 -1
package/dist/ui/styles/table.css
DELETED
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
/* title */
|
|
2
|
-
.notionate-table-title-a {
|
|
3
|
-
color: #333;
|
|
4
|
-
text-decoration: none;
|
|
5
|
-
border-bottom: 1px solid #ddd;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
/* url */
|
|
9
|
-
.notionate-table-url {
|
|
10
|
-
display: flex;
|
|
11
|
-
white-space: nowrap;
|
|
12
|
-
margin: 0;
|
|
13
|
-
}
|
|
14
|
-
.notionate-table-url-a {
|
|
15
|
-
display: block;
|
|
16
|
-
text-decoration: none;
|
|
17
|
-
cursor: pointer;
|
|
18
|
-
color: inherit;
|
|
19
|
-
background: inherit;
|
|
20
|
-
margin-bottom: 2px;
|
|
21
|
-
}
|
|
22
|
-
.notionate-table-url-a:hover {
|
|
23
|
-
color: rgb(50, 48, 44);
|
|
24
|
-
background: rgb(227, 226, 224) none repeat scroll 0% 0%;
|
|
25
|
-
border-radius: 3px;
|
|
26
|
-
}
|
|
27
|
-
.notionate-table-url-address {
|
|
28
|
-
display: inline;
|
|
29
|
-
font-size: .8rem;
|
|
30
|
-
white-space: nowrap;
|
|
31
|
-
background-image: linear-gradient(to right, rgba(55, 53, 47, 0.16) 0%, rgba(55, 53, 47, 0.16) 100%);
|
|
32
|
-
background-repeat: repeat-x;
|
|
33
|
-
background-position: 0 100%;
|
|
34
|
-
background-size: 100% 1px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
/* multiselect */
|
|
38
|
-
.notionate-table-multiselect-ul {
|
|
39
|
-
list-style-type: none;
|
|
40
|
-
display: flex;
|
|
41
|
-
flex-shrink: 0;
|
|
42
|
-
align-items: center;
|
|
43
|
-
margin: 0;
|
|
44
|
-
padding: 0;
|
|
45
|
-
overflow: hidden;
|
|
46
|
-
text-overflow: ellipsis;
|
|
47
|
-
}
|
|
48
|
-
.notionate-table-multiselect-li {
|
|
49
|
-
font-size: .75rem;
|
|
50
|
-
display: flex;
|
|
51
|
-
align-items: center;
|
|
52
|
-
flex-shrink: 0;
|
|
53
|
-
min-width: 0;
|
|
54
|
-
border-radius: 3px;
|
|
55
|
-
padding: 0;
|
|
56
|
-
color: rgb(24, 51, 71);
|
|
57
|
-
background: rgb(211, 229, 239) none repeat scroll 0% 0%;
|
|
58
|
-
margin: 0 6px 0 0;
|
|
59
|
-
}
|
|
60
|
-
.notionate-table-multiselect-a,
|
|
61
|
-
.notionate-table-multiselect-span {
|
|
62
|
-
text-decoration: none;
|
|
63
|
-
color: inherit;
|
|
64
|
-
padding: 2px 10px;
|
|
65
|
-
}
|
|
66
|
-
/* select */
|
|
67
|
-
.notionate-table-select-div {
|
|
68
|
-
font-size: .75rem;
|
|
69
|
-
display: flex;
|
|
70
|
-
align-items: center;
|
|
71
|
-
flex-shrink: 0;
|
|
72
|
-
min-width: 0;
|
|
73
|
-
border-radius: 3px;
|
|
74
|
-
padding: 0;
|
|
75
|
-
color: rgb(24, 51, 71);
|
|
76
|
-
background: rgb(211, 229, 239) none repeat scroll 0% 0%;
|
|
77
|
-
margin: 0 6px 0 0;
|
|
78
|
-
}
|
|
79
|
-
.notionate-table-select-a,
|
|
80
|
-
.notionate-table-select-span {
|
|
81
|
-
text-decoration: none;
|
|
82
|
-
color: inherit;
|
|
83
|
-
padding: 2px 10px;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
/* date */
|
|
87
|
-
.notionate-table-date {
|
|
88
|
-
white-space: nowrap;
|
|
89
|
-
font-size: .85rem;
|
|
90
|
-
display: flex;
|
|
91
|
-
align-items: center;
|
|
92
|
-
min-width: 20px;
|
|
93
|
-
color: #999;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/* richtext */
|
|
97
|
-
.notionate-table-richtext {
|
|
98
|
-
font-size: .85rem;
|
|
99
|
-
white-space: nowrap;
|
|
100
|
-
display: block;
|
|
101
|
-
margin: 0;
|
|
102
|
-
padding: 0;
|
|
103
|
-
color: #777;
|
|
104
|
-
text-overflow: ellipsis;
|
|
105
|
-
overflow: hidden;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
/* number */
|
|
109
|
-
.notionate-table-number {
|
|
110
|
-
white-space: nowrap;
|
|
111
|
-
font-size: .85rem;
|
|
112
|
-
display: block;
|
|
113
|
-
width: 100%;
|
|
114
|
-
text-align: right;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
/* table */
|
|
118
|
-
.notionate-table {
|
|
119
|
-
margin: 0;
|
|
120
|
-
padding: 0 0 10px;
|
|
121
|
-
width: 100%;
|
|
122
|
-
overflow-x: scroll;
|
|
123
|
-
}
|
|
124
|
-
.notionate-table-inner {
|
|
125
|
-
position: relative;
|
|
126
|
-
float: left;
|
|
127
|
-
min-width: 100%;
|
|
128
|
-
}
|
|
129
|
-
.notionate-table-row {
|
|
130
|
-
display: inline-flex;
|
|
131
|
-
background: inherit;
|
|
132
|
-
height: 33px;
|
|
133
|
-
color: rgba(55, 53, 47, 0.65);
|
|
134
|
-
border-top: 1px solid rgb(233, 233, 231);
|
|
135
|
-
box-shadow: white -3px 0px 0px, rgb(233 233 231) 0px 1px 0px;
|
|
136
|
-
min-width: calc((100% - 192px) - 0px);
|
|
137
|
-
}
|
|
138
|
-
.notionate-table-cell {
|
|
139
|
-
display: flex;
|
|
140
|
-
flex-direction: row;
|
|
141
|
-
line-height: 1.5;
|
|
142
|
-
}
|
|
143
|
-
.notionate-table-cell-inner {
|
|
144
|
-
display: flex;
|
|
145
|
-
flex-shrink: 0;
|
|
146
|
-
overflow: hidden;
|
|
147
|
-
font-size: 14px;
|
|
148
|
-
padding: 5px 8px;
|
|
149
|
-
width: 174px;
|
|
150
|
-
border-right: 1px solid rgba(55, 53, 47, 0.09);
|
|
151
|
-
}
|
|
152
|
-
.notionate-table-icon {
|
|
153
|
-
width: 14px;
|
|
154
|
-
height: 14px;
|
|
155
|
-
display: block;
|
|
156
|
-
fill: rgba(55, 53, 47, 0.45);
|
|
157
|
-
flex-shrink: 0;
|
|
158
|
-
backface-visibility: hidden;
|
|
159
|
-
margin-top: 4px;
|
|
160
|
-
margin-right: 7px;
|
|
161
|
-
}
|
|
162
|
-
.notionate-table-cell-text {
|
|
163
|
-
white-space: nowrap;
|
|
164
|
-
overflow: hidden;
|
|
165
|
-
text-overflow: ellipsis;
|
|
166
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}
|